From 18f6c6cc5df1b8023a2bd5299f19a6c36a4a0ae4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonatan=20K=C5=82osko?= Date: Wed, 29 Sep 2021 12:44:04 +0200 Subject: [PATCH] Use the same AST node for all identifiers --- grammar.js | 29 +- src/grammar.json | 60 +- src/node-types.json | 221 - src/parser.c | 611981 ++++++++++++++++----------------- test/corpus/term/alias.txt | 2 +- test/corpus/term/struct.txt | 6 +- test/corpus/variable.txt | 10 +- 7 files changed, 300008 insertions(+), 312301 deletions(-) diff --git a/grammar.js b/grammar.js index f5365b8..83a5170 100644 --- a/grammar.js +++ b/grammar.js @@ -75,14 +75,6 @@ const RESERVED_WORD_TOKENS = [ ["after", "catch", "do", "else", "end", "fn", "rescue"], ].flat(); -const SPECIAL_IDENTIFIERS = [ - "__MODULE__", - "__DIR__", - "__ENV__", - "__CALLER__", - "__STACKTRACE__", -]; - const DIGITS = /[0-9]+/; const BIN_DIGITS = /[0-1]+/; const OCT_DIGITS = /[0-7]+/; @@ -208,7 +200,7 @@ module.exports = grammar({ _expression: ($) => choice( $.block, - $._identifier, + $.identifier, $.alias, $.integer, $.float, @@ -247,20 +239,13 @@ module.exports = grammar({ ")" ), - _identifier: ($) => - choice($.identifier, $.unused_identifier, $.special_identifier), - identifier: ($) => choice( // See Ref 6. in the docs - /[\p{Ll}\p{Lm}\p{Lo}\p{Nl}\u1885\u1886\u2118\u212E\u309B\u309C][\p{ID_Continue}]*[?!]?/u, + /[_\p{Ll}\p{Lm}\p{Lo}\p{Nl}\u1885\u1886\u2118\u212E\u309B\u309C][\p{ID_Continue}]*[?!]?/u, "..." ), - unused_identifier: ($) => /_[\p{ID_Continue}]*[?!]?/u, - - special_identifier: ($) => choice(...SPECIAL_IDENTIFIERS), - alias: ($) => token(sep1(/[A-Z][_a-zA-Z0-9]*/, /\s*\.\s*/)), integer: ($) => token(INTEGER), @@ -422,7 +407,7 @@ module.exports = grammar({ choice( $.alias, $._atom, - $._identifier, + $.identifier, $.unary_operator, $.dot, alias($._call_with_parentheses, $.call) @@ -572,7 +557,7 @@ module.exports = grammar({ _local_call_without_parentheses: ($) => prec.left( seq( - field("target", $._identifier), + field("target", $.identifier), alias($._call_arguments_without_parentheses, $.arguments), optional(seq(optional($._newline_before_do), $.do_block)) ) @@ -581,7 +566,7 @@ module.exports = grammar({ _local_call_with_parentheses: ($) => prec.left( seq( - field("target", $._identifier), + field("target", $.identifier), alias($._call_arguments_with_parentheses_immediate, $.arguments), optional(seq(optional($._newline_before_do), $.do_block)) ) @@ -589,7 +574,7 @@ module.exports = grammar({ _local_call_just_do_block: ($) => // Lower precedence than identifier, because `foo bar do` is `foo(bar) do end` - prec(-1, seq(field("target", $._identifier), $.do_block)), + prec(-1, seq(field("target", $.identifier), $.do_block)), _remote_call_without_parentheses: ($) => prec.left( @@ -618,7 +603,7 @@ module.exports = grammar({ field( "right", choice( - $._identifier, + $.identifier, alias(choice(...RESERVED_WORD_TOKENS), $.identifier), $.operator_identifier, alias($._quoted_i_double, $.string), diff --git a/src/grammar.json b/src/grammar.json index 20ca212..3374dac 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -109,7 +109,7 @@ }, { "type": "SYMBOL", - "name": "_identifier" + "name": "identifier" }, { "type": "SYMBOL", @@ -318,29 +318,12 @@ } ] }, - "_identifier": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "identifier" - }, - { - "type": "SYMBOL", - "name": "unused_identifier" - }, - { - "type": "SYMBOL", - "name": "special_identifier" - } - ] - }, "identifier": { "type": "CHOICE", "members": [ { "type": "PATTERN", - "value": "[\\p{Ll}\\p{Lm}\\p{Lo}\\p{Nl}\\u1885\\u1886\\u2118\\u212E\\u309B\\u309C][\\p{ID_Continue}]*[?!]?" + "value": "[_\\p{Ll}\\p{Lm}\\p{Lo}\\p{Nl}\\u1885\\u1886\\u2118\\u212E\\u309B\\u309C][\\p{ID_Continue}]*[?!]?" }, { "type": "STRING", @@ -348,35 +331,6 @@ } ] }, - "unused_identifier": { - "type": "PATTERN", - "value": "_[\\p{ID_Continue}]*[?!]?" - }, - "special_identifier": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "__MODULE__" - }, - { - "type": "STRING", - "value": "__DIR__" - }, - { - "type": "STRING", - "value": "__ENV__" - }, - { - "type": "STRING", - "value": "__CALLER__" - }, - { - "type": "STRING", - "value": "__STACKTRACE__" - } - ] - }, "alias": { "type": "TOKEN", "content": { @@ -2695,7 +2649,7 @@ }, { "type": "SYMBOL", - "name": "_identifier" + "name": "identifier" }, { "type": "SYMBOL", @@ -4195,7 +4149,7 @@ "name": "target", "content": { "type": "SYMBOL", - "name": "_identifier" + "name": "identifier" } }, { @@ -4250,7 +4204,7 @@ "name": "target", "content": { "type": "SYMBOL", - "name": "_identifier" + "name": "identifier" } }, { @@ -4305,7 +4259,7 @@ "name": "target", "content": { "type": "SYMBOL", - "name": "_identifier" + "name": "identifier" } }, { @@ -4473,7 +4427,7 @@ "members": [ { "type": "SYMBOL", - "name": "_identifier" + "name": "identifier" }, { "type": "ALIAS", diff --git a/src/node-types.json b/src/node-types.json index 70ad46c..3f5d9a6 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -87,10 +87,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "string", "named": true @@ -102,10 +98,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] }, @@ -193,10 +185,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "string", "named": true @@ -208,10 +196,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] } @@ -305,10 +289,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "stab_clause", "named": true @@ -324,10 +304,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] } @@ -439,10 +415,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "string", "named": true @@ -454,10 +426,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] } @@ -558,10 +526,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "string", "named": true @@ -573,10 +537,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] }, @@ -854,10 +814,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "string", "named": true @@ -869,10 +825,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] } @@ -970,10 +922,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "string", "named": true @@ -985,10 +933,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] } @@ -1081,10 +1025,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "stab_clause", "named": true @@ -1100,10 +1040,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] } @@ -1196,10 +1132,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "string", "named": true @@ -1211,10 +1143,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] } @@ -1243,14 +1171,6 @@ { "type": "identifier", "named": true - }, - { - "type": "special_identifier", - "named": true - }, - { - "type": "unused_identifier", - "named": true } ] } @@ -1358,10 +1278,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "stab_clause", "named": true @@ -1377,10 +1293,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] } @@ -1541,10 +1453,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "stab_clause", "named": true @@ -1560,10 +1468,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] } @@ -1656,10 +1560,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "string", "named": true @@ -1671,10 +1571,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] }, @@ -1708,10 +1604,6 @@ "type": "operator_identifier", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "string", "named": true @@ -1719,10 +1611,6 @@ { "type": "tuple", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] } @@ -1816,10 +1704,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "stab_clause", "named": true @@ -1835,10 +1719,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] } @@ -1936,10 +1816,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "string", "named": true @@ -1951,10 +1827,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] } @@ -2066,10 +1938,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "string", "named": true @@ -2081,10 +1949,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] } @@ -2200,10 +2064,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "string", "named": true @@ -2215,10 +2075,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] } @@ -2335,10 +2191,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "string", "named": true @@ -2350,10 +2202,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] } @@ -2551,10 +2399,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "stab_clause", "named": true @@ -2570,10 +2414,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] } @@ -2790,10 +2630,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "string", "named": true @@ -2805,19 +2641,10 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] } }, - { - "type": "special_identifier", - "named": true, - "fields": {} - }, { "type": "stab_clause", "named": true, @@ -2942,17 +2769,9 @@ "type": "quoted_atom", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] } @@ -3049,10 +2868,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "string", "named": true @@ -3064,10 +2879,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] } @@ -3168,10 +2979,6 @@ "type": "sigil", "named": true }, - { - "type": "special_identifier", - "named": true - }, { "type": "string", "named": true @@ -3183,10 +2990,6 @@ { "type": "unary_operator", "named": true - }, - { - "type": "unused_identifier", - "named": true } ] }, @@ -3458,26 +3261,6 @@ "type": "^^^", "named": false }, - { - "type": "__CALLER__", - "named": false - }, - { - "type": "__DIR__", - "named": false - }, - { - "type": "__ENV__", - "named": false - }, - { - "type": "__MODULE__", - "named": false - }, - { - "type": "__STACKTRACE__", - "named": false - }, { "type": "after", "named": false @@ -3578,10 +3361,6 @@ "type": "true", "named": false }, - { - "type": "unused_identifier", - "named": true - }, { "type": "when", "named": false diff --git a/src/parser.c b/src/parser.c index d46d7f6..7dde71a 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,11 +14,11 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 5670 -#define LARGE_STATE_COUNT 1091 -#define SYMBOL_COUNT 242 +#define STATE_COUNT 5658 +#define LARGE_STATE_COUNT 1079 +#define SYMBOL_COUNT 234 #define ALIAS_COUNT 1 -#define TOKEN_COUNT 131 +#define TOKEN_COUNT 125 #define EXTERNAL_TOKEN_COUNT 26 #define FIELD_COUNT 9 #define MAX_ALIAS_SEQUENCE_LENGTH 7 @@ -31,242 +31,234 @@ enum { anon_sym_RPAREN = 4, aux_sym_identifier_token1 = 5, anon_sym_DOT_DOT_DOT = 6, - sym_unused_identifier = 7, - anon_sym___MODULE__ = 8, - anon_sym___DIR__ = 9, - anon_sym___ENV__ = 10, - anon_sym___CALLER__ = 11, - anon_sym___STACKTRACE__ = 12, - sym_alias = 13, - sym_integer = 14, - sym_float = 15, - sym_char = 16, - anon_sym_true = 17, - anon_sym_false = 18, - anon_sym_nil = 19, - sym_atom = 20, - anon_sym_DQUOTE = 21, - anon_sym_SQUOTE = 22, - anon_sym_SQUOTE_SQUOTE_SQUOTE = 23, - anon_sym_DQUOTE_DQUOTE_DQUOTE = 24, - anon_sym_LBRACE = 25, - anon_sym_RBRACE = 26, - anon_sym_LBRACK = 27, - anon_sym_RBRACK = 28, - anon_sym_LT = 29, - anon_sym_GT = 30, - anon_sym_PIPE = 31, - anon_sym_SLASH = 32, - anon_sym_POUND_LBRACE = 33, - sym_escape_sequence = 34, - anon_sym_TILDE = 35, - aux_sym_sigil_token1 = 36, - aux_sym_sigil_token2 = 37, - aux_sym_sigil_token3 = 38, - anon_sym_COMMA = 39, - sym_keyword = 40, - aux_sym_quoted_keyword_token1 = 41, - anon_sym_LT_LT = 42, - anon_sym_GT_GT = 43, - anon_sym_PERCENT = 44, - anon_sym_AMP = 45, - anon_sym_PLUS = 46, - anon_sym_DASH = 47, - anon_sym_BANG = 48, - anon_sym_CARET = 49, - anon_sym_TILDE_TILDE_TILDE = 50, - anon_sym_not = 51, - anon_sym_AT = 52, - anon_sym_LT_DASH = 53, - anon_sym_BSLASH_BSLASH = 54, - anon_sym_when = 55, - anon_sym_COLON_COLON = 56, - anon_sym_EQ_GT = 57, - anon_sym_EQ = 58, - anon_sym_PIPE_PIPE = 59, - anon_sym_PIPE_PIPE_PIPE = 60, - anon_sym_or = 61, - anon_sym_AMP_AMP = 62, - anon_sym_AMP_AMP_AMP = 63, - anon_sym_and = 64, - anon_sym_EQ_EQ = 65, - anon_sym_BANG_EQ = 66, - anon_sym_EQ_TILDE = 67, - anon_sym_EQ_EQ_EQ = 68, - anon_sym_BANG_EQ_EQ = 69, - anon_sym_LT_EQ = 70, - anon_sym_GT_EQ = 71, - anon_sym_PIPE_GT = 72, - anon_sym_LT_LT_LT = 73, - anon_sym_GT_GT_GT = 74, - anon_sym_LT_LT_TILDE = 75, - anon_sym_TILDE_GT_GT = 76, - anon_sym_LT_TILDE = 77, - anon_sym_TILDE_GT = 78, - anon_sym_LT_TILDE_GT = 79, - anon_sym_LT_PIPE_GT = 80, - anon_sym_in = 81, - anon_sym_CARET_CARET_CARET = 82, - anon_sym_SLASH_SLASH = 83, - anon_sym_PLUS_PLUS = 84, - anon_sym_DASH_DASH = 85, - anon_sym_PLUS_PLUS_PLUS = 86, - anon_sym_DASH_DASH_DASH = 87, - anon_sym_DOT_DOT = 88, - anon_sym_LT_GT = 89, - anon_sym_STAR = 90, - anon_sym_STAR_STAR = 91, - anon_sym_CARET_CARET = 92, - anon_sym_DASH_GT = 93, - anon_sym_DOT = 94, - anon_sym_after = 95, - anon_sym_catch = 96, - anon_sym_do = 97, - anon_sym_else = 98, - anon_sym_end = 99, - anon_sym_fn = 100, - anon_sym_rescue = 101, - anon_sym_LPAREN2 = 102, - anon_sym_LBRACK2 = 103, - sym_comment = 104, - sym__quoted_content_i_single = 105, - sym__quoted_content_i_double = 106, - sym__quoted_content_i_heredoc_single = 107, - sym__quoted_content_i_heredoc_double = 108, - sym__quoted_content_i_parenthesis = 109, - sym__quoted_content_i_curly = 110, - sym__quoted_content_i_square = 111, - sym__quoted_content_i_angle = 112, - sym__quoted_content_i_bar = 113, - sym__quoted_content_i_slash = 114, - sym__quoted_content_single = 115, - sym__quoted_content_double = 116, - sym__quoted_content_heredoc_single = 117, - sym__quoted_content_heredoc_double = 118, - sym__quoted_content_parenthesis = 119, - sym__quoted_content_curly = 120, - sym__quoted_content_square = 121, - sym__quoted_content_angle = 122, - sym__quoted_content_bar = 123, - sym__quoted_content_slash = 124, - sym__newline_before_do = 125, - sym__newline_before_binary_operator = 126, - sym__newline_before_comment = 127, - sym__before_unary_op = 128, - sym__not_in = 129, - sym__quoted_atom_start = 130, - sym_source = 131, - sym__terminator = 132, - sym__expression = 133, - sym_block = 134, - sym__identifier = 135, - sym_identifier = 136, - sym_special_identifier = 137, - sym_boolean = 138, - sym_nil = 139, - sym__atom = 140, - sym_quoted_atom = 141, - sym__quoted_i_double = 142, - sym__quoted_double = 143, - sym__quoted_i_single = 144, - sym__quoted_single = 145, - sym__quoted_i_heredoc_single = 146, - sym__quoted_heredoc_single = 147, - sym__quoted_i_heredoc_double = 148, - sym__quoted_heredoc_double = 149, - sym__quoted_i_parenthesis = 150, - sym__quoted_parenthesis = 151, - sym__quoted_i_curly = 152, - sym__quoted_curly = 153, - sym__quoted_i_square = 154, - sym__quoted_square = 155, - sym__quoted_i_angle = 156, - sym__quoted_angle = 157, - sym__quoted_i_bar = 158, - sym__quoted_bar = 159, - sym__quoted_i_slash = 160, - sym__quoted_slash = 161, - sym_string = 162, - sym_charlist = 163, - sym_interpolation = 164, - sym_sigil = 165, - sym_keywords = 166, - sym__keywords_with_trailing_separator = 167, - sym_pair = 168, - sym__keyword = 169, - sym_quoted_keyword = 170, - sym_list = 171, - sym_tuple = 172, - sym_bitstring = 173, - sym_map = 174, - sym_struct = 175, - sym__items_with_trailing_separator = 176, - sym_unary_operator = 177, - sym__capture_expression = 178, - sym_binary_operator = 179, - sym_operator_identifier = 180, - sym_dot = 181, - sym_call = 182, - sym__call_without_parentheses = 183, - sym__call_with_parentheses = 184, - sym__local_call_without_parentheses = 185, - sym__local_call_with_parentheses = 186, - sym__local_call_just_do_block = 187, - sym__remote_call_without_parentheses = 188, - sym__remote_call_with_parentheses = 189, - sym__remote_dot = 190, - sym__anonymous_call = 191, - sym__anonymous_dot = 192, - sym__double_call = 193, - sym__call_arguments_with_parentheses = 194, - sym__call_arguments_with_parentheses_immediate = 195, - sym__call_arguments_with_trailing_separator = 196, - sym__call_arguments_without_parentheses = 197, - sym_do_block = 198, - sym_after_block = 199, - sym_rescue_block = 200, - sym_catch_block = 201, - sym_else_block = 202, - sym_access_call = 203, - sym_stab_clause = 204, - sym__stab_clause_left = 205, - sym__stab_clause_arguments_with_parentheses = 206, - sym__stab_clause_arguments_without_parentheses = 207, - sym__stab_clause_arguments_with_parentheses_with_guard = 208, - sym__stab_clause_arguments_without_parentheses_with_guard = 209, - sym_body = 210, - sym_anonymous_function = 211, - aux_sym_source_repeat1 = 212, - aux_sym__terminator_repeat1 = 213, - aux_sym_block_repeat1 = 214, - aux_sym_block_repeat2 = 215, - aux_sym__quoted_i_double_repeat1 = 216, - aux_sym__quoted_double_repeat1 = 217, - aux_sym__quoted_i_single_repeat1 = 218, - aux_sym__quoted_single_repeat1 = 219, - aux_sym__quoted_i_heredoc_single_repeat1 = 220, - aux_sym__quoted_heredoc_single_repeat1 = 221, - aux_sym__quoted_i_heredoc_double_repeat1 = 222, - aux_sym__quoted_heredoc_double_repeat1 = 223, - aux_sym__quoted_i_parenthesis_repeat1 = 224, - aux_sym__quoted_parenthesis_repeat1 = 225, - aux_sym__quoted_i_curly_repeat1 = 226, - aux_sym__quoted_curly_repeat1 = 227, - aux_sym__quoted_i_square_repeat1 = 228, - aux_sym__quoted_square_repeat1 = 229, - aux_sym__quoted_i_angle_repeat1 = 230, - aux_sym__quoted_angle_repeat1 = 231, - aux_sym__quoted_i_bar_repeat1 = 232, - aux_sym__quoted_bar_repeat1 = 233, - aux_sym__quoted_i_slash_repeat1 = 234, - aux_sym__quoted_slash_repeat1 = 235, - aux_sym_keywords_repeat1 = 236, - aux_sym__items_with_trailing_separator_repeat1 = 237, - aux_sym_do_block_repeat1 = 238, - aux_sym__stab_clause_arguments_with_parentheses_repeat1 = 239, - aux_sym__stab_clause_arguments_without_parentheses_repeat1 = 240, - aux_sym_anonymous_function_repeat1 = 241, - alias_sym_map_content = 242, + sym_alias = 7, + sym_integer = 8, + sym_float = 9, + sym_char = 10, + anon_sym_true = 11, + anon_sym_false = 12, + anon_sym_nil = 13, + sym_atom = 14, + anon_sym_DQUOTE = 15, + anon_sym_SQUOTE = 16, + anon_sym_SQUOTE_SQUOTE_SQUOTE = 17, + anon_sym_DQUOTE_DQUOTE_DQUOTE = 18, + anon_sym_LBRACE = 19, + anon_sym_RBRACE = 20, + anon_sym_LBRACK = 21, + anon_sym_RBRACK = 22, + anon_sym_LT = 23, + anon_sym_GT = 24, + anon_sym_PIPE = 25, + anon_sym_SLASH = 26, + anon_sym_POUND_LBRACE = 27, + sym_escape_sequence = 28, + anon_sym_TILDE = 29, + aux_sym_sigil_token1 = 30, + aux_sym_sigil_token2 = 31, + aux_sym_sigil_token3 = 32, + anon_sym_COMMA = 33, + sym_keyword = 34, + aux_sym_quoted_keyword_token1 = 35, + anon_sym_LT_LT = 36, + anon_sym_GT_GT = 37, + anon_sym_PERCENT = 38, + anon_sym_AMP = 39, + anon_sym_PLUS = 40, + anon_sym_DASH = 41, + anon_sym_BANG = 42, + anon_sym_CARET = 43, + anon_sym_TILDE_TILDE_TILDE = 44, + anon_sym_not = 45, + anon_sym_AT = 46, + anon_sym_LT_DASH = 47, + anon_sym_BSLASH_BSLASH = 48, + anon_sym_when = 49, + anon_sym_COLON_COLON = 50, + anon_sym_EQ_GT = 51, + anon_sym_EQ = 52, + anon_sym_PIPE_PIPE = 53, + anon_sym_PIPE_PIPE_PIPE = 54, + anon_sym_or = 55, + anon_sym_AMP_AMP = 56, + anon_sym_AMP_AMP_AMP = 57, + anon_sym_and = 58, + anon_sym_EQ_EQ = 59, + anon_sym_BANG_EQ = 60, + anon_sym_EQ_TILDE = 61, + anon_sym_EQ_EQ_EQ = 62, + anon_sym_BANG_EQ_EQ = 63, + anon_sym_LT_EQ = 64, + anon_sym_GT_EQ = 65, + anon_sym_PIPE_GT = 66, + anon_sym_LT_LT_LT = 67, + anon_sym_GT_GT_GT = 68, + anon_sym_LT_LT_TILDE = 69, + anon_sym_TILDE_GT_GT = 70, + anon_sym_LT_TILDE = 71, + anon_sym_TILDE_GT = 72, + anon_sym_LT_TILDE_GT = 73, + anon_sym_LT_PIPE_GT = 74, + anon_sym_in = 75, + anon_sym_CARET_CARET_CARET = 76, + anon_sym_SLASH_SLASH = 77, + anon_sym_PLUS_PLUS = 78, + anon_sym_DASH_DASH = 79, + anon_sym_PLUS_PLUS_PLUS = 80, + anon_sym_DASH_DASH_DASH = 81, + anon_sym_DOT_DOT = 82, + anon_sym_LT_GT = 83, + anon_sym_STAR = 84, + anon_sym_STAR_STAR = 85, + anon_sym_CARET_CARET = 86, + anon_sym_DASH_GT = 87, + anon_sym_DOT = 88, + anon_sym_after = 89, + anon_sym_catch = 90, + anon_sym_do = 91, + anon_sym_else = 92, + anon_sym_end = 93, + anon_sym_fn = 94, + anon_sym_rescue = 95, + anon_sym_LPAREN2 = 96, + anon_sym_LBRACK2 = 97, + sym_comment = 98, + sym__quoted_content_i_single = 99, + sym__quoted_content_i_double = 100, + sym__quoted_content_i_heredoc_single = 101, + sym__quoted_content_i_heredoc_double = 102, + sym__quoted_content_i_parenthesis = 103, + sym__quoted_content_i_curly = 104, + sym__quoted_content_i_square = 105, + sym__quoted_content_i_angle = 106, + sym__quoted_content_i_bar = 107, + sym__quoted_content_i_slash = 108, + sym__quoted_content_single = 109, + sym__quoted_content_double = 110, + sym__quoted_content_heredoc_single = 111, + sym__quoted_content_heredoc_double = 112, + sym__quoted_content_parenthesis = 113, + sym__quoted_content_curly = 114, + sym__quoted_content_square = 115, + sym__quoted_content_angle = 116, + sym__quoted_content_bar = 117, + sym__quoted_content_slash = 118, + sym__newline_before_do = 119, + sym__newline_before_binary_operator = 120, + sym__newline_before_comment = 121, + sym__before_unary_op = 122, + sym__not_in = 123, + sym__quoted_atom_start = 124, + sym_source = 125, + sym__terminator = 126, + sym__expression = 127, + sym_block = 128, + sym_identifier = 129, + sym_boolean = 130, + sym_nil = 131, + sym__atom = 132, + sym_quoted_atom = 133, + sym__quoted_i_double = 134, + sym__quoted_double = 135, + sym__quoted_i_single = 136, + sym__quoted_single = 137, + sym__quoted_i_heredoc_single = 138, + sym__quoted_heredoc_single = 139, + sym__quoted_i_heredoc_double = 140, + sym__quoted_heredoc_double = 141, + sym__quoted_i_parenthesis = 142, + sym__quoted_parenthesis = 143, + sym__quoted_i_curly = 144, + sym__quoted_curly = 145, + sym__quoted_i_square = 146, + sym__quoted_square = 147, + sym__quoted_i_angle = 148, + sym__quoted_angle = 149, + sym__quoted_i_bar = 150, + sym__quoted_bar = 151, + sym__quoted_i_slash = 152, + sym__quoted_slash = 153, + sym_string = 154, + sym_charlist = 155, + sym_interpolation = 156, + sym_sigil = 157, + sym_keywords = 158, + sym__keywords_with_trailing_separator = 159, + sym_pair = 160, + sym__keyword = 161, + sym_quoted_keyword = 162, + sym_list = 163, + sym_tuple = 164, + sym_bitstring = 165, + sym_map = 166, + sym_struct = 167, + sym__items_with_trailing_separator = 168, + sym_unary_operator = 169, + sym__capture_expression = 170, + sym_binary_operator = 171, + sym_operator_identifier = 172, + sym_dot = 173, + sym_call = 174, + sym__call_without_parentheses = 175, + sym__call_with_parentheses = 176, + sym__local_call_without_parentheses = 177, + sym__local_call_with_parentheses = 178, + sym__local_call_just_do_block = 179, + sym__remote_call_without_parentheses = 180, + sym__remote_call_with_parentheses = 181, + sym__remote_dot = 182, + sym__anonymous_call = 183, + sym__anonymous_dot = 184, + sym__double_call = 185, + sym__call_arguments_with_parentheses = 186, + sym__call_arguments_with_parentheses_immediate = 187, + sym__call_arguments_with_trailing_separator = 188, + sym__call_arguments_without_parentheses = 189, + sym_do_block = 190, + sym_after_block = 191, + sym_rescue_block = 192, + sym_catch_block = 193, + sym_else_block = 194, + sym_access_call = 195, + sym_stab_clause = 196, + sym__stab_clause_left = 197, + sym__stab_clause_arguments_with_parentheses = 198, + sym__stab_clause_arguments_without_parentheses = 199, + sym__stab_clause_arguments_with_parentheses_with_guard = 200, + sym__stab_clause_arguments_without_parentheses_with_guard = 201, + sym_body = 202, + sym_anonymous_function = 203, + aux_sym_source_repeat1 = 204, + aux_sym__terminator_repeat1 = 205, + aux_sym_block_repeat1 = 206, + aux_sym_block_repeat2 = 207, + aux_sym__quoted_i_double_repeat1 = 208, + aux_sym__quoted_double_repeat1 = 209, + aux_sym__quoted_i_single_repeat1 = 210, + aux_sym__quoted_single_repeat1 = 211, + aux_sym__quoted_i_heredoc_single_repeat1 = 212, + aux_sym__quoted_heredoc_single_repeat1 = 213, + aux_sym__quoted_i_heredoc_double_repeat1 = 214, + aux_sym__quoted_heredoc_double_repeat1 = 215, + aux_sym__quoted_i_parenthesis_repeat1 = 216, + aux_sym__quoted_parenthesis_repeat1 = 217, + aux_sym__quoted_i_curly_repeat1 = 218, + aux_sym__quoted_curly_repeat1 = 219, + aux_sym__quoted_i_square_repeat1 = 220, + aux_sym__quoted_square_repeat1 = 221, + aux_sym__quoted_i_angle_repeat1 = 222, + aux_sym__quoted_angle_repeat1 = 223, + aux_sym__quoted_i_bar_repeat1 = 224, + aux_sym__quoted_bar_repeat1 = 225, + aux_sym__quoted_i_slash_repeat1 = 226, + aux_sym__quoted_slash_repeat1 = 227, + aux_sym_keywords_repeat1 = 228, + aux_sym__items_with_trailing_separator_repeat1 = 229, + aux_sym_do_block_repeat1 = 230, + aux_sym__stab_clause_arguments_with_parentheses_repeat1 = 231, + aux_sym__stab_clause_arguments_without_parentheses_repeat1 = 232, + aux_sym_anonymous_function_repeat1 = 233, + alias_sym_map_content = 234, }; static const char * const ts_symbol_names[] = { @@ -277,12 +269,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_RPAREN] = ")", [aux_sym_identifier_token1] = "identifier_token1", [anon_sym_DOT_DOT_DOT] = "...", - [sym_unused_identifier] = "unused_identifier", - [anon_sym___MODULE__] = "__MODULE__", - [anon_sym___DIR__] = "__DIR__", - [anon_sym___ENV__] = "__ENV__", - [anon_sym___CALLER__] = "__CALLER__", - [anon_sym___STACKTRACE__] = "__STACKTRACE__", [sym_alias] = "alias", [sym_integer] = "integer", [sym_float] = "float", @@ -405,9 +391,7 @@ static const char * const ts_symbol_names[] = { [sym__terminator] = "_terminator", [sym__expression] = "_expression", [sym_block] = "block", - [sym__identifier] = "_identifier", [sym_identifier] = "identifier", - [sym_special_identifier] = "special_identifier", [sym_boolean] = "boolean", [sym_nil] = "nil", [sym__atom] = "_atom", @@ -523,12 +507,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_RPAREN] = anon_sym_RPAREN, [aux_sym_identifier_token1] = aux_sym_identifier_token1, [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, - [sym_unused_identifier] = sym_unused_identifier, - [anon_sym___MODULE__] = anon_sym___MODULE__, - [anon_sym___DIR__] = anon_sym___DIR__, - [anon_sym___ENV__] = anon_sym___ENV__, - [anon_sym___CALLER__] = anon_sym___CALLER__, - [anon_sym___STACKTRACE__] = anon_sym___STACKTRACE__, [sym_alias] = sym_alias, [sym_integer] = sym_integer, [sym_float] = sym_float, @@ -651,9 +629,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__terminator] = sym__terminator, [sym__expression] = sym__expression, [sym_block] = sym_block, - [sym__identifier] = sym__identifier, [sym_identifier] = sym_identifier, - [sym_special_identifier] = sym_special_identifier, [sym_boolean] = sym_boolean, [sym_nil] = sym_nil, [sym__atom] = sym__atom, @@ -790,30 +766,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym_unused_identifier] = { - .visible = true, - .named = true, - }, - [anon_sym___MODULE__] = { - .visible = true, - .named = false, - }, - [anon_sym___DIR__] = { - .visible = true, - .named = false, - }, - [anon_sym___ENV__] = { - .visible = true, - .named = false, - }, - [anon_sym___CALLER__] = { - .visible = true, - .named = false, - }, - [anon_sym___STACKTRACE__] = { - .visible = true, - .named = false, - }, [sym_alias] = { .visible = true, .named = true, @@ -1302,18 +1254,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__identifier] = { - .visible = false, - .named = true, - }, [sym_identifier] = { .visible = true, .named = true, }, - [sym_special_identifier] = { - .visible = true, - .named = true, - }, [sym_boolean] = { .visible = true, .named = true, @@ -1909,126 +1853,126 @@ static inline bool aux_sym_identifier_token1_character_set_1(int32_t c) { return (c < 7683 ? (c < 1257 ? (c < 525 - ? (c < 367 - ? (c < 305 - ? (c < 275 - ? (c < 261 - ? (c < 223 - ? (c < 181 - ? c == 170 - : (c <= 181 || c == 186)) - : (c <= 246 || (c < 257 - ? (c >= 248 && c <= 255) - : (c <= 257 || c == 259)))) - : (c <= 261 || (c < 269 - ? (c < 265 - ? c == 263 - : (c <= 265 || c == 267)) - : (c <= 269 || (c < 273 - ? c == 271 - : c <= 273))))) - : (c <= 275 || (c < 291 - ? (c < 283 - ? (c < 279 - ? c == 277 - : (c <= 279 || c == 281)) - : (c <= 283 || (c < 287 - ? c == 285 - : (c <= 287 || c == 289)))) - : (c <= 291 || (c < 299 - ? (c < 295 - ? c == 293 - : (c <= 295 || c == 297)) - : (c <= 299 || (c < 303 - ? c == 301 - : c <= 303))))))) - : (c <= 305 || (c < 337 - ? (c < 322 - ? (c < 314 - ? (c < 309 - ? c == 307 - : (c <= 309 || (c >= 311 && c <= 312))) - : (c <= 314 || (c < 318 - ? c == 316 - : (c <= 318 || c == 320)))) - : (c <= 322 || (c < 331 - ? (c < 326 - ? c == 324 - : (c <= 326 || (c >= 328 && c <= 329))) - : (c <= 331 || (c < 335 - ? c == 333 - : c <= 335))))) - : (c <= 337 || (c < 353 - ? (c < 345 - ? (c < 341 - ? c == 339 - : (c <= 341 || c == 343)) - : (c <= 345 || (c < 349 - ? c == 347 - : (c <= 349 || c == 351)))) - : (c <= 353 || (c < 361 - ? (c < 357 - ? c == 355 - : (c <= 357 || c == 359)) - : (c <= 361 || (c < 365 - ? c == 363 - : c <= 365))))))))) - : (c <= 367 || (c < 462 - ? (c < 414 - ? (c < 387 - ? (c < 375 - ? (c < 371 - ? c == 369 - : (c <= 371 || c == 373)) - : (c <= 375 || (c < 380 - ? c == 378 - : (c <= 380 || (c >= 382 && c <= 384))))) - : (c <= 387 || (c < 402 - ? (c < 392 - ? c == 389 - : (c <= 392 || (c >= 396 && c <= 397))) - : (c <= 402 || (c < 409 - ? c == 405 - : c <= 411))))) - : (c <= 414 || (c < 436 - ? (c < 424 - ? (c < 419 - ? c == 417 - : (c <= 419 || c == 421)) - : (c <= 424 || (c < 429 - ? (c >= 426 && c <= 427) - : (c <= 429 || c == 432)))) - : (c <= 436 || (c < 454 - ? (c < 441 - ? c == 438 - : (c <= 443 || (c >= 445 && c <= 451))) - : (c <= 454 || (c < 460 - ? c == 457 - : c <= 460))))))) - : (c <= 462 || (c < 493 - ? (c < 479 - ? (c < 470 - ? (c < 466 - ? c == 464 - : (c <= 466 || c == 468)) - : (c <= 470 || (c < 474 - ? c == 472 - : (c <= 474 || (c >= 476 && c <= 477))))) - : (c <= 479 || (c < 487 - ? (c < 483 - ? c == 481 - : (c <= 483 || c == 485)) - : (c <= 487 || (c < 491 - ? c == 489 - : c <= 491))))) - : (c <= 493 || (c < 511 - ? (c < 505 - ? (c < 499 - ? (c >= 495 && c <= 496) - : (c <= 499 || c == 501)) - : (c <= 505 || (c < 509 - ? c == 507 - : c <= 509))) + ? (c < 365 + ? (c < 303 + ? (c < 273 + ? (c < 259 + ? (c < 186 + ? (c < 170 + ? c == '_' + : (c <= 170 || c == 181)) + : (c <= 186 || (c < 248 + ? (c >= 223 && c <= 246) + : (c <= 255 || c == 257)))) + : (c <= 259 || (c < 267 + ? (c < 263 + ? c == 261 + : (c <= 263 || c == 265)) + : (c <= 267 || (c < 271 + ? c == 269 + : c <= 271))))) + : (c <= 273 || (c < 289 + ? (c < 281 + ? (c < 277 + ? c == 275 + : (c <= 277 || c == 279)) + : (c <= 281 || (c < 285 + ? c == 283 + : (c <= 285 || c == 287)))) + : (c <= 289 || (c < 297 + ? (c < 293 + ? c == 291 + : (c <= 293 || c == 295)) + : (c <= 297 || (c < 301 + ? c == 299 + : c <= 301))))))) + : (c <= 303 || (c < 335 + ? (c < 320 + ? (c < 311 + ? (c < 307 + ? c == 305 + : (c <= 307 || c == 309)) + : (c <= 312 || (c < 316 + ? c == 314 + : (c <= 316 || c == 318)))) + : (c <= 320 || (c < 328 + ? (c < 324 + ? c == 322 + : (c <= 324 || c == 326)) + : (c <= 329 || (c < 333 + ? c == 331 + : c <= 333))))) + : (c <= 335 || (c < 351 + ? (c < 343 + ? (c < 339 + ? c == 337 + : (c <= 339 || c == 341)) + : (c <= 343 || (c < 347 + ? c == 345 + : (c <= 347 || c == 349)))) + : (c <= 351 || (c < 359 + ? (c < 355 + ? c == 353 + : (c <= 355 || c == 357)) + : (c <= 359 || (c < 363 + ? c == 361 + : c <= 363))))))))) + : (c <= 365 || (c < 460 + ? (c < 409 + ? (c < 382 + ? (c < 373 + ? (c < 369 + ? c == 367 + : (c <= 369 || c == 371)) + : (c <= 373 || (c < 378 + ? c == 375 + : (c <= 378 || c == 380)))) + : (c <= 384 || (c < 396 + ? (c < 389 + ? c == 387 + : (c <= 389 || c == 392)) + : (c <= 397 || (c < 405 + ? c == 402 + : c <= 405))))) + : (c <= 411 || (c < 432 + ? (c < 421 + ? (c < 417 + ? c == 414 + : (c <= 417 || c == 419)) + : (c <= 421 || (c < 426 + ? c == 424 + : (c <= 427 || c == 429)))) + : (c <= 432 || (c < 445 + ? (c < 438 + ? c == 436 + : (c <= 438 || (c >= 441 && c <= 443))) + : (c <= 451 || (c < 457 + ? c == 454 + : c <= 457))))))) + : (c <= 460 || (c < 491 + ? (c < 476 + ? (c < 468 + ? (c < 464 + ? c == 462 + : (c <= 464 || c == 466)) + : (c <= 468 || (c < 472 + ? c == 470 + : (c <= 472 || c == 474)))) + : (c <= 477 || (c < 485 + ? (c < 481 + ? c == 479 + : (c <= 481 || c == 483)) + : (c <= 485 || (c < 489 + ? c == 487 + : c <= 489))))) + : (c <= 491 || (c < 511 + ? (c < 501 + ? (c < 495 + ? c == 493 + : (c <= 496 || c == 499)) + : (c <= 501 || (c < 507 + ? c == 505 + : (c <= 507 || c == 509)))) : (c <= 511 || (c < 519 ? (c < 515 ? c == 513 @@ -2932,640 +2876,640 @@ static inline bool aux_sym_identifier_token1_character_set_1(int32_t c) { } static inline bool aux_sym_identifier_token1_character_set_2(int32_t c) { - return (c < 7683 - ? (c < 1257 - ? (c < 525 - ? (c < 365 - ? (c < 303 - ? (c < 273 - ? (c < 259 - ? (c < 186 - ? (c < 170 - ? (c >= 'b' && c <= 'z') - : (c <= 170 || c == 181)) - : (c <= 186 || (c < 248 - ? (c >= 223 && c <= 246) - : (c <= 255 || c == 257)))) - : (c <= 259 || (c < 267 - ? (c < 263 - ? c == 261 - : (c <= 263 || c == 265)) - : (c <= 267 || (c < 271 - ? c == 269 - : c <= 271))))) - : (c <= 273 || (c < 289 - ? (c < 281 - ? (c < 277 - ? c == 275 - : (c <= 277 || c == 279)) - : (c <= 281 || (c < 285 - ? c == 283 - : (c <= 285 || c == 287)))) - : (c <= 289 || (c < 297 - ? (c < 293 - ? c == 291 - : (c <= 293 || c == 295)) - : (c <= 297 || (c < 301 - ? c == 299 - : c <= 301))))))) - : (c <= 303 || (c < 335 - ? (c < 320 - ? (c < 311 - ? (c < 307 - ? c == 305 - : (c <= 307 || c == 309)) - : (c <= 312 || (c < 316 - ? c == 314 - : (c <= 316 || c == 318)))) - : (c <= 320 || (c < 328 - ? (c < 324 - ? c == 322 - : (c <= 324 || c == 326)) - : (c <= 329 || (c < 333 - ? c == 331 - : c <= 333))))) - : (c <= 335 || (c < 351 - ? (c < 343 - ? (c < 339 - ? c == 337 - : (c <= 339 || c == 341)) - : (c <= 343 || (c < 347 - ? c == 345 - : (c <= 347 || c == 349)))) - : (c <= 351 || (c < 359 - ? (c < 355 - ? c == 353 - : (c <= 355 || c == 357)) - : (c <= 359 || (c < 363 - ? c == 361 - : c <= 363))))))))) - : (c <= 365 || (c < 460 - ? (c < 409 - ? (c < 382 - ? (c < 373 - ? (c < 369 - ? c == 367 - : (c <= 369 || c == 371)) - : (c <= 373 || (c < 378 - ? c == 375 - : (c <= 378 || c == 380)))) - : (c <= 384 || (c < 396 - ? (c < 389 - ? c == 387 - : (c <= 389 || c == 392)) - : (c <= 397 || (c < 405 - ? c == 402 - : c <= 405))))) - : (c <= 411 || (c < 432 - ? (c < 421 - ? (c < 417 - ? c == 414 - : (c <= 417 || c == 419)) - : (c <= 421 || (c < 426 - ? c == 424 - : (c <= 427 || c == 429)))) - : (c <= 432 || (c < 445 - ? (c < 438 - ? c == 436 - : (c <= 438 || (c >= 441 && c <= 443))) - : (c <= 451 || (c < 457 - ? c == 454 - : c <= 457))))))) - : (c <= 460 || (c < 491 - ? (c < 476 - ? (c < 468 - ? (c < 464 - ? c == 462 - : (c <= 464 || c == 466)) - : (c <= 468 || (c < 472 - ? c == 470 - : (c <= 472 || c == 474)))) - : (c <= 477 || (c < 485 - ? (c < 481 - ? c == 479 - : (c <= 481 || c == 483)) - : (c <= 485 || (c < 489 - ? c == 487 - : c <= 489))))) - : (c <= 491 || (c < 511 - ? (c < 501 - ? (c < 495 - ? c == 493 - : (c <= 496 || c == 499)) - : (c <= 501 || (c < 507 - ? c == 505 - : (c <= 507 || c == 509)))) - : (c <= 511 || (c < 519 - ? (c < 515 - ? c == 513 - : (c <= 515 || c == 517)) - : (c <= 519 || (c < 523 - ? c == 521 - : c <= 523))))))))))) - : (c <= 525 || (c < 1129 - ? (c < 748 - ? (c < 555 - ? (c < 541 - ? (c < 533 - ? (c < 529 - ? c == 527 - : (c <= 529 || c == 531)) - : (c <= 533 || (c < 537 - ? c == 535 - : (c <= 537 || c == 539)))) - : (c <= 541 || (c < 549 - ? (c < 545 - ? c == 543 - : (c <= 545 || c == 547)) - : (c <= 549 || (c < 553 - ? c == 551 - : c <= 553))))) - : (c <= 555 || (c < 583 - ? (c < 563 - ? (c < 559 - ? c == 557 - : (c <= 559 || c == 561)) - : (c <= 569 || (c < 575 - ? c == 572 - : (c <= 576 || c == 578)))) - : (c <= 583 || (c < 591 - ? (c < 587 - ? c == 585 - : (c <= 587 || c == 589)) - : (c <= 705 || (c < 736 - ? (c >= 710 && c <= 721) - : c <= 740))))))) - : (c <= 748 || (c < 995 - ? (c < 976 - ? (c < 887 - ? (c < 881 - ? c == 750 - : (c <= 881 || (c >= 883 && c <= 884))) - : (c <= 887 || (c < 912 - ? (c >= 890 && c <= 893) - : (c <= 912 || (c >= 940 && c <= 974))))) - : (c <= 977 || (c < 989 - ? (c < 985 - ? (c >= 981 && c <= 983) - : (c <= 985 || c == 987)) - : (c <= 989 || (c < 993 - ? c == 991 - : c <= 993))))) - : (c <= 995 || (c < 1016 - ? (c < 1003 - ? (c < 999 - ? c == 997 - : (c <= 999 || c == 1001)) - : (c <= 1003 || (c < 1007 - ? c == 1005 - : (c <= 1011 || c == 1013)))) - : (c <= 1016 || (c < 1123 - ? (c < 1072 - ? (c >= 1019 && c <= 1020) - : (c <= 1119 || c == 1121)) - : (c <= 1123 || (c < 1127 - ? c == 1125 - : c <= 1127))))))))) - : (c <= 1129 || (c < 1197 - ? (c < 1167 - ? (c < 1145 - ? (c < 1137 - ? (c < 1133 - ? c == 1131 - : (c <= 1133 || c == 1135)) - : (c <= 1137 || (c < 1141 - ? c == 1139 - : (c <= 1141 || c == 1143)))) - : (c <= 1145 || (c < 1153 - ? (c < 1149 - ? c == 1147 - : (c <= 1149 || c == 1151)) - : (c <= 1153 || (c < 1165 - ? c == 1163 - : c <= 1165))))) - : (c <= 1167 || (c < 1183 - ? (c < 1175 - ? (c < 1171 - ? c == 1169 - : (c <= 1171 || c == 1173)) - : (c <= 1175 || (c < 1179 - ? c == 1177 - : (c <= 1179 || c == 1181)))) - : (c <= 1183 || (c < 1191 - ? (c < 1187 - ? c == 1185 - : (c <= 1187 || c == 1189)) - : (c <= 1191 || (c < 1195 - ? c == 1193 - : c <= 1195))))))) - : (c <= 1197 || (c < 1228 - ? (c < 1213 - ? (c < 1205 - ? (c < 1201 - ? c == 1199 - : (c <= 1201 || c == 1203)) - : (c <= 1205 || (c < 1209 - ? c == 1207 - : (c <= 1209 || c == 1211)))) - : (c <= 1213 || (c < 1222 - ? (c < 1218 - ? c == 1215 - : (c <= 1218 || c == 1220)) - : (c <= 1222 || (c < 1226 - ? c == 1224 - : c <= 1226))))) - : (c <= 1228 || (c < 1243 - ? (c < 1237 - ? (c < 1233 - ? (c >= 1230 && c <= 1231) - : (c <= 1233 || c == 1235)) - : (c <= 1237 || (c < 1241 - ? c == 1239 - : c <= 1241))) - : (c <= 1243 || (c < 1251 - ? (c < 1247 - ? c == 1245 - : (c <= 1247 || c == 1249)) - : (c <= 1251 || (c < 1255 - ? c == 1253 - : c <= 1255))))))))))))) - : (c <= 1257 || (c < 2990 - ? (c < 2144 - ? (c < 1317 - ? (c < 1287 - ? (c < 1273 - ? (c < 1265 - ? (c < 1261 - ? c == 1259 - : (c <= 1261 || c == 1263)) - : (c <= 1265 || (c < 1269 - ? c == 1267 - : (c <= 1269 || c == 1271)))) - : (c <= 1273 || (c < 1281 - ? (c < 1277 - ? c == 1275 - : (c <= 1277 || c == 1279)) - : (c <= 1281 || (c < 1285 - ? c == 1283 - : c <= 1285))))) - : (c <= 1287 || (c < 1303 - ? (c < 1295 - ? (c < 1291 - ? c == 1289 - : (c <= 1291 || c == 1293)) - : (c <= 1295 || (c < 1299 - ? c == 1297 - : (c <= 1299 || c == 1301)))) - : (c <= 1303 || (c < 1311 - ? (c < 1307 - ? c == 1305 - : (c <= 1307 || c == 1309)) - : (c <= 1311 || (c < 1315 - ? c == 1313 - : c <= 1315))))))) - : (c <= 1317 || (c < 1774 - ? (c < 1488 - ? (c < 1325 - ? (c < 1321 - ? c == 1319 - : (c <= 1321 || c == 1323)) - : (c <= 1325 || (c < 1369 - ? c == 1327 - : (c <= 1369 || (c >= 1376 && c <= 1416))))) - : (c <= 1514 || (c < 1649 - ? (c < 1568 - ? (c >= 1519 && c <= 1522) - : (c <= 1610 || (c >= 1646 && c <= 1647))) - : (c <= 1747 || (c < 1765 - ? c == 1749 - : c <= 1766))))) - : (c <= 1775 || (c < 2036 - ? (c < 1810 - ? (c < 1791 - ? (c >= 1786 && c <= 1788) - : (c <= 1791 || c == 1808)) - : (c <= 1839 || (c < 1969 - ? (c >= 1869 && c <= 1957) - : (c <= 1969 || (c >= 1994 && c <= 2026))))) - : (c <= 2037 || (c < 2084 - ? (c < 2048 - ? c == 2042 - : (c <= 2069 || c == 2074)) - : (c <= 2084 || (c < 2112 - ? c == 2088 - : c <= 2136))))))))) - : (c <= 2154 || (c < 2693 - ? (c < 2510 - ? (c < 2437 - ? (c < 2365 - ? (c < 2230 - ? (c >= 2208 && c <= 2228) - : (c <= 2247 || (c >= 2308 && c <= 2361))) - : (c <= 2365 || (c < 2392 - ? c == 2384 - : (c <= 2401 || (c >= 2417 && c <= 2432))))) - : (c <= 2444 || (c < 2482 - ? (c < 2451 - ? (c >= 2447 && c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))) - : (c <= 2482 || (c < 2493 - ? (c >= 2486 && c <= 2489) - : c <= 2493))))) - : (c <= 2510 || (c < 2602 - ? (c < 2556 - ? (c < 2527 - ? (c >= 2524 && c <= 2525) - : (c <= 2529 || (c >= 2544 && c <= 2545))) - : (c <= 2556 || (c < 2575 - ? (c >= 2565 && c <= 2570) - : (c <= 2576 || (c >= 2579 && c <= 2600))))) - : (c <= 2608 || (c < 2649 - ? (c < 2613 - ? (c >= 2610 && c <= 2611) - : (c <= 2614 || (c >= 2616 && c <= 2617))) - : (c <= 2652 || (c < 2674 - ? c == 2654 - : c <= 2676))))))) - : (c <= 2701 || (c < 2869 - ? (c < 2784 - ? (c < 2738 - ? (c < 2707 - ? (c >= 2703 && c <= 2705) - : (c <= 2728 || (c >= 2730 && c <= 2736))) - : (c <= 2739 || (c < 2749 - ? (c >= 2741 && c <= 2745) - : (c <= 2749 || c == 2768)))) - : (c <= 2785 || (c < 2835 - ? (c < 2821 - ? c == 2809 - : (c <= 2828 || (c >= 2831 && c <= 2832))) - : (c <= 2856 || (c < 2866 - ? (c >= 2858 && c <= 2864) - : c <= 2867))))) - : (c <= 2873 || (c < 2958 - ? (c < 2929 - ? (c < 2908 - ? c == 2877 - : (c <= 2909 || (c >= 2911 && c <= 2913))) - : (c <= 2929 || (c < 2949 - ? c == 2947 - : c <= 2954))) - : (c <= 2960 || (c < 2974 - ? (c < 2969 - ? (c >= 2962 && c <= 2965) - : (c <= 2970 || c == 2972)) - : (c <= 2975 || (c < 2984 - ? (c >= 2979 && c <= 2980) - : c <= 2986))))))))))) - : (c <= 3001 || (c < 4348 - ? (c < 3517 - ? (c < 3261 - ? (c < 3168 - ? (c < 3090 - ? (c < 3077 - ? c == 3024 - : (c <= 3084 || (c >= 3086 && c <= 3088))) - : (c <= 3112 || (c < 3133 - ? (c >= 3114 && c <= 3129) - : (c <= 3133 || (c >= 3160 && c <= 3162))))) - : (c <= 3169 || (c < 3218 - ? (c < 3205 - ? c == 3200 - : (c <= 3212 || (c >= 3214 && c <= 3216))) - : (c <= 3240 || (c < 3253 - ? (c >= 3242 && c <= 3251) - : c <= 3257))))) - : (c <= 3261 || (c < 3406 - ? (c < 3332 - ? (c < 3296 - ? c == 3294 - : (c <= 3297 || (c >= 3313 && c <= 3314))) - : (c <= 3340 || (c < 3346 - ? (c >= 3342 && c <= 3344) - : (c <= 3386 || c == 3389)))) - : (c <= 3406 || (c < 3461 - ? (c < 3423 - ? (c >= 3412 && c <= 3414) - : (c <= 3425 || (c >= 3450 && c <= 3455))) - : (c <= 3478 || (c < 3507 - ? (c >= 3482 && c <= 3505) - : c <= 3515))))))) - : (c <= 3517 || (c < 3804 - ? (c < 3724 - ? (c < 3648 - ? (c < 3585 - ? (c >= 3520 && c <= 3526) - : (c <= 3632 || (c >= 3634 && c <= 3635))) - : (c <= 3654 || (c < 3716 - ? (c >= 3713 && c <= 3714) - : (c <= 3716 || (c >= 3718 && c <= 3722))))) - : (c <= 3747 || (c < 3773 - ? (c < 3751 - ? c == 3749 - : (c <= 3760 || (c >= 3762 && c <= 3763))) - : (c <= 3773 || (c < 3782 - ? (c >= 3776 && c <= 3780) - : c <= 3782))))) - : (c <= 3807 || (c < 4186 - ? (c < 3976 - ? (c < 3904 - ? c == 3840 - : (c <= 3911 || (c >= 3913 && c <= 3948))) - : (c <= 3980 || (c < 4159 - ? (c >= 4096 && c <= 4138) - : (c <= 4159 || (c >= 4176 && c <= 4181))))) - : (c <= 4189 || (c < 4213 - ? (c < 4197 - ? c == 4193 - : (c <= 4198 || (c >= 4206 && c <= 4208))) - : (c <= 4225 || (c < 4304 - ? c == 4238 - : c <= 4346))))))))) - : (c <= 4680 || (c < 6103 - ? (c < 4888 - ? (c < 4786 - ? (c < 4698 - ? (c < 4688 - ? (c >= 4682 && c <= 4685) - : (c <= 4694 || c == 4696)) - : (c <= 4701 || (c < 4746 - ? (c >= 4704 && c <= 4744) - : (c <= 4749 || (c >= 4752 && c <= 4784))))) - : (c <= 4789 || (c < 4808 - ? (c < 4800 - ? (c >= 4792 && c <= 4798) - : (c <= 4800 || (c >= 4802 && c <= 4805))) - : (c <= 4822 || (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885))))) - : (c <= 4954 || (c < 5888 - ? (c < 5743 - ? (c < 5112 - ? (c >= 4992 && c <= 5007) - : (c <= 5117 || (c >= 5121 && c <= 5740))) - : (c <= 5759 || (c < 5792 - ? (c >= 5761 && c <= 5786) - : (c <= 5866 || (c >= 5870 && c <= 5880))))) - : (c <= 5900 || (c < 5984 - ? (c < 5920 - ? (c >= 5902 && c <= 5905) - : (c <= 5937 || (c >= 5952 && c <= 5969))) - : (c <= 5996 || (c < 6016 - ? (c >= 5998 && c <= 6000) - : c <= 6067))))))) - : (c <= 6103 || (c < 6981 - ? (c < 6512 - ? (c < 6314 - ? (c < 6176 - ? c == 6108 - : (c <= 6264 || (c >= 6272 && c <= 6312))) - : (c <= 6314 || (c < 6400 - ? (c >= 6320 && c <= 6389) - : (c <= 6430 || (c >= 6480 && c <= 6509))))) - : (c <= 6516 || (c < 6688 - ? (c < 6576 - ? (c >= 6528 && c <= 6571) - : (c <= 6601 || (c >= 6656 && c <= 6678))) - : (c <= 6740 || (c < 6917 - ? c == 6823 - : c <= 6963))))) - : (c <= 6987 || (c < 7296 - ? (c < 7168 - ? (c < 7086 - ? (c >= 7043 && c <= 7072) - : (c <= 7087 || (c >= 7098 && c <= 7141))) - : (c <= 7203 || (c < 7258 - ? (c >= 7245 && c <= 7247) - : c <= 7293))) - : (c <= 7304 || (c < 7418 - ? (c < 7406 - ? (c >= 7401 && c <= 7404) - : (c <= 7411 || (c >= 7413 && c <= 7414))) - : (c <= 7418 || (c < 7681 - ? (c >= 7424 && c <= 7615) - : c <= 7681))))))))))))))) - : (c <= 7683 || (c < 12443 + return (c < 7681 + ? (c < 1255 + ? (c < 523 + ? (c < 363 + ? (c < 301 + ? (c < 271 + ? (c < 257 + ? (c < 181 + ? (c < 'b' + ? c == '_' + : (c <= 'z' || c == 170)) + : (c <= 181 || (c < 223 + ? c == 186 + : (c <= 246 || (c >= 248 && c <= 255))))) + : (c <= 257 || (c < 265 + ? (c < 261 + ? c == 259 + : (c <= 261 || c == 263)) + : (c <= 265 || (c < 269 + ? c == 267 + : c <= 269))))) + : (c <= 271 || (c < 287 + ? (c < 279 + ? (c < 275 + ? c == 273 + : (c <= 275 || c == 277)) + : (c <= 279 || (c < 283 + ? c == 281 + : (c <= 283 || c == 285)))) + : (c <= 287 || (c < 295 + ? (c < 291 + ? c == 289 + : (c <= 291 || c == 293)) + : (c <= 295 || (c < 299 + ? c == 297 + : c <= 299))))))) + : (c <= 301 || (c < 333 + ? (c < 318 + ? (c < 309 + ? (c < 305 + ? c == 303 + : (c <= 305 || c == 307)) + : (c <= 309 || (c < 314 + ? (c >= 311 && c <= 312) + : (c <= 314 || c == 316)))) + : (c <= 318 || (c < 326 + ? (c < 322 + ? c == 320 + : (c <= 322 || c == 324)) + : (c <= 326 || (c < 331 + ? (c >= 328 && c <= 329) + : c <= 331))))) + : (c <= 333 || (c < 349 + ? (c < 341 + ? (c < 337 + ? c == 335 + : (c <= 337 || c == 339)) + : (c <= 341 || (c < 345 + ? c == 343 + : (c <= 345 || c == 347)))) + : (c <= 349 || (c < 357 + ? (c < 353 + ? c == 351 + : (c <= 353 || c == 355)) + : (c <= 357 || (c < 361 + ? c == 359 + : c <= 361))))))))) + : (c <= 363 || (c < 457 + ? (c < 405 + ? (c < 380 + ? (c < 371 + ? (c < 367 + ? c == 365 + : (c <= 367 || c == 369)) + : (c <= 371 || (c < 375 + ? c == 373 + : (c <= 375 || c == 378)))) + : (c <= 380 || (c < 392 + ? (c < 387 + ? (c >= 382 && c <= 384) + : (c <= 387 || c == 389)) + : (c <= 392 || (c < 402 + ? (c >= 396 && c <= 397) + : c <= 402))))) + : (c <= 405 || (c < 429 + ? (c < 419 + ? (c < 414 + ? (c >= 409 && c <= 411) + : (c <= 414 || c == 417)) + : (c <= 419 || (c < 424 + ? c == 421 + : (c <= 424 || (c >= 426 && c <= 427))))) + : (c <= 429 || (c < 441 + ? (c < 436 + ? c == 432 + : (c <= 436 || c == 438)) + : (c <= 443 || (c < 454 + ? (c >= 445 && c <= 451) + : c <= 454))))))) + : (c <= 457 || (c < 489 + ? (c < 474 + ? (c < 466 + ? (c < 462 + ? c == 460 + : (c <= 462 || c == 464)) + : (c <= 466 || (c < 470 + ? c == 468 + : (c <= 470 || c == 472)))) + : (c <= 474 || (c < 483 + ? (c < 479 + ? (c >= 476 && c <= 477) + : (c <= 479 || c == 481)) + : (c <= 483 || (c < 487 + ? c == 485 + : c <= 487))))) + : (c <= 489 || (c < 509 + ? (c < 499 + ? (c < 493 + ? c == 491 + : (c <= 493 || (c >= 495 && c <= 496))) + : (c <= 499 || (c < 505 + ? c == 501 + : (c <= 505 || c == 507)))) + : (c <= 509 || (c < 517 + ? (c < 513 + ? c == 511 + : (c <= 513 || c == 515)) + : (c <= 517 || (c < 521 + ? c == 519 + : c <= 521))))))))))) + : (c <= 523 || (c < 1127 + ? (c < 736 + ? (c < 553 + ? (c < 539 + ? (c < 531 + ? (c < 527 + ? c == 525 + : (c <= 527 || c == 529)) + : (c <= 531 || (c < 535 + ? c == 533 + : (c <= 535 || c == 537)))) + : (c <= 539 || (c < 547 + ? (c < 543 + ? c == 541 + : (c <= 543 || c == 545)) + : (c <= 547 || (c < 551 + ? c == 549 + : c <= 551))))) + : (c <= 553 || (c < 578 + ? (c < 561 + ? (c < 557 + ? c == 555 + : (c <= 557 || c == 559)) + : (c <= 561 || (c < 572 + ? (c >= 563 && c <= 569) + : (c <= 572 || (c >= 575 && c <= 576))))) + : (c <= 578 || (c < 589 + ? (c < 585 + ? c == 583 + : (c <= 585 || c == 587)) + : (c <= 589 || (c < 710 + ? (c >= 591 && c <= 705) + : c <= 721))))))) + : (c <= 740 || (c < 993 + ? (c < 940 + ? (c < 883 + ? (c < 750 + ? c == 748 + : (c <= 750 || c == 881)) + : (c <= 884 || (c < 890 + ? c == 887 + : (c <= 893 || c == 912)))) + : (c <= 974 || (c < 987 + ? (c < 981 + ? (c >= 976 && c <= 977) + : (c <= 983 || c == 985)) + : (c <= 987 || (c < 991 + ? c == 989 + : c <= 991))))) + : (c <= 993 || (c < 1013 + ? (c < 1001 + ? (c < 997 + ? c == 995 + : (c <= 997 || c == 999)) + : (c <= 1001 || (c < 1005 + ? c == 1003 + : (c <= 1005 || (c >= 1007 && c <= 1011))))) + : (c <= 1013 || (c < 1121 + ? (c < 1019 + ? c == 1016 + : (c <= 1020 || (c >= 1072 && c <= 1119))) + : (c <= 1121 || (c < 1125 + ? c == 1123 + : c <= 1125))))))))) + : (c <= 1127 || (c < 1195 + ? (c < 1165 + ? (c < 1143 + ? (c < 1135 + ? (c < 1131 + ? c == 1129 + : (c <= 1131 || c == 1133)) + : (c <= 1135 || (c < 1139 + ? c == 1137 + : (c <= 1139 || c == 1141)))) + : (c <= 1143 || (c < 1151 + ? (c < 1147 + ? c == 1145 + : (c <= 1147 || c == 1149)) + : (c <= 1151 || (c < 1163 + ? c == 1153 + : c <= 1163))))) + : (c <= 1165 || (c < 1181 + ? (c < 1173 + ? (c < 1169 + ? c == 1167 + : (c <= 1169 || c == 1171)) + : (c <= 1173 || (c < 1177 + ? c == 1175 + : (c <= 1177 || c == 1179)))) + : (c <= 1181 || (c < 1189 + ? (c < 1185 + ? c == 1183 + : (c <= 1185 || c == 1187)) + : (c <= 1189 || (c < 1193 + ? c == 1191 + : c <= 1193))))))) + : (c <= 1195 || (c < 1226 + ? (c < 1211 + ? (c < 1203 + ? (c < 1199 + ? c == 1197 + : (c <= 1199 || c == 1201)) + : (c <= 1203 || (c < 1207 + ? c == 1205 + : (c <= 1207 || c == 1209)))) + : (c <= 1211 || (c < 1220 + ? (c < 1215 + ? c == 1213 + : (c <= 1215 || c == 1218)) + : (c <= 1220 || (c < 1224 + ? c == 1222 + : c <= 1224))))) + : (c <= 1226 || (c < 1241 + ? (c < 1235 + ? (c < 1230 + ? c == 1228 + : (c <= 1231 || c == 1233)) + : (c <= 1235 || (c < 1239 + ? c == 1237 + : c <= 1239))) + : (c <= 1241 || (c < 1249 + ? (c < 1245 + ? c == 1243 + : (c <= 1245 || c == 1247)) + : (c <= 1249 || (c < 1253 + ? c == 1251 + : c <= 1253))))))))))))) + : (c <= 1255 || (c < 2984 + ? (c < 2112 + ? (c < 1315 + ? (c < 1285 + ? (c < 1271 + ? (c < 1263 + ? (c < 1259 + ? c == 1257 + : (c <= 1259 || c == 1261)) + : (c <= 1263 || (c < 1267 + ? c == 1265 + : (c <= 1267 || c == 1269)))) + : (c <= 1271 || (c < 1279 + ? (c < 1275 + ? c == 1273 + : (c <= 1275 || c == 1277)) + : (c <= 1279 || (c < 1283 + ? c == 1281 + : c <= 1283))))) + : (c <= 1285 || (c < 1301 + ? (c < 1293 + ? (c < 1289 + ? c == 1287 + : (c <= 1289 || c == 1291)) + : (c <= 1293 || (c < 1297 + ? c == 1295 + : (c <= 1297 || c == 1299)))) + : (c <= 1301 || (c < 1309 + ? (c < 1305 + ? c == 1303 + : (c <= 1305 || c == 1307)) + : (c <= 1309 || (c < 1313 + ? c == 1311 + : c <= 1313))))))) + : (c <= 1315 || (c < 1765 + ? (c < 1376 + ? (c < 1323 + ? (c < 1319 + ? c == 1317 + : (c <= 1319 || c == 1321)) + : (c <= 1323 || (c < 1327 + ? c == 1325 + : (c <= 1327 || c == 1369)))) + : (c <= 1416 || (c < 1646 + ? (c < 1519 + ? (c >= 1488 && c <= 1514) + : (c <= 1522 || (c >= 1568 && c <= 1610))) + : (c <= 1647 || (c < 1749 + ? (c >= 1649 && c <= 1747) + : c <= 1749))))) + : (c <= 1766 || (c < 1994 + ? (c < 1808 + ? (c < 1786 + ? (c >= 1774 && c <= 1775) + : (c <= 1788 || c == 1791)) + : (c <= 1808 || (c < 1869 + ? (c >= 1810 && c <= 1839) + : (c <= 1957 || c == 1969)))) + : (c <= 2026 || (c < 2074 + ? (c < 2042 + ? (c >= 2036 && c <= 2037) + : (c <= 2042 || (c >= 2048 && c <= 2069))) + : (c <= 2074 || (c < 2088 + ? c == 2084 + : c <= 2088))))))))) + : (c <= 2136 || (c < 2674 + ? (c < 2493 + ? (c < 2417 + ? (c < 2308 + ? (c < 2208 + ? (c >= 2144 && c <= 2154) + : (c <= 2228 || (c >= 2230 && c <= 2247))) + : (c <= 2361 || (c < 2384 + ? c == 2365 + : (c <= 2384 || (c >= 2392 && c <= 2401))))) + : (c <= 2432 || (c < 2474 + ? (c < 2447 + ? (c >= 2437 && c <= 2444) + : (c <= 2448 || (c >= 2451 && c <= 2472))) + : (c <= 2480 || (c < 2486 + ? c == 2482 + : c <= 2489))))) + : (c <= 2493 || (c < 2579 + ? (c < 2544 + ? (c < 2524 + ? c == 2510 + : (c <= 2525 || (c >= 2527 && c <= 2529))) + : (c <= 2545 || (c < 2565 + ? c == 2556 + : (c <= 2570 || (c >= 2575 && c <= 2576))))) + : (c <= 2600 || (c < 2616 + ? (c < 2610 + ? (c >= 2602 && c <= 2608) + : (c <= 2611 || (c >= 2613 && c <= 2614))) + : (c <= 2617 || (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654))))))) + : (c <= 2676 || (c < 2866 + ? (c < 2768 + ? (c < 2730 + ? (c < 2703 + ? (c >= 2693 && c <= 2701) + : (c <= 2705 || (c >= 2707 && c <= 2728))) + : (c <= 2736 || (c < 2741 + ? (c >= 2738 && c <= 2739) + : (c <= 2745 || c == 2749)))) + : (c <= 2768 || (c < 2831 + ? (c < 2809 + ? (c >= 2784 && c <= 2785) + : (c <= 2809 || (c >= 2821 && c <= 2828))) + : (c <= 2832 || (c < 2858 + ? (c >= 2835 && c <= 2856) + : c <= 2864))))) + : (c <= 2867 || (c < 2949 + ? (c < 2911 + ? (c < 2877 + ? (c >= 2869 && c <= 2873) + : (c <= 2877 || (c >= 2908 && c <= 2909))) + : (c <= 2913 || (c < 2947 + ? c == 2929 + : c <= 2947))) + : (c <= 2954 || (c < 2972 + ? (c < 2962 + ? (c >= 2958 && c <= 2960) + : (c <= 2965 || (c >= 2969 && c <= 2970))) + : (c <= 2972 || (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980))))))))))) + : (c <= 2986 || (c < 4304 + ? (c < 3507 + ? (c < 3253 + ? (c < 3160 + ? (c < 3086 + ? (c < 3024 + ? (c >= 2990 && c <= 3001) + : (c <= 3024 || (c >= 3077 && c <= 3084))) + : (c <= 3088 || (c < 3114 + ? (c >= 3090 && c <= 3112) + : (c <= 3129 || c == 3133)))) + : (c <= 3162 || (c < 3214 + ? (c < 3200 + ? (c >= 3168 && c <= 3169) + : (c <= 3200 || (c >= 3205 && c <= 3212))) + : (c <= 3216 || (c < 3242 + ? (c >= 3218 && c <= 3240) + : c <= 3251))))) + : (c <= 3257 || (c < 3389 + ? (c < 3313 + ? (c < 3294 + ? c == 3261 + : (c <= 3294 || (c >= 3296 && c <= 3297))) + : (c <= 3314 || (c < 3342 + ? (c >= 3332 && c <= 3340) + : (c <= 3344 || (c >= 3346 && c <= 3386))))) + : (c <= 3389 || (c < 3450 + ? (c < 3412 + ? c == 3406 + : (c <= 3414 || (c >= 3423 && c <= 3425))) + : (c <= 3455 || (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505))))))) + : (c <= 3515 || (c < 3782 + ? (c < 3718 + ? (c < 3634 + ? (c < 3520 + ? c == 3517 + : (c <= 3526 || (c >= 3585 && c <= 3632))) + : (c <= 3635 || (c < 3713 + ? (c >= 3648 && c <= 3654) + : (c <= 3714 || c == 3716)))) + : (c <= 3722 || (c < 3762 + ? (c < 3749 + ? (c >= 3724 && c <= 3747) + : (c <= 3749 || (c >= 3751 && c <= 3760))) + : (c <= 3763 || (c < 3776 + ? c == 3773 + : c <= 3780))))) + : (c <= 3782 || (c < 4176 + ? (c < 3913 + ? (c < 3840 + ? (c >= 3804 && c <= 3807) + : (c <= 3840 || (c >= 3904 && c <= 3911))) + : (c <= 3948 || (c < 4096 + ? (c >= 3976 && c <= 3980) + : (c <= 4138 || c == 4159)))) + : (c <= 4181 || (c < 4206 + ? (c < 4193 + ? (c >= 4186 && c <= 4189) + : (c <= 4193 || (c >= 4197 && c <= 4198))) + : (c <= 4208 || (c < 4238 + ? (c >= 4213 && c <= 4225) + : c <= 4238))))))))) + : (c <= 4346 || (c < 6016 + ? (c < 4882 + ? (c < 4752 + ? (c < 4696 + ? (c < 4682 + ? (c >= 4348 && c <= 4680) + : (c <= 4685 || (c >= 4688 && c <= 4694))) + : (c <= 4696 || (c < 4704 + ? (c >= 4698 && c <= 4701) + : (c <= 4744 || (c >= 4746 && c <= 4749))))) + : (c <= 4784 || (c < 4802 + ? (c < 4792 + ? (c >= 4786 && c <= 4789) + : (c <= 4798 || c == 4800)) + : (c <= 4805 || (c < 4824 + ? (c >= 4808 && c <= 4822) + : c <= 4880))))) + : (c <= 4885 || (c < 5870 + ? (c < 5121 + ? (c < 4992 + ? (c >= 4888 && c <= 4954) + : (c <= 5007 || (c >= 5112 && c <= 5117))) + : (c <= 5740 || (c < 5761 + ? (c >= 5743 && c <= 5759) + : (c <= 5786 || (c >= 5792 && c <= 5866))))) + : (c <= 5880 || (c < 5952 + ? (c < 5902 + ? (c >= 5888 && c <= 5900) + : (c <= 5905 || (c >= 5920 && c <= 5937))) + : (c <= 5969 || (c < 5998 + ? (c >= 5984 && c <= 5996) + : c <= 6000))))))) + : (c <= 6067 || (c < 6917 + ? (c < 6480 + ? (c < 6272 + ? (c < 6108 + ? c == 6103 + : (c <= 6108 || (c >= 6176 && c <= 6264))) + : (c <= 6312 || (c < 6320 + ? c == 6314 + : (c <= 6389 || (c >= 6400 && c <= 6430))))) + : (c <= 6509 || (c < 6656 + ? (c < 6528 + ? (c >= 6512 && c <= 6516) + : (c <= 6571 || (c >= 6576 && c <= 6601))) + : (c <= 6678 || (c < 6823 + ? (c >= 6688 && c <= 6740) + : c <= 6823))))) + : (c <= 6963 || (c < 7258 + ? (c < 7098 + ? (c < 7043 + ? (c >= 6981 && c <= 6987) + : (c <= 7072 || (c >= 7086 && c <= 7087))) + : (c <= 7141 || (c < 7245 + ? (c >= 7168 && c <= 7203) + : c <= 7247))) + : (c <= 7293 || (c < 7413 + ? (c < 7401 + ? (c >= 7296 && c <= 7304) + : (c <= 7404 || (c >= 7406 && c <= 7411))) + : (c <= 7414 || (c < 7424 + ? c == 7418 + : c <= 7615))))))))))))))) + : (c <= 7681 || (c < 12443 ? (c < 7929 - ? (c < 7803 - ? (c < 7743 - ? (c < 7713 - ? (c < 7699 - ? (c < 7691 - ? (c < 7687 - ? c == 7685 - : (c <= 7687 || c == 7689)) - : (c <= 7691 || (c < 7695 - ? c == 7693 - : (c <= 7695 || c == 7697)))) - : (c <= 7699 || (c < 7707 - ? (c < 7703 - ? c == 7701 - : (c <= 7703 || c == 7705)) - : (c <= 7707 || (c < 7711 - ? c == 7709 - : c <= 7711))))) - : (c <= 7713 || (c < 7729 - ? (c < 7721 - ? (c < 7717 - ? c == 7715 - : (c <= 7717 || c == 7719)) - : (c <= 7721 || (c < 7725 - ? c == 7723 - : (c <= 7725 || c == 7727)))) - : (c <= 7729 || (c < 7737 - ? (c < 7733 - ? c == 7731 - : (c <= 7733 || c == 7735)) - : (c <= 7737 || (c < 7741 - ? c == 7739 - : c <= 7741))))))) - : (c <= 7743 || (c < 7773 - ? (c < 7759 - ? (c < 7751 - ? (c < 7747 - ? c == 7745 - : (c <= 7747 || c == 7749)) - : (c <= 7751 || (c < 7755 - ? c == 7753 - : (c <= 7755 || c == 7757)))) - : (c <= 7759 || (c < 7767 - ? (c < 7763 - ? c == 7761 - : (c <= 7763 || c == 7765)) - : (c <= 7767 || (c < 7771 - ? c == 7769 - : c <= 7771))))) - : (c <= 7773 || (c < 7789 - ? (c < 7781 - ? (c < 7777 - ? c == 7775 - : (c <= 7777 || c == 7779)) - : (c <= 7781 || (c < 7785 - ? c == 7783 - : (c <= 7785 || c == 7787)))) - : (c <= 7789 || (c < 7797 - ? (c < 7793 - ? c == 7791 - : (c <= 7793 || c == 7795)) - : (c <= 7797 || (c < 7801 - ? c == 7799 - : c <= 7801))))))))) - : (c <= 7803 || (c < 7871 - ? (c < 7841 - ? (c < 7819 - ? (c < 7811 - ? (c < 7807 - ? c == 7805 - : (c <= 7807 || c == 7809)) - : (c <= 7811 || (c < 7815 - ? c == 7813 - : (c <= 7815 || c == 7817)))) - : (c <= 7819 || (c < 7827 - ? (c < 7823 - ? c == 7821 - : (c <= 7823 || c == 7825)) - : (c <= 7827 || (c < 7839 - ? (c >= 7829 && c <= 7837) - : c <= 7839))))) - : (c <= 7841 || (c < 7857 - ? (c < 7849 - ? (c < 7845 - ? c == 7843 - : (c <= 7845 || c == 7847)) - : (c <= 7849 || (c < 7853 - ? c == 7851 - : (c <= 7853 || c == 7855)))) - : (c <= 7857 || (c < 7865 - ? (c < 7861 - ? c == 7859 - : (c <= 7861 || c == 7863)) - : (c <= 7865 || (c < 7869 - ? c == 7867 - : c <= 7869))))))) - : (c <= 7871 || (c < 7901 - ? (c < 7887 - ? (c < 7879 - ? (c < 7875 - ? c == 7873 - : (c <= 7875 || c == 7877)) - : (c <= 7879 || (c < 7883 - ? c == 7881 - : (c <= 7883 || c == 7885)))) - : (c <= 7887 || (c < 7895 - ? (c < 7891 - ? c == 7889 - : (c <= 7891 || c == 7893)) - : (c <= 7895 || (c < 7899 - ? c == 7897 - : c <= 7899))))) - : (c <= 7901 || (c < 7915 - ? (c < 7909 - ? (c < 7905 - ? c == 7903 - : (c <= 7905 || c == 7907)) - : (c <= 7909 || (c < 7913 - ? c == 7911 - : c <= 7913))) + ? (c < 7801 + ? (c < 7741 + ? (c < 7711 + ? (c < 7697 + ? (c < 7689 + ? (c < 7685 + ? c == 7683 + : (c <= 7685 || c == 7687)) + : (c <= 7689 || (c < 7693 + ? c == 7691 + : (c <= 7693 || c == 7695)))) + : (c <= 7697 || (c < 7705 + ? (c < 7701 + ? c == 7699 + : (c <= 7701 || c == 7703)) + : (c <= 7705 || (c < 7709 + ? c == 7707 + : c <= 7709))))) + : (c <= 7711 || (c < 7727 + ? (c < 7719 + ? (c < 7715 + ? c == 7713 + : (c <= 7715 || c == 7717)) + : (c <= 7719 || (c < 7723 + ? c == 7721 + : (c <= 7723 || c == 7725)))) + : (c <= 7727 || (c < 7735 + ? (c < 7731 + ? c == 7729 + : (c <= 7731 || c == 7733)) + : (c <= 7735 || (c < 7739 + ? c == 7737 + : c <= 7739))))))) + : (c <= 7741 || (c < 7771 + ? (c < 7757 + ? (c < 7749 + ? (c < 7745 + ? c == 7743 + : (c <= 7745 || c == 7747)) + : (c <= 7749 || (c < 7753 + ? c == 7751 + : (c <= 7753 || c == 7755)))) + : (c <= 7757 || (c < 7765 + ? (c < 7761 + ? c == 7759 + : (c <= 7761 || c == 7763)) + : (c <= 7765 || (c < 7769 + ? c == 7767 + : c <= 7769))))) + : (c <= 7771 || (c < 7787 + ? (c < 7779 + ? (c < 7775 + ? c == 7773 + : (c <= 7775 || c == 7777)) + : (c <= 7779 || (c < 7783 + ? c == 7781 + : (c <= 7783 || c == 7785)))) + : (c <= 7787 || (c < 7795 + ? (c < 7791 + ? c == 7789 + : (c <= 7791 || c == 7793)) + : (c <= 7795 || (c < 7799 + ? c == 7797 + : c <= 7799))))))))) + : (c <= 7801 || (c < 7869 + ? (c < 7839 + ? (c < 7817 + ? (c < 7809 + ? (c < 7805 + ? c == 7803 + : (c <= 7805 || c == 7807)) + : (c <= 7809 || (c < 7813 + ? c == 7811 + : (c <= 7813 || c == 7815)))) + : (c <= 7817 || (c < 7825 + ? (c < 7821 + ? c == 7819 + : (c <= 7821 || c == 7823)) + : (c <= 7825 || (c < 7829 + ? c == 7827 + : c <= 7837))))) + : (c <= 7839 || (c < 7855 + ? (c < 7847 + ? (c < 7843 + ? c == 7841 + : (c <= 7843 || c == 7845)) + : (c <= 7847 || (c < 7851 + ? c == 7849 + : (c <= 7851 || c == 7853)))) + : (c <= 7855 || (c < 7863 + ? (c < 7859 + ? c == 7857 + : (c <= 7859 || c == 7861)) + : (c <= 7863 || (c < 7867 + ? c == 7865 + : c <= 7867))))))) + : (c <= 7869 || (c < 7899 + ? (c < 7885 + ? (c < 7877 + ? (c < 7873 + ? c == 7871 + : (c <= 7873 || c == 7875)) + : (c <= 7877 || (c < 7881 + ? c == 7879 + : (c <= 7881 || c == 7883)))) + : (c <= 7885 || (c < 7893 + ? (c < 7889 + ? c == 7887 + : (c <= 7889 || c == 7891)) + : (c <= 7893 || (c < 7897 + ? c == 7895 + : c <= 7897))))) + : (c <= 7899 || (c < 7915 + ? (c < 7907 + ? (c < 7903 + ? c == 7901 + : (c <= 7903 || c == 7905)) + : (c <= 7907 || (c < 7911 + ? c == 7909 + : (c <= 7911 || c == 7913)))) : (c <= 7915 || (c < 7923 ? (c < 7919 ? c == 7917 @@ -3959,383 +3903,383 @@ static inline bool aux_sym_identifier_token1_character_set_2(int32_t c) { static inline bool aux_sym_identifier_token1_character_set_3(int32_t c) { return (c < 7683 - ? (c < 1257 - ? (c < 525 - ? (c < 365 - ? (c < 303 - ? (c < 273 - ? (c < 259 - ? (c < 186 - ? (c < 170 - ? (c >= 'b' && c <= 'z') - : (c <= 170 || c == 181)) - : (c <= 186 || (c < 248 - ? (c >= 223 && c <= 246) - : (c <= 255 || c == 257)))) - : (c <= 259 || (c < 267 - ? (c < 263 - ? c == 261 - : (c <= 263 || c == 265)) - : (c <= 267 || (c < 271 - ? c == 269 - : c <= 271))))) - : (c <= 273 || (c < 289 - ? (c < 281 - ? (c < 277 - ? c == 275 - : (c <= 277 || c == 279)) - : (c <= 281 || (c < 285 - ? c == 283 - : (c <= 285 || c == 287)))) - : (c <= 289 || (c < 297 - ? (c < 293 - ? c == 291 - : (c <= 293 || c == 295)) - : (c <= 297 || (c < 301 - ? c == 299 - : c <= 301))))))) - : (c <= 303 || (c < 335 - ? (c < 320 - ? (c < 311 - ? (c < 307 - ? c == 305 - : (c <= 307 || c == 309)) - : (c <= 312 || (c < 316 - ? c == 314 - : (c <= 316 || c == 318)))) - : (c <= 320 || (c < 328 - ? (c < 324 - ? c == 322 - : (c <= 324 || c == 326)) - : (c <= 329 || (c < 333 - ? c == 331 - : c <= 333))))) - : (c <= 335 || (c < 351 - ? (c < 343 - ? (c < 339 - ? c == 337 - : (c <= 339 || c == 341)) - : (c <= 343 || (c < 347 - ? c == 345 - : (c <= 347 || c == 349)))) - : (c <= 351 || (c < 359 - ? (c < 355 - ? c == 353 - : (c <= 355 || c == 357)) - : (c <= 359 || (c < 363 - ? c == 361 - : c <= 363))))))))) - : (c <= 365 || (c < 460 - ? (c < 409 - ? (c < 382 - ? (c < 373 - ? (c < 369 - ? c == 367 - : (c <= 369 || c == 371)) - : (c <= 373 || (c < 378 - ? c == 375 - : (c <= 378 || c == 380)))) - : (c <= 384 || (c < 396 - ? (c < 389 - ? c == 387 - : (c <= 389 || c == 392)) - : (c <= 397 || (c < 405 - ? c == 402 - : c <= 405))))) - : (c <= 411 || (c < 432 - ? (c < 421 - ? (c < 417 - ? c == 414 - : (c <= 417 || c == 419)) - : (c <= 421 || (c < 426 - ? c == 424 - : (c <= 427 || c == 429)))) - : (c <= 432 || (c < 445 - ? (c < 438 - ? c == 436 - : (c <= 438 || (c >= 441 && c <= 443))) - : (c <= 451 || (c < 457 - ? c == 454 - : c <= 457))))))) - : (c <= 460 || (c < 491 - ? (c < 476 - ? (c < 468 - ? (c < 464 - ? c == 462 - : (c <= 464 || c == 466)) - : (c <= 468 || (c < 472 - ? c == 470 - : (c <= 472 || c == 474)))) - : (c <= 477 || (c < 485 - ? (c < 481 - ? c == 479 - : (c <= 481 || c == 483)) - : (c <= 485 || (c < 489 - ? c == 487 - : c <= 489))))) - : (c <= 491 || (c < 511 - ? (c < 501 - ? (c < 495 - ? c == 493 - : (c <= 496 || c == 499)) - : (c <= 501 || (c < 507 - ? c == 505 - : (c <= 507 || c == 509)))) - : (c <= 511 || (c < 519 - ? (c < 515 - ? c == 513 - : (c <= 515 || c == 517)) - : (c <= 519 || (c < 523 - ? c == 521 - : c <= 523))))))))))) - : (c <= 525 || (c < 1129 - ? (c < 748 - ? (c < 555 - ? (c < 541 - ? (c < 533 - ? (c < 529 - ? c == 527 - : (c <= 529 || c == 531)) - : (c <= 533 || (c < 537 - ? c == 535 - : (c <= 537 || c == 539)))) - : (c <= 541 || (c < 549 - ? (c < 545 - ? c == 543 - : (c <= 545 || c == 547)) - : (c <= 549 || (c < 553 - ? c == 551 - : c <= 553))))) - : (c <= 555 || (c < 583 - ? (c < 563 - ? (c < 559 - ? c == 557 - : (c <= 559 || c == 561)) - : (c <= 569 || (c < 575 - ? c == 572 - : (c <= 576 || c == 578)))) - : (c <= 583 || (c < 591 - ? (c < 587 - ? c == 585 - : (c <= 587 || c == 589)) - : (c <= 705 || (c < 736 - ? (c >= 710 && c <= 721) - : c <= 740))))))) - : (c <= 748 || (c < 995 - ? (c < 976 - ? (c < 887 - ? (c < 881 - ? c == 750 - : (c <= 881 || (c >= 883 && c <= 884))) - : (c <= 887 || (c < 912 - ? (c >= 890 && c <= 893) - : (c <= 912 || (c >= 940 && c <= 974))))) - : (c <= 977 || (c < 989 - ? (c < 985 - ? (c >= 981 && c <= 983) - : (c <= 985 || c == 987)) - : (c <= 989 || (c < 993 - ? c == 991 - : c <= 993))))) - : (c <= 995 || (c < 1016 - ? (c < 1003 - ? (c < 999 - ? c == 997 - : (c <= 999 || c == 1001)) - : (c <= 1003 || (c < 1007 - ? c == 1005 - : (c <= 1011 || c == 1013)))) - : (c <= 1016 || (c < 1123 - ? (c < 1072 - ? (c >= 1019 && c <= 1020) - : (c <= 1119 || c == 1121)) - : (c <= 1123 || (c < 1127 - ? c == 1125 - : c <= 1127))))))))) - : (c <= 1129 || (c < 1197 - ? (c < 1167 - ? (c < 1145 - ? (c < 1137 - ? (c < 1133 - ? c == 1131 - : (c <= 1133 || c == 1135)) - : (c <= 1137 || (c < 1141 - ? c == 1139 - : (c <= 1141 || c == 1143)))) - : (c <= 1145 || (c < 1153 - ? (c < 1149 - ? c == 1147 - : (c <= 1149 || c == 1151)) - : (c <= 1153 || (c < 1165 - ? c == 1163 - : c <= 1165))))) - : (c <= 1167 || (c < 1183 - ? (c < 1175 - ? (c < 1171 - ? c == 1169 - : (c <= 1171 || c == 1173)) - : (c <= 1175 || (c < 1179 - ? c == 1177 - : (c <= 1179 || c == 1181)))) - : (c <= 1183 || (c < 1191 - ? (c < 1187 - ? c == 1185 - : (c <= 1187 || c == 1189)) - : (c <= 1191 || (c < 1195 - ? c == 1193 - : c <= 1195))))))) - : (c <= 1197 || (c < 1228 - ? (c < 1213 - ? (c < 1205 - ? (c < 1201 - ? c == 1199 - : (c <= 1201 || c == 1203)) - : (c <= 1205 || (c < 1209 - ? c == 1207 - : (c <= 1209 || c == 1211)))) - : (c <= 1213 || (c < 1222 - ? (c < 1218 - ? c == 1215 - : (c <= 1218 || c == 1220)) - : (c <= 1222 || (c < 1226 - ? c == 1224 - : c <= 1226))))) - : (c <= 1228 || (c < 1243 - ? (c < 1237 - ? (c < 1233 - ? (c >= 1230 && c <= 1231) - : (c <= 1233 || c == 1235)) - : (c <= 1237 || (c < 1241 - ? c == 1239 - : c <= 1241))) - : (c <= 1243 || (c < 1251 - ? (c < 1247 - ? c == 1245 - : (c <= 1247 || c == 1249)) - : (c <= 1251 || (c < 1255 - ? c == 1253 - : c <= 1255))))))))))))) - : (c <= 1257 || (c < 2990 - ? (c < 2144 - ? (c < 1317 - ? (c < 1287 - ? (c < 1273 - ? (c < 1265 - ? (c < 1261 - ? c == 1259 - : (c <= 1261 || c == 1263)) - : (c <= 1265 || (c < 1269 - ? c == 1267 - : (c <= 1269 || c == 1271)))) - : (c <= 1273 || (c < 1281 - ? (c < 1277 - ? c == 1275 - : (c <= 1277 || c == 1279)) - : (c <= 1281 || (c < 1285 - ? c == 1283 - : c <= 1285))))) - : (c <= 1287 || (c < 1303 - ? (c < 1295 - ? (c < 1291 - ? c == 1289 - : (c <= 1291 || c == 1293)) - : (c <= 1295 || (c < 1299 - ? c == 1297 - : (c <= 1299 || c == 1301)))) - : (c <= 1303 || (c < 1311 - ? (c < 1307 - ? c == 1305 - : (c <= 1307 || c == 1309)) - : (c <= 1311 || (c < 1315 - ? c == 1313 - : c <= 1315))))))) - : (c <= 1317 || (c < 1774 - ? (c < 1488 - ? (c < 1325 - ? (c < 1321 - ? c == 1319 - : (c <= 1321 || c == 1323)) - : (c <= 1325 || (c < 1369 - ? c == 1327 - : (c <= 1369 || (c >= 1376 && c <= 1416))))) - : (c <= 1514 || (c < 1649 - ? (c < 1568 - ? (c >= 1519 && c <= 1522) - : (c <= 1610 || (c >= 1646 && c <= 1647))) - : (c <= 1747 || (c < 1765 - ? c == 1749 - : c <= 1766))))) - : (c <= 1775 || (c < 2036 - ? (c < 1810 - ? (c < 1791 - ? (c >= 1786 && c <= 1788) - : (c <= 1791 || c == 1808)) - : (c <= 1839 || (c < 1969 - ? (c >= 1869 && c <= 1957) - : (c <= 1969 || (c >= 1994 && c <= 2026))))) - : (c <= 2037 || (c < 2084 - ? (c < 2048 - ? c == 2042 - : (c <= 2069 || c == 2074)) - : (c <= 2084 || (c < 2112 - ? c == 2088 - : c <= 2136))))))))) - : (c <= 2154 || (c < 2693 - ? (c < 2510 - ? (c < 2437 - ? (c < 2365 - ? (c < 2230 - ? (c >= 2208 && c <= 2228) - : (c <= 2247 || (c >= 2308 && c <= 2361))) - : (c <= 2365 || (c < 2392 - ? c == 2384 - : (c <= 2401 || (c >= 2417 && c <= 2432))))) - : (c <= 2444 || (c < 2482 - ? (c < 2451 - ? (c >= 2447 && c <= 2448) - : (c <= 2472 || (c >= 2474 && c <= 2480))) - : (c <= 2482 || (c < 2493 - ? (c >= 2486 && c <= 2489) - : c <= 2493))))) - : (c <= 2510 || (c < 2602 - ? (c < 2556 - ? (c < 2527 - ? (c >= 2524 && c <= 2525) - : (c <= 2529 || (c >= 2544 && c <= 2545))) - : (c <= 2556 || (c < 2575 - ? (c >= 2565 && c <= 2570) - : (c <= 2576 || (c >= 2579 && c <= 2600))))) - : (c <= 2608 || (c < 2649 - ? (c < 2613 - ? (c >= 2610 && c <= 2611) - : (c <= 2614 || (c >= 2616 && c <= 2617))) - : (c <= 2652 || (c < 2674 - ? c == 2654 - : c <= 2676))))))) - : (c <= 2701 || (c < 2869 - ? (c < 2784 - ? (c < 2738 - ? (c < 2707 - ? (c >= 2703 && c <= 2705) - : (c <= 2728 || (c >= 2730 && c <= 2736))) - : (c <= 2739 || (c < 2749 - ? (c >= 2741 && c <= 2745) - : (c <= 2749 || c == 2768)))) - : (c <= 2785 || (c < 2835 - ? (c < 2821 - ? c == 2809 - : (c <= 2828 || (c >= 2831 && c <= 2832))) - : (c <= 2856 || (c < 2866 - ? (c >= 2858 && c <= 2864) - : c <= 2867))))) - : (c <= 2873 || (c < 2958 - ? (c < 2929 - ? (c < 2908 - ? c == 2877 - : (c <= 2909 || (c >= 2911 && c <= 2913))) - : (c <= 2929 || (c < 2949 - ? c == 2947 - : c <= 2954))) + ? (c < 1255 + ? (c < 523 + ? (c < 363 + ? (c < 301 + ? (c < 271 + ? (c < 257 + ? (c < 181 + ? (c < 'b' + ? c == '_' + : (c <= 'z' || c == 170)) + : (c <= 181 || (c < 223 + ? c == 186 + : (c <= 246 || (c >= 248 && c <= 255))))) + : (c <= 257 || (c < 265 + ? (c < 261 + ? c == 259 + : (c <= 261 || c == 263)) + : (c <= 265 || (c < 269 + ? c == 267 + : c <= 269))))) + : (c <= 271 || (c < 287 + ? (c < 279 + ? (c < 275 + ? c == 273 + : (c <= 275 || c == 277)) + : (c <= 279 || (c < 283 + ? c == 281 + : (c <= 283 || c == 285)))) + : (c <= 287 || (c < 295 + ? (c < 291 + ? c == 289 + : (c <= 291 || c == 293)) + : (c <= 295 || (c < 299 + ? c == 297 + : c <= 299))))))) + : (c <= 301 || (c < 333 + ? (c < 318 + ? (c < 309 + ? (c < 305 + ? c == 303 + : (c <= 305 || c == 307)) + : (c <= 309 || (c < 314 + ? (c >= 311 && c <= 312) + : (c <= 314 || c == 316)))) + : (c <= 318 || (c < 326 + ? (c < 322 + ? c == 320 + : (c <= 322 || c == 324)) + : (c <= 326 || (c < 331 + ? (c >= 328 && c <= 329) + : c <= 331))))) + : (c <= 333 || (c < 349 + ? (c < 341 + ? (c < 337 + ? c == 335 + : (c <= 337 || c == 339)) + : (c <= 341 || (c < 345 + ? c == 343 + : (c <= 345 || c == 347)))) + : (c <= 349 || (c < 357 + ? (c < 353 + ? c == 351 + : (c <= 353 || c == 355)) + : (c <= 357 || (c < 361 + ? c == 359 + : c <= 361))))))))) + : (c <= 363 || (c < 457 + ? (c < 405 + ? (c < 380 + ? (c < 371 + ? (c < 367 + ? c == 365 + : (c <= 367 || c == 369)) + : (c <= 371 || (c < 375 + ? c == 373 + : (c <= 375 || c == 378)))) + : (c <= 380 || (c < 392 + ? (c < 387 + ? (c >= 382 && c <= 384) + : (c <= 387 || c == 389)) + : (c <= 392 || (c < 402 + ? (c >= 396 && c <= 397) + : c <= 402))))) + : (c <= 405 || (c < 429 + ? (c < 419 + ? (c < 414 + ? (c >= 409 && c <= 411) + : (c <= 414 || c == 417)) + : (c <= 419 || (c < 424 + ? c == 421 + : (c <= 424 || (c >= 426 && c <= 427))))) + : (c <= 429 || (c < 441 + ? (c < 436 + ? c == 432 + : (c <= 436 || c == 438)) + : (c <= 443 || (c < 454 + ? (c >= 445 && c <= 451) + : c <= 454))))))) + : (c <= 457 || (c < 489 + ? (c < 474 + ? (c < 466 + ? (c < 462 + ? c == 460 + : (c <= 462 || c == 464)) + : (c <= 466 || (c < 470 + ? c == 468 + : (c <= 470 || c == 472)))) + : (c <= 474 || (c < 483 + ? (c < 479 + ? (c >= 476 && c <= 477) + : (c <= 479 || c == 481)) + : (c <= 483 || (c < 487 + ? c == 485 + : c <= 487))))) + : (c <= 489 || (c < 509 + ? (c < 499 + ? (c < 493 + ? c == 491 + : (c <= 493 || (c >= 495 && c <= 496))) + : (c <= 499 || (c < 505 + ? c == 501 + : (c <= 505 || c == 507)))) + : (c <= 509 || (c < 517 + ? (c < 513 + ? c == 511 + : (c <= 513 || c == 515)) + : (c <= 517 || (c < 521 + ? c == 519 + : c <= 521))))))))))) + : (c <= 523 || (c < 1127 + ? (c < 736 + ? (c < 553 + ? (c < 539 + ? (c < 531 + ? (c < 527 + ? c == 525 + : (c <= 527 || c == 529)) + : (c <= 531 || (c < 535 + ? c == 533 + : (c <= 535 || c == 537)))) + : (c <= 539 || (c < 547 + ? (c < 543 + ? c == 541 + : (c <= 543 || c == 545)) + : (c <= 547 || (c < 551 + ? c == 549 + : c <= 551))))) + : (c <= 553 || (c < 578 + ? (c < 561 + ? (c < 557 + ? c == 555 + : (c <= 557 || c == 559)) + : (c <= 561 || (c < 572 + ? (c >= 563 && c <= 569) + : (c <= 572 || (c >= 575 && c <= 576))))) + : (c <= 578 || (c < 589 + ? (c < 585 + ? c == 583 + : (c <= 585 || c == 587)) + : (c <= 589 || (c < 710 + ? (c >= 591 && c <= 705) + : c <= 721))))))) + : (c <= 740 || (c < 993 + ? (c < 940 + ? (c < 883 + ? (c < 750 + ? c == 748 + : (c <= 750 || c == 881)) + : (c <= 884 || (c < 890 + ? c == 887 + : (c <= 893 || c == 912)))) + : (c <= 974 || (c < 987 + ? (c < 981 + ? (c >= 976 && c <= 977) + : (c <= 983 || c == 985)) + : (c <= 987 || (c < 991 + ? c == 989 + : c <= 991))))) + : (c <= 993 || (c < 1013 + ? (c < 1001 + ? (c < 997 + ? c == 995 + : (c <= 997 || c == 999)) + : (c <= 1001 || (c < 1005 + ? c == 1003 + : (c <= 1005 || (c >= 1007 && c <= 1011))))) + : (c <= 1013 || (c < 1121 + ? (c < 1019 + ? c == 1016 + : (c <= 1020 || (c >= 1072 && c <= 1119))) + : (c <= 1121 || (c < 1125 + ? c == 1123 + : c <= 1125))))))))) + : (c <= 1127 || (c < 1195 + ? (c < 1165 + ? (c < 1143 + ? (c < 1135 + ? (c < 1131 + ? c == 1129 + : (c <= 1131 || c == 1133)) + : (c <= 1135 || (c < 1139 + ? c == 1137 + : (c <= 1139 || c == 1141)))) + : (c <= 1143 || (c < 1151 + ? (c < 1147 + ? c == 1145 + : (c <= 1147 || c == 1149)) + : (c <= 1151 || (c < 1163 + ? c == 1153 + : c <= 1163))))) + : (c <= 1165 || (c < 1181 + ? (c < 1173 + ? (c < 1169 + ? c == 1167 + : (c <= 1169 || c == 1171)) + : (c <= 1173 || (c < 1177 + ? c == 1175 + : (c <= 1177 || c == 1179)))) + : (c <= 1181 || (c < 1189 + ? (c < 1185 + ? c == 1183 + : (c <= 1185 || c == 1187)) + : (c <= 1189 || (c < 1193 + ? c == 1191 + : c <= 1193))))))) + : (c <= 1195 || (c < 1226 + ? (c < 1211 + ? (c < 1203 + ? (c < 1199 + ? c == 1197 + : (c <= 1199 || c == 1201)) + : (c <= 1203 || (c < 1207 + ? c == 1205 + : (c <= 1207 || c == 1209)))) + : (c <= 1211 || (c < 1220 + ? (c < 1215 + ? c == 1213 + : (c <= 1215 || c == 1218)) + : (c <= 1220 || (c < 1224 + ? c == 1222 + : c <= 1224))))) + : (c <= 1226 || (c < 1241 + ? (c < 1235 + ? (c < 1230 + ? c == 1228 + : (c <= 1231 || c == 1233)) + : (c <= 1235 || (c < 1239 + ? c == 1237 + : c <= 1239))) + : (c <= 1241 || (c < 1249 + ? (c < 1245 + ? c == 1243 + : (c <= 1245 || c == 1247)) + : (c <= 1249 || (c < 1253 + ? c == 1251 + : c <= 1253))))))))))))) + : (c <= 1255 || (c < 2990 + ? (c < 2112 + ? (c < 1315 + ? (c < 1285 + ? (c < 1271 + ? (c < 1263 + ? (c < 1259 + ? c == 1257 + : (c <= 1259 || c == 1261)) + : (c <= 1263 || (c < 1267 + ? c == 1265 + : (c <= 1267 || c == 1269)))) + : (c <= 1271 || (c < 1279 + ? (c < 1275 + ? c == 1273 + : (c <= 1275 || c == 1277)) + : (c <= 1279 || (c < 1283 + ? c == 1281 + : c <= 1283))))) + : (c <= 1285 || (c < 1301 + ? (c < 1293 + ? (c < 1289 + ? c == 1287 + : (c <= 1289 || c == 1291)) + : (c <= 1293 || (c < 1297 + ? c == 1295 + : (c <= 1297 || c == 1299)))) + : (c <= 1301 || (c < 1309 + ? (c < 1305 + ? c == 1303 + : (c <= 1305 || c == 1307)) + : (c <= 1309 || (c < 1313 + ? c == 1311 + : c <= 1313))))))) + : (c <= 1315 || (c < 1765 + ? (c < 1376 + ? (c < 1323 + ? (c < 1319 + ? c == 1317 + : (c <= 1319 || c == 1321)) + : (c <= 1323 || (c < 1327 + ? c == 1325 + : (c <= 1327 || c == 1369)))) + : (c <= 1416 || (c < 1646 + ? (c < 1519 + ? (c >= 1488 && c <= 1514) + : (c <= 1522 || (c >= 1568 && c <= 1610))) + : (c <= 1647 || (c < 1749 + ? (c >= 1649 && c <= 1747) + : c <= 1749))))) + : (c <= 1766 || (c < 1994 + ? (c < 1808 + ? (c < 1786 + ? (c >= 1774 && c <= 1775) + : (c <= 1788 || c == 1791)) + : (c <= 1808 || (c < 1869 + ? (c >= 1810 && c <= 1839) + : (c <= 1957 || c == 1969)))) + : (c <= 2026 || (c < 2074 + ? (c < 2042 + ? (c >= 2036 && c <= 2037) + : (c <= 2042 || (c >= 2048 && c <= 2069))) + : (c <= 2074 || (c < 2088 + ? c == 2084 + : c <= 2088))))))))) + : (c <= 2136 || (c < 2674 + ? (c < 2493 + ? (c < 2417 + ? (c < 2308 + ? (c < 2208 + ? (c >= 2144 && c <= 2154) + : (c <= 2228 || (c >= 2230 && c <= 2247))) + : (c <= 2361 || (c < 2384 + ? c == 2365 + : (c <= 2384 || (c >= 2392 && c <= 2401))))) + : (c <= 2432 || (c < 2474 + ? (c < 2447 + ? (c >= 2437 && c <= 2444) + : (c <= 2448 || (c >= 2451 && c <= 2472))) + : (c <= 2480 || (c < 2486 + ? c == 2482 + : c <= 2489))))) + : (c <= 2493 || (c < 2579 + ? (c < 2544 + ? (c < 2524 + ? c == 2510 + : (c <= 2525 || (c >= 2527 && c <= 2529))) + : (c <= 2545 || (c < 2565 + ? c == 2556 + : (c <= 2570 || (c >= 2575 && c <= 2576))))) + : (c <= 2600 || (c < 2616 + ? (c < 2610 + ? (c >= 2602 && c <= 2608) + : (c <= 2611 || (c >= 2613 && c <= 2614))) + : (c <= 2617 || (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654))))))) + : (c <= 2676 || (c < 2866 + ? (c < 2768 + ? (c < 2730 + ? (c < 2703 + ? (c >= 2693 && c <= 2701) + : (c <= 2705 || (c >= 2707 && c <= 2728))) + : (c <= 2736 || (c < 2741 + ? (c >= 2738 && c <= 2739) + : (c <= 2745 || c == 2749)))) + : (c <= 2768 || (c < 2831 + ? (c < 2809 + ? (c >= 2784 && c <= 2785) + : (c <= 2809 || (c >= 2821 && c <= 2828))) + : (c <= 2832 || (c < 2858 + ? (c >= 2835 && c <= 2856) + : c <= 2864))))) + : (c <= 2867 || (c < 2958 + ? (c < 2911 + ? (c < 2877 + ? (c >= 2869 && c <= 2873) + : (c <= 2877 || (c >= 2908 && c <= 2909))) + : (c <= 2913 || (c < 2947 + ? c == 2929 + : (c <= 2947 || (c >= 2949 && c <= 2954))))) : (c <= 2960 || (c < 2974 ? (c < 2969 ? (c >= 2962 && c <= 2965) @@ -6887,1908 +6831,6 @@ static inline bool aux_sym_identifier_token1_character_set_5(int32_t c) { : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); } -static inline bool sym_unused_identifier_character_set_1(int32_t c) { - return (c < 42946 - ? (c < 3713 - ? (c < 2707 - ? (c < 1984 - ? (c < 931 - ? (c < 710 - ? (c < 181 - ? (c < '_' - ? (c < 'B' - ? (c >= '0' && c <= '9') - : c <= 'Z') - : (c <= '_' || (c < 170 - ? (c >= 'a' && c <= 'z') - : c <= 170))) - : (c <= 181 || (c < 192 - ? (c < 186 - ? c == 183 - : c <= 186) - : (c <= 214 || (c < 248 - ? (c >= 216 && c <= 246) - : c <= 705))))) - : (c <= 721 || (c < 890 - ? (c < 750 - ? (c < 748 - ? (c >= 736 && c <= 740) - : c <= 748) - : (c <= 750 || (c < 886 - ? (c >= 768 && c <= 884) - : c <= 887))) - : (c <= 893 || (c < 908 - ? (c < 902 - ? c == 895 - : c <= 906) - : (c <= 908 || (c >= 910 && c <= 929))))))) - : (c <= 1013 || (c < 1488 - ? (c < 1376 - ? (c < 1162 - ? (c < 1155 - ? (c >= 1015 && c <= 1153) - : c <= 1159) - : (c <= 1327 || (c < 1369 - ? (c >= 1329 && c <= 1366) - : c <= 1369))) - : (c <= 1416 || (c < 1473 - ? (c < 1471 - ? (c >= 1425 && c <= 1469) - : c <= 1471) - : (c <= 1474 || (c < 1479 - ? (c >= 1476 && c <= 1477) - : c <= 1479))))) - : (c <= 1514 || (c < 1759 - ? (c < 1568 - ? (c < 1552 - ? (c >= 1519 && c <= 1522) - : c <= 1562) - : (c <= 1641 || (c < 1749 - ? (c >= 1646 && c <= 1747) - : c <= 1756))) - : (c <= 1768 || (c < 1808 - ? (c < 1791 - ? (c >= 1770 && c <= 1788) - : c <= 1791) - : (c <= 1866 || (c >= 1869 && c <= 1969))))))))) - : (c <= 2037 || (c < 2527 - ? (c < 2437 - ? (c < 2208 - ? (c < 2048 - ? (c < 2045 - ? c == 2042 - : c <= 2045) - : (c <= 2093 || (c < 2144 - ? (c >= 2112 && c <= 2139) - : c <= 2154))) - : (c <= 2228 || (c < 2275 - ? (c < 2259 - ? (c >= 2230 && c <= 2247) - : c <= 2273) - : (c <= 2403 || (c < 2417 - ? (c >= 2406 && c <= 2415) - : c <= 2435))))) - : (c <= 2444 || (c < 2492 - ? (c < 2474 - ? (c < 2451 - ? (c >= 2447 && c <= 2448) - : c <= 2472) - : (c <= 2480 || (c < 2486 - ? c == 2482 - : c <= 2489))) - : (c <= 2500 || (c < 2519 - ? (c < 2507 - ? (c >= 2503 && c <= 2504) - : c <= 2510) - : (c <= 2519 || (c >= 2524 && c <= 2525))))))) - : (c <= 2531 || (c < 2620 - ? (c < 2575 - ? (c < 2558 - ? (c < 2556 - ? (c >= 2534 && c <= 2545) - : c <= 2556) - : (c <= 2558 || (c < 2565 - ? (c >= 2561 && c <= 2563) - : c <= 2570))) - : (c <= 2576 || (c < 2610 - ? (c < 2602 - ? (c >= 2579 && c <= 2600) - : c <= 2608) - : (c <= 2611 || (c < 2616 - ? (c >= 2613 && c <= 2614) - : c <= 2617))))) - : (c <= 2620 || (c < 2654 - ? (c < 2635 - ? (c < 2631 - ? (c >= 2622 && c <= 2626) - : c <= 2632) - : (c <= 2637 || (c < 2649 - ? c == 2641 - : c <= 2652))) - : (c <= 2654 || (c < 2693 - ? (c < 2689 - ? (c >= 2662 && c <= 2677) - : c <= 2691) - : (c <= 2701 || (c >= 2703 && c <= 2705))))))))))) - : (c <= 2728 || (c < 3133 - ? (c < 2911 - ? (c < 2821 - ? (c < 2763 - ? (c < 2741 - ? (c < 2738 - ? (c >= 2730 && c <= 2736) - : c <= 2739) - : (c <= 2745 || (c < 2759 - ? (c >= 2748 && c <= 2757) - : c <= 2761))) - : (c <= 2765 || (c < 2790 - ? (c < 2784 - ? c == 2768 - : c <= 2787) - : (c <= 2799 || (c < 2817 - ? (c >= 2809 && c <= 2815) - : c <= 2819))))) - : (c <= 2828 || (c < 2876 - ? (c < 2858 - ? (c < 2835 - ? (c >= 2831 && c <= 2832) - : c <= 2856) - : (c <= 2864 || (c < 2869 - ? (c >= 2866 && c <= 2867) - : c <= 2873))) - : (c <= 2884 || (c < 2901 - ? (c < 2891 - ? (c >= 2887 && c <= 2888) - : c <= 2893) - : (c <= 2903 || (c >= 2908 && c <= 2909))))))) - : (c <= 2915 || (c < 2990 - ? (c < 2962 - ? (c < 2946 - ? (c < 2929 - ? (c >= 2918 && c <= 2927) - : c <= 2929) - : (c <= 2947 || (c < 2958 - ? (c >= 2949 && c <= 2954) - : c <= 2960))) - : (c <= 2965 || (c < 2974 - ? (c < 2972 - ? (c >= 2969 && c <= 2970) - : c <= 2972) - : (c <= 2975 || (c < 2984 - ? (c >= 2979 && c <= 2980) - : c <= 2986))))) - : (c <= 3001 || (c < 3046 - ? (c < 3018 - ? (c < 3014 - ? (c >= 3006 && c <= 3010) - : c <= 3016) - : (c <= 3021 || (c < 3031 - ? c == 3024 - : c <= 3031))) - : (c <= 3055 || (c < 3090 - ? (c < 3086 - ? (c >= 3072 && c <= 3084) - : c <= 3088) - : (c <= 3112 || (c >= 3114 && c <= 3129))))))))) - : (c <= 3140 || (c < 3346 - ? (c < 3253 - ? (c < 3174 - ? (c < 3157 - ? (c < 3146 - ? (c >= 3142 && c <= 3144) - : c <= 3149) - : (c <= 3158 || (c < 3168 - ? (c >= 3160 && c <= 3162) - : c <= 3171))) - : (c <= 3183 || (c < 3214 - ? (c < 3205 - ? (c >= 3200 && c <= 3203) - : c <= 3212) - : (c <= 3216 || (c < 3242 - ? (c >= 3218 && c <= 3240) - : c <= 3251))))) - : (c <= 3257 || (c < 3296 - ? (c < 3274 - ? (c < 3270 - ? (c >= 3260 && c <= 3268) - : c <= 3272) - : (c <= 3277 || (c < 3294 - ? (c >= 3285 && c <= 3286) - : c <= 3294))) - : (c <= 3299 || (c < 3328 - ? (c < 3313 - ? (c >= 3302 && c <= 3311) - : c <= 3314) - : (c <= 3340 || (c >= 3342 && c <= 3344))))))) - : (c <= 3396 || (c < 3517 - ? (c < 3450 - ? (c < 3412 - ? (c < 3402 - ? (c >= 3398 && c <= 3400) - : c <= 3406) - : (c <= 3415 || (c < 3430 - ? (c >= 3423 && c <= 3427) - : c <= 3439))) - : (c <= 3455 || (c < 3482 - ? (c < 3461 - ? (c >= 3457 && c <= 3459) - : c <= 3478) - : (c <= 3505 || (c >= 3507 && c <= 3515))))) - : (c <= 3517 || (c < 3558 - ? (c < 3535 - ? (c < 3530 - ? (c >= 3520 && c <= 3526) - : c <= 3530) - : (c <= 3540 || (c < 3544 - ? c == 3542 - : c <= 3551))) - : (c <= 3567 || (c < 3648 - ? (c < 3585 - ? (c >= 3570 && c <= 3571) - : c <= 3642) - : (c <= 3662 || (c >= 3664 && c <= 3673))))))))))))) - : (c <= 3714 || (c < 7232 - ? (c < 4969 - ? (c < 4096 - ? (c < 3864 - ? (c < 3776 - ? (c < 3724 - ? (c < 3718 - ? c == 3716 - : c <= 3722) - : (c <= 3747 || (c < 3751 - ? c == 3749 - : c <= 3773))) - : (c <= 3780 || (c < 3792 - ? (c < 3784 - ? c == 3782 - : c <= 3789) - : (c <= 3801 || (c < 3840 - ? (c >= 3804 && c <= 3807) - : c <= 3840))))) - : (c <= 3865 || (c < 3913 - ? (c < 3895 - ? (c < 3893 - ? (c >= 3872 && c <= 3881) - : c <= 3893) - : (c <= 3895 || (c < 3902 - ? c == 3897 - : c <= 3911))) - : (c <= 3948 || (c < 3993 - ? (c < 3974 - ? (c >= 3953 && c <= 3972) - : c <= 3991) - : (c <= 4028 || c == 4038)))))) - : (c <= 4169 || (c < 4746 - ? (c < 4348 - ? (c < 4295 - ? (c < 4256 - ? (c >= 4176 && c <= 4253) - : c <= 4293) - : (c <= 4295 || (c < 4304 - ? c == 4301 - : c <= 4346))) - : (c <= 4680 || (c < 4696 - ? (c < 4688 - ? (c >= 4682 && c <= 4685) - : c <= 4694) - : (c <= 4696 || (c < 4704 - ? (c >= 4698 && c <= 4701) - : c <= 4744))))) - : (c <= 4749 || (c < 4808 - ? (c < 4792 - ? (c < 4786 - ? (c >= 4752 && c <= 4784) - : c <= 4789) - : (c <= 4798 || (c < 4802 - ? c == 4800 - : c <= 4805))) - : (c <= 4822 || (c < 4888 - ? (c < 4882 - ? (c >= 4824 && c <= 4880) - : c <= 4885) - : (c <= 4954 || (c >= 4957 && c <= 4959))))))))) - : (c <= 4977 || (c < 6272 - ? (c < 5952 - ? (c < 5761 - ? (c < 5112 - ? (c < 5024 - ? (c >= 4992 && c <= 5007) - : c <= 5109) - : (c <= 5117 || (c < 5743 - ? (c >= 5121 && c <= 5740) - : c <= 5759))) - : (c <= 5786 || (c < 5888 - ? (c < 5870 - ? (c >= 5792 && c <= 5866) - : c <= 5880) - : (c <= 5900 || (c < 5920 - ? (c >= 5902 && c <= 5908) - : c <= 5940))))) - : (c <= 5971 || (c < 6108 - ? (c < 6002 - ? (c < 5998 - ? (c >= 5984 && c <= 5996) - : c <= 6000) - : (c <= 6003 || (c < 6103 - ? (c >= 6016 && c <= 6099) - : c <= 6103))) - : (c <= 6109 || (c < 6160 - ? (c < 6155 - ? (c >= 6112 && c <= 6121) - : c <= 6157) - : (c <= 6169 || (c >= 6176 && c <= 6264))))))) - : (c <= 6314 || (c < 6752 - ? (c < 6512 - ? (c < 6432 - ? (c < 6400 - ? (c >= 6320 && c <= 6389) - : c <= 6430) - : (c <= 6443 || (c < 6470 - ? (c >= 6448 && c <= 6459) - : c <= 6509))) - : (c <= 6516 || (c < 6608 - ? (c < 6576 - ? (c >= 6528 && c <= 6571) - : c <= 6601) - : (c <= 6618 || (c < 6688 - ? (c >= 6656 && c <= 6683) - : c <= 6750))))) - : (c <= 6780 || (c < 6912 - ? (c < 6823 - ? (c < 6800 - ? (c >= 6783 && c <= 6793) - : c <= 6809) - : (c <= 6823 || (c < 6847 - ? (c >= 6832 && c <= 6845) - : c <= 6848))) - : (c <= 6987 || (c < 7040 - ? (c < 7019 - ? (c >= 6992 && c <= 7001) - : c <= 7027) - : (c <= 7155 || (c >= 7168 && c <= 7223))))))))))) - : (c <= 7241 || (c < 8526 - ? (c < 8150 - ? (c < 8016 - ? (c < 7380 - ? (c < 7312 - ? (c < 7296 - ? (c >= 7245 && c <= 7293) - : c <= 7304) - : (c <= 7354 || (c < 7376 - ? (c >= 7357 && c <= 7359) - : c <= 7378))) - : (c <= 7418 || (c < 7960 - ? (c < 7675 - ? (c >= 7424 && c <= 7673) - : c <= 7957) - : (c <= 7965 || (c < 8008 - ? (c >= 7968 && c <= 8005) - : c <= 8013))))) - : (c <= 8023 || (c < 8118 - ? (c < 8029 - ? (c < 8027 - ? c == 8025 - : c <= 8027) - : (c <= 8029 || (c < 8064 - ? (c >= 8031 && c <= 8061) - : c <= 8116))) - : (c <= 8124 || (c < 8134 - ? (c < 8130 - ? c == 8126 - : c <= 8132) - : (c <= 8140 || (c >= 8144 && c <= 8147))))))) - : (c <= 8155 || (c < 8450 - ? (c < 8305 - ? (c < 8182 - ? (c < 8178 - ? (c >= 8160 && c <= 8172) - : c <= 8180) - : (c <= 8188 || (c < 8276 - ? (c >= 8255 && c <= 8256) - : c <= 8276))) - : (c <= 8305 || (c < 8400 - ? (c < 8336 - ? c == 8319 - : c <= 8348) - : (c <= 8412 || (c < 8421 - ? c == 8417 - : c <= 8432))))) - : (c <= 8450 || (c < 8486 - ? (c < 8469 - ? (c < 8458 - ? c == 8455 - : c <= 8467) - : (c <= 8469 || (c < 8484 - ? (c >= 8472 && c <= 8477) - : c <= 8484))) - : (c <= 8486 || (c < 8508 - ? (c < 8490 - ? c == 8488 - : c <= 8505) - : (c <= 8511 || (c >= 8517 && c <= 8521))))))))) - : (c <= 8526 || (c < 12337 - ? (c < 11680 - ? (c < 11520 - ? (c < 11312 - ? (c < 11264 - ? (c >= 8544 && c <= 8584) - : c <= 11310) - : (c <= 11358 || (c < 11499 - ? (c >= 11360 && c <= 11492) - : c <= 11507))) - : (c <= 11557 || (c < 11568 - ? (c < 11565 - ? c == 11559 - : c <= 11565) - : (c <= 11623 || (c < 11647 - ? c == 11631 - : c <= 11670))))) - : (c <= 11686 || (c < 11728 - ? (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c < 11720 - ? (c >= 11712 && c <= 11718) - : c <= 11726))) - : (c <= 11734 || (c < 12293 - ? (c < 11744 - ? (c >= 11736 && c <= 11742) - : c <= 11775) - : (c <= 12295 || (c >= 12321 && c <= 12335))))))) - : (c <= 12341 || (c < 19968 - ? (c < 12549 - ? (c < 12441 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12447 || (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543))) - : (c <= 12591 || (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c >= 13312 && c <= 19903))))) - : (c <= 40956 || (c < 42612 - ? (c < 42240 - ? (c < 42192 - ? (c >= 40960 && c <= 42124) - : c <= 42237) - : (c <= 42508 || (c < 42560 - ? (c >= 42512 && c <= 42539) - : c <= 42607))) - : (c <= 42621 || (c < 42786 - ? (c < 42775 - ? (c >= 42623 && c <= 42737) - : c <= 42783) - : (c <= 42888 || (c >= 42891 && c <= 42943))))))))))))))) - : (c <= 42954 || (c < 71168 - ? (c < 67424 - ? (c < 64467 - ? (c < 43785 - ? (c < 43471 - ? (c < 43232 - ? (c < 43072 - ? (c < 43052 - ? (c >= 42997 && c <= 43047) - : c <= 43052) - : (c <= 43123 || (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225))) - : (c <= 43255 || (c < 43312 - ? (c < 43261 - ? c == 43259 - : c <= 43309) - : (c <= 43347 || (c < 43392 - ? (c >= 43360 && c <= 43388) - : c <= 43456))))) - : (c <= 43481 || (c < 43642 - ? (c < 43584 - ? (c < 43520 - ? (c >= 43488 && c <= 43518) - : c <= 43574) - : (c <= 43597 || (c < 43616 - ? (c >= 43600 && c <= 43609) - : c <= 43638))) - : (c <= 43714 || (c < 43762 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43759) - : (c <= 43766 || (c >= 43777 && c <= 43782))))))) - : (c <= 43790 || (c < 63744 - ? (c < 43888 - ? (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c < 43868 - ? (c >= 43824 && c <= 43866) - : c <= 43881))) - : (c <= 44010 || (c < 44032 - ? (c < 44016 - ? (c >= 44012 && c <= 44013) - : c <= 44025) - : (c <= 55203 || (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291))))) - : (c <= 64109 || (c < 64312 - ? (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || (c < 64298 - ? (c >= 64285 && c <= 64296) - : c <= 64310))) - : (c <= 64316 || (c < 64323 - ? (c < 64320 - ? c == 64318 - : c <= 64321) - : (c <= 64324 || (c >= 64326 && c <= 64433))))))))) - : (c <= 64829 || (c < 65599 - ? (c < 65343 - ? (c < 65075 - ? (c < 65008 - ? (c < 64914 - ? (c >= 64848 && c <= 64911) - : c <= 64967) - : (c <= 65019 || (c < 65056 - ? (c >= 65024 && c <= 65039) - : c <= 65071))) - : (c <= 65076 || (c < 65142 - ? (c < 65136 - ? (c >= 65101 && c <= 65103) - : c <= 65140) - : (c <= 65276 || (c < 65313 - ? (c >= 65296 && c <= 65305) - : c <= 65338))))) - : (c <= 65343 || (c < 65498 - ? (c < 65474 - ? (c < 65382 - ? (c >= 65345 && c <= 65370) - : c <= 65470) - : (c <= 65479 || (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495))) - : (c <= 65500 || (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c < 66176 - ? c == 66045 - : c <= 66204))) - : (c <= 66256 || (c < 66349 - ? (c < 66304 - ? c == 66272 - : c <= 66335) - : (c <= 66378 || (c < 66432 - ? (c >= 66384 && c <= 66426) - : c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c < 66736 - ? (c >= 66720 && c <= 66729) - : c <= 66771))) - : (c <= 66811 || (c < 67072 - ? (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 67382 || (c >= 67392 && c <= 67413))))))))))) - : (c <= 67431 || (c < 69840 - ? (c < 68224 - ? (c < 67872 - ? (c < 67647 - ? (c < 67594 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644))) - : (c <= 67669 || (c < 67808 - ? (c < 67712 - ? (c >= 67680 && c <= 67702) - : c <= 67742) - : (c <= 67826 || (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861))))) - : (c <= 67897 || (c < 68117 - ? (c < 68096 - ? (c < 68030 - ? (c >= 67968 && c <= 68023) - : c <= 68031) - : (c <= 68099 || (c < 68108 - ? (c >= 68101 && c <= 68102) - : c <= 68115))) - : (c <= 68119 || (c < 68159 - ? (c < 68152 - ? (c >= 68121 && c <= 68149) - : c <= 68154) - : (c <= 68159 || (c >= 68192 && c <= 68220))))))) - : (c <= 68252 || (c < 69248 - ? (c < 68480 - ? (c < 68352 - ? (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68326) - : (c <= 68405 || (c < 68448 - ? (c >= 68416 && c <= 68437) - : c <= 68466))) - : (c <= 68497 || (c < 68800 - ? (c < 68736 - ? (c >= 68608 && c <= 68680) - : c <= 68786) - : (c <= 68850 || (c < 68912 - ? (c >= 68864 && c <= 68903) - : c <= 68921))))) - : (c <= 69289 || (c < 69552 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69291 && c <= 69292) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69456))) - : (c <= 69572 || (c < 69734 - ? (c < 69632 - ? (c >= 69600 && c <= 69622) - : c <= 69702) - : (c <= 69743 || (c >= 69759 && c <= 69818))))))))) - : (c <= 69864 || (c < 70415 - ? (c < 70163 - ? (c < 70006 - ? (c < 69942 - ? (c < 69888 - ? (c >= 69872 && c <= 69881) - : c <= 69940) - : (c <= 69951 || (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003))) - : (c <= 70006 || (c < 70094 - ? (c < 70089 - ? (c >= 70016 && c <= 70084) - : c <= 70092) - : (c <= 70106 || (c < 70144 - ? c == 70108 - : c <= 70161))))) - : (c <= 70199 || (c < 70303 - ? (c < 70280 - ? (c < 70272 - ? c == 70206 - : c <= 70278) - : (c <= 70280 || (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301))) - : (c <= 70312 || (c < 70400 - ? (c < 70384 - ? (c >= 70320 && c <= 70378) - : c <= 70393) - : (c <= 70403 || (c >= 70405 && c <= 70412))))))) - : (c <= 70416 || (c < 70502 - ? (c < 70471 - ? (c < 70450 - ? (c < 70442 - ? (c >= 70419 && c <= 70440) - : c <= 70448) - : (c <= 70451 || (c < 70459 - ? (c >= 70453 && c <= 70457) - : c <= 70468))) - : (c <= 70472 || (c < 70487 - ? (c < 70480 - ? (c >= 70475 && c <= 70477) - : c <= 70480) - : (c <= 70487 || (c >= 70493 && c <= 70499))))) - : (c <= 70508 || (c < 70855 - ? (c < 70736 - ? (c < 70656 - ? (c >= 70512 && c <= 70516) - : c <= 70730) - : (c <= 70745 || (c < 70784 - ? (c >= 70750 && c <= 70753) - : c <= 70853))) - : (c <= 70855 || (c < 71096 - ? (c < 71040 - ? (c >= 70864 && c <= 70873) - : c <= 71093) - : (c <= 71104 || (c >= 71128 && c <= 71133))))))))))))) - : (c <= 71232 || (c < 119966 - ? (c < 73120 - ? (c < 72263 - ? (c < 71948 - ? (c < 71453 - ? (c < 71296 - ? (c < 71248 - ? c == 71236 - : c <= 71257) - : (c <= 71352 || (c < 71424 - ? (c >= 71360 && c <= 71369) - : c <= 71450))) - : (c <= 71467 || (c < 71840 - ? (c < 71680 - ? (c >= 71472 && c <= 71481) - : c <= 71738) - : (c <= 71913 || (c < 71945 - ? (c >= 71935 && c <= 71942) - : c <= 71945))))) - : (c <= 71955 || (c < 72096 - ? (c < 71991 - ? (c < 71960 - ? (c >= 71957 && c <= 71958) - : c <= 71989) - : (c <= 71992 || (c < 72016 - ? (c >= 71995 && c <= 72003) - : c <= 72025))) - : (c <= 72103 || (c < 72163 - ? (c < 72154 - ? (c >= 72106 && c <= 72151) - : c <= 72161) - : (c <= 72164 || (c >= 72192 && c <= 72254))))))) - : (c <= 72263 || (c < 72968 - ? (c < 72760 - ? (c < 72384 - ? (c < 72349 - ? (c >= 72272 && c <= 72345) - : c <= 72349) - : (c <= 72440 || (c < 72714 - ? (c >= 72704 && c <= 72712) - : c <= 72758))) - : (c <= 72768 || (c < 72850 - ? (c < 72818 - ? (c >= 72784 && c <= 72793) - : c <= 72847) - : (c <= 72871 || (c < 72960 - ? (c >= 72873 && c <= 72886) - : c <= 72966))))) - : (c <= 72969 || (c < 73056 - ? (c < 73020 - ? (c < 73018 - ? (c >= 72971 && c <= 73014) - : c <= 73018) - : (c <= 73021 || (c < 73040 - ? (c >= 73023 && c <= 73031) - : c <= 73049))) - : (c <= 73061 || (c < 73104 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73102) - : (c <= 73105 || (c >= 73107 && c <= 73112))))))))) - : (c <= 73129 || (c < 94179 - ? (c < 92912 - ? (c < 77824 - ? (c < 73728 - ? (c < 73648 - ? (c >= 73440 && c <= 73462) - : c <= 73648) - : (c <= 74649 || (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075))) - : (c <= 78894 || (c < 92736 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : c <= 92728) - : (c <= 92766 || (c < 92880 - ? (c >= 92768 && c <= 92777) - : c <= 92909))))) - : (c <= 92916 || (c < 93760 - ? (c < 93008 - ? (c < 92992 - ? (c >= 92928 && c <= 92982) - : c <= 92995) - : (c <= 93017 || (c < 93053 - ? (c >= 93027 && c <= 93047) - : c <= 93071))) - : (c <= 93823 || (c < 94095 - ? (c < 94031 - ? (c >= 93952 && c <= 94026) - : c <= 94087) - : (c <= 94111 || (c >= 94176 && c <= 94177))))))) - : (c <= 94180 || (c < 113792 - ? (c < 110928 - ? (c < 100352 - ? (c < 94208 - ? (c >= 94192 && c <= 94193) - : c <= 100343) - : (c <= 101589 || (c < 110592 - ? (c >= 101632 && c <= 101640) - : c <= 110878))) - : (c <= 110930 || (c < 113664 - ? (c < 110960 - ? (c >= 110948 && c <= 110951) - : c <= 111355) - : (c <= 113770 || (c >= 113776 && c <= 113788))))) - : (c <= 113800 || (c < 119173 - ? (c < 119141 - ? (c < 113821 - ? (c >= 113808 && c <= 113817) - : c <= 113822) - : (c <= 119145 || (c < 119163 - ? (c >= 119149 && c <= 119154) - : c <= 119170))) - : (c <= 119179 || (c < 119808 - ? (c < 119362 - ? (c >= 119210 && c <= 119213) - : c <= 119364) - : (c <= 119892 || (c >= 119894 && c <= 119964))))))))))) - : (c <= 119967 || (c < 125136 - ? (c < 120656 - ? (c < 120123 - ? (c < 119997 - ? (c < 119977 - ? (c < 119973 - ? c == 119970 - : c <= 119974) - : (c <= 119980 || (c < 119995 - ? (c >= 119982 && c <= 119993) - : c <= 119995))) - : (c <= 120003 || (c < 120077 - ? (c < 120071 - ? (c >= 120005 && c <= 120069) - : c <= 120074) - : (c <= 120084 || (c < 120094 - ? (c >= 120086 && c <= 120092) - : c <= 120121))))) - : (c <= 120126 || (c < 120514 - ? (c < 120138 - ? (c < 120134 - ? (c >= 120128 && c <= 120132) - : c <= 120134) - : (c <= 120144 || (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512))) - : (c <= 120538 || (c < 120598 - ? (c < 120572 - ? (c >= 120540 && c <= 120570) - : c <= 120596) - : (c <= 120628 || (c >= 120630 && c <= 120654))))))) - : (c <= 120686 || (c < 122880 - ? (c < 121344 - ? (c < 120746 - ? (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744) - : (c <= 120770 || (c < 120782 - ? (c >= 120772 && c <= 120779) - : c <= 120831))) - : (c <= 121398 || (c < 121476 - ? (c < 121461 - ? (c >= 121403 && c <= 121452) - : c <= 121461) - : (c <= 121476 || (c < 121505 - ? (c >= 121499 && c <= 121503) - : c <= 121519))))) - : (c <= 122886 || (c < 123184 - ? (c < 122915 - ? (c < 122907 - ? (c >= 122888 && c <= 122904) - : c <= 122913) - : (c <= 122916 || (c < 123136 - ? (c >= 122918 && c <= 122922) - : c <= 123180))) - : (c <= 123197 || (c < 123584 - ? (c < 123214 - ? (c >= 123200 && c <= 123209) - : c <= 123214) - : (c <= 123641 || (c >= 124928 && c <= 125124))))))))) - : (c <= 125142 || (c < 126559 - ? (c < 126530 - ? (c < 126500 - ? (c < 126464 - ? (c < 125264 - ? (c >= 125184 && c <= 125259) - : c <= 125273) - : (c <= 126467 || (c < 126497 - ? (c >= 126469 && c <= 126495) - : c <= 126498))) - : (c <= 126500 || (c < 126516 - ? (c < 126505 - ? c == 126503 - : c <= 126514) - : (c <= 126519 || (c < 126523 - ? c == 126521 - : c <= 126523))))) - : (c <= 126530 || (c < 126548 - ? (c < 126539 - ? (c < 126537 - ? c == 126535 - : c <= 126537) - : (c <= 126539 || (c < 126545 - ? (c >= 126541 && c <= 126543) - : c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126629 - ? (c < 126585 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c < 126580 - ? (c >= 126572 && c <= 126578) - : c <= 126583))) - : (c <= 126588 || (c < 126603 - ? (c < 126592 - ? c == 126590 - : c <= 126601) - : (c <= 126619 || (c >= 126625 && c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 131072 - ? (c < 130032 - ? (c >= 126635 && c <= 126651) - : c <= 130041) - : (c <= 173789 || (c < 177984 - ? (c >= 173824 && c <= 177972) - : c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); -} - -static inline bool sym_unused_identifier_character_set_2(int32_t c) { - return (c < 42946 - ? (c < 3716 - ? (c < 2730 - ? (c < 2042 - ? (c < 1015 - ? (c < 736 - ? (c < 183 - ? (c < 'a' - ? (c < 'A' - ? (c >= '0' && c <= '9') - : c <= 'Z') - : (c <= 'z' || (c < 181 - ? c == 170 - : c <= 181))) - : (c <= 183 || (c < 216 - ? (c < 192 - ? c == 186 - : c <= 214) - : (c <= 246 || (c < 710 - ? (c >= 248 && c <= 705) - : c <= 721))))) - : (c <= 740 || (c < 895 - ? (c < 768 - ? (c < 750 - ? c == 748 - : c <= 750) - : (c <= 884 || (c < 890 - ? (c >= 886 && c <= 887) - : c <= 893))) - : (c <= 895 || (c < 910 - ? (c < 908 - ? (c >= 902 && c <= 906) - : c <= 908) - : (c <= 929 || (c >= 931 && c <= 1013))))))) - : (c <= 1153 || (c < 1519 - ? (c < 1425 - ? (c < 1329 - ? (c < 1162 - ? (c >= 1155 && c <= 1159) - : c <= 1327) - : (c <= 1366 || (c < 1376 - ? c == 1369 - : c <= 1416))) - : (c <= 1469 || (c < 1476 - ? (c < 1473 - ? c == 1471 - : c <= 1474) - : (c <= 1477 || (c < 1488 - ? c == 1479 - : c <= 1514))))) - : (c <= 1522 || (c < 1770 - ? (c < 1646 - ? (c < 1568 - ? (c >= 1552 && c <= 1562) - : c <= 1641) - : (c <= 1747 || (c < 1759 - ? (c >= 1749 && c <= 1756) - : c <= 1768))) - : (c <= 1788 || (c < 1869 - ? (c < 1808 - ? c == 1791 - : c <= 1866) - : (c <= 1969 || (c >= 1984 && c <= 2037))))))))) - : (c <= 2042 || (c < 2534 - ? (c < 2447 - ? (c < 2230 - ? (c < 2112 - ? (c < 2048 - ? c == 2045 - : c <= 2093) - : (c <= 2139 || (c < 2208 - ? (c >= 2144 && c <= 2154) - : c <= 2228))) - : (c <= 2247 || (c < 2406 - ? (c < 2275 - ? (c >= 2259 && c <= 2273) - : c <= 2403) - : (c <= 2415 || (c < 2437 - ? (c >= 2417 && c <= 2435) - : c <= 2444))))) - : (c <= 2448 || (c < 2503 - ? (c < 2482 - ? (c < 2474 - ? (c >= 2451 && c <= 2472) - : c <= 2480) - : (c <= 2482 || (c < 2492 - ? (c >= 2486 && c <= 2489) - : c <= 2500))) - : (c <= 2504 || (c < 2524 - ? (c < 2519 - ? (c >= 2507 && c <= 2510) - : c <= 2519) - : (c <= 2525 || (c >= 2527 && c <= 2531))))))) - : (c <= 2545 || (c < 2622 - ? (c < 2579 - ? (c < 2561 - ? (c < 2558 - ? c == 2556 - : c <= 2558) - : (c <= 2563 || (c < 2575 - ? (c >= 2565 && c <= 2570) - : c <= 2576))) - : (c <= 2600 || (c < 2613 - ? (c < 2610 - ? (c >= 2602 && c <= 2608) - : c <= 2611) - : (c <= 2614 || (c < 2620 - ? (c >= 2616 && c <= 2617) - : c <= 2620))))) - : (c <= 2626 || (c < 2662 - ? (c < 2641 - ? (c < 2635 - ? (c >= 2631 && c <= 2632) - : c <= 2637) - : (c <= 2641 || (c < 2654 - ? (c >= 2649 && c <= 2652) - : c <= 2654))) - : (c <= 2677 || (c < 2703 - ? (c < 2693 - ? (c >= 2689 && c <= 2691) - : c <= 2701) - : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) - : (c <= 2736 || (c < 3142 - ? (c < 2918 - ? (c < 2831 - ? (c < 2768 - ? (c < 2748 - ? (c < 2741 - ? (c >= 2738 && c <= 2739) - : c <= 2745) - : (c <= 2757 || (c < 2763 - ? (c >= 2759 && c <= 2761) - : c <= 2765))) - : (c <= 2768 || (c < 2809 - ? (c < 2790 - ? (c >= 2784 && c <= 2787) - : c <= 2799) - : (c <= 2815 || (c < 2821 - ? (c >= 2817 && c <= 2819) - : c <= 2828))))) - : (c <= 2832 || (c < 2887 - ? (c < 2866 - ? (c < 2858 - ? (c >= 2835 && c <= 2856) - : c <= 2864) - : (c <= 2867 || (c < 2876 - ? (c >= 2869 && c <= 2873) - : c <= 2884))) - : (c <= 2888 || (c < 2908 - ? (c < 2901 - ? (c >= 2891 && c <= 2893) - : c <= 2903) - : (c <= 2909 || (c >= 2911 && c <= 2915))))))) - : (c <= 2927 || (c < 3006 - ? (c < 2969 - ? (c < 2949 - ? (c < 2946 - ? c == 2929 - : c <= 2947) - : (c <= 2954 || (c < 2962 - ? (c >= 2958 && c <= 2960) - : c <= 2965))) - : (c <= 2970 || (c < 2979 - ? (c < 2974 - ? c == 2972 - : c <= 2975) - : (c <= 2980 || (c < 2990 - ? (c >= 2984 && c <= 2986) - : c <= 3001))))) - : (c <= 3010 || (c < 3072 - ? (c < 3024 - ? (c < 3018 - ? (c >= 3014 && c <= 3016) - : c <= 3021) - : (c <= 3024 || (c < 3046 - ? c == 3031 - : c <= 3055))) - : (c <= 3084 || (c < 3114 - ? (c < 3090 - ? (c >= 3086 && c <= 3088) - : c <= 3112) - : (c <= 3129 || (c >= 3133 && c <= 3140))))))))) - : (c <= 3144 || (c < 3398 - ? (c < 3260 - ? (c < 3200 - ? (c < 3160 - ? (c < 3157 - ? (c >= 3146 && c <= 3149) - : c <= 3158) - : (c <= 3162 || (c < 3174 - ? (c >= 3168 && c <= 3171) - : c <= 3183))) - : (c <= 3203 || (c < 3218 - ? (c < 3214 - ? (c >= 3205 && c <= 3212) - : c <= 3216) - : (c <= 3240 || (c < 3253 - ? (c >= 3242 && c <= 3251) - : c <= 3257))))) - : (c <= 3268 || (c < 3302 - ? (c < 3285 - ? (c < 3274 - ? (c >= 3270 && c <= 3272) - : c <= 3277) - : (c <= 3286 || (c < 3296 - ? c == 3294 - : c <= 3299))) - : (c <= 3311 || (c < 3342 - ? (c < 3328 - ? (c >= 3313 && c <= 3314) - : c <= 3340) - : (c <= 3344 || (c >= 3346 && c <= 3396))))))) - : (c <= 3400 || (c < 3520 - ? (c < 3457 - ? (c < 3423 - ? (c < 3412 - ? (c >= 3402 && c <= 3406) - : c <= 3415) - : (c <= 3427 || (c < 3450 - ? (c >= 3430 && c <= 3439) - : c <= 3455))) - : (c <= 3459 || (c < 3507 - ? (c < 3482 - ? (c >= 3461 && c <= 3478) - : c <= 3505) - : (c <= 3515 || c == 3517)))) - : (c <= 3526 || (c < 3570 - ? (c < 3542 - ? (c < 3535 - ? c == 3530 - : c <= 3540) - : (c <= 3542 || (c < 3558 - ? (c >= 3544 && c <= 3551) - : c <= 3567))) - : (c <= 3571 || (c < 3664 - ? (c < 3648 - ? (c >= 3585 && c <= 3642) - : c <= 3662) - : (c <= 3673 || (c >= 3713 && c <= 3714))))))))))))) - : (c <= 3716 || (c < 7232 - ? (c < 4992 - ? (c < 4176 - ? (c < 3872 - ? (c < 3782 - ? (c < 3749 - ? (c < 3724 - ? (c >= 3718 && c <= 3722) - : c <= 3747) - : (c <= 3749 || (c < 3776 - ? (c >= 3751 && c <= 3773) - : c <= 3780))) - : (c <= 3782 || (c < 3804 - ? (c < 3792 - ? (c >= 3784 && c <= 3789) - : c <= 3801) - : (c <= 3807 || (c < 3864 - ? c == 3840 - : c <= 3865))))) - : (c <= 3881 || (c < 3953 - ? (c < 3897 - ? (c < 3895 - ? c == 3893 - : c <= 3895) - : (c <= 3897 || (c < 3913 - ? (c >= 3902 && c <= 3911) - : c <= 3948))) - : (c <= 3972 || (c < 4038 - ? (c < 3993 - ? (c >= 3974 && c <= 3991) - : c <= 4028) - : (c <= 4038 || (c >= 4096 && c <= 4169))))))) - : (c <= 4253 || (c < 4752 - ? (c < 4682 - ? (c < 4301 - ? (c < 4295 - ? (c >= 4256 && c <= 4293) - : c <= 4295) - : (c <= 4301 || (c < 4348 - ? (c >= 4304 && c <= 4346) - : c <= 4680))) - : (c <= 4685 || (c < 4698 - ? (c < 4696 - ? (c >= 4688 && c <= 4694) - : c <= 4696) - : (c <= 4701 || (c < 4746 - ? (c >= 4704 && c <= 4744) - : c <= 4749))))) - : (c <= 4784 || (c < 4824 - ? (c < 4800 - ? (c < 4792 - ? (c >= 4786 && c <= 4789) - : c <= 4798) - : (c <= 4800 || (c < 4808 - ? (c >= 4802 && c <= 4805) - : c <= 4822))) - : (c <= 4880 || (c < 4957 - ? (c < 4888 - ? (c >= 4882 && c <= 4885) - : c <= 4954) - : (c <= 4959 || (c >= 4969 && c <= 4977))))))))) - : (c <= 5007 || (c < 6320 - ? (c < 5984 - ? (c < 5792 - ? (c < 5121 - ? (c < 5112 - ? (c >= 5024 && c <= 5109) - : c <= 5117) - : (c <= 5740 || (c < 5761 - ? (c >= 5743 && c <= 5759) - : c <= 5786))) - : (c <= 5866 || (c < 5902 - ? (c < 5888 - ? (c >= 5870 && c <= 5880) - : c <= 5900) - : (c <= 5908 || (c < 5952 - ? (c >= 5920 && c <= 5940) - : c <= 5971))))) - : (c <= 5996 || (c < 6112 - ? (c < 6016 - ? (c < 6002 - ? (c >= 5998 && c <= 6000) - : c <= 6003) - : (c <= 6099 || (c < 6108 - ? c == 6103 - : c <= 6109))) - : (c <= 6121 || (c < 6176 - ? (c < 6160 - ? (c >= 6155 && c <= 6157) - : c <= 6169) - : (c <= 6264 || (c >= 6272 && c <= 6314))))))) - : (c <= 6389 || (c < 6752 - ? (c < 6528 - ? (c < 6448 - ? (c < 6432 - ? (c >= 6400 && c <= 6430) - : c <= 6443) - : (c <= 6459 || (c < 6512 - ? (c >= 6470 && c <= 6509) - : c <= 6516))) - : (c <= 6571 || (c < 6656 - ? (c < 6608 - ? (c >= 6576 && c <= 6601) - : c <= 6618) - : (c <= 6683 || (c >= 6688 && c <= 6750))))) - : (c <= 6780 || (c < 6912 - ? (c < 6823 - ? (c < 6800 - ? (c >= 6783 && c <= 6793) - : c <= 6809) - : (c <= 6823 || (c < 6847 - ? (c >= 6832 && c <= 6845) - : c <= 6848))) - : (c <= 6987 || (c < 7040 - ? (c < 7019 - ? (c >= 6992 && c <= 7001) - : c <= 7027) - : (c <= 7155 || (c >= 7168 && c <= 7223))))))))))) - : (c <= 7241 || (c < 8526 - ? (c < 8150 - ? (c < 8016 - ? (c < 7380 - ? (c < 7312 - ? (c < 7296 - ? (c >= 7245 && c <= 7293) - : c <= 7304) - : (c <= 7354 || (c < 7376 - ? (c >= 7357 && c <= 7359) - : c <= 7378))) - : (c <= 7418 || (c < 7960 - ? (c < 7675 - ? (c >= 7424 && c <= 7673) - : c <= 7957) - : (c <= 7965 || (c < 8008 - ? (c >= 7968 && c <= 8005) - : c <= 8013))))) - : (c <= 8023 || (c < 8118 - ? (c < 8029 - ? (c < 8027 - ? c == 8025 - : c <= 8027) - : (c <= 8029 || (c < 8064 - ? (c >= 8031 && c <= 8061) - : c <= 8116))) - : (c <= 8124 || (c < 8134 - ? (c < 8130 - ? c == 8126 - : c <= 8132) - : (c <= 8140 || (c >= 8144 && c <= 8147))))))) - : (c <= 8155 || (c < 8450 - ? (c < 8305 - ? (c < 8182 - ? (c < 8178 - ? (c >= 8160 && c <= 8172) - : c <= 8180) - : (c <= 8188 || (c < 8276 - ? (c >= 8255 && c <= 8256) - : c <= 8276))) - : (c <= 8305 || (c < 8400 - ? (c < 8336 - ? c == 8319 - : c <= 8348) - : (c <= 8412 || (c < 8421 - ? c == 8417 - : c <= 8432))))) - : (c <= 8450 || (c < 8486 - ? (c < 8469 - ? (c < 8458 - ? c == 8455 - : c <= 8467) - : (c <= 8469 || (c < 8484 - ? (c >= 8472 && c <= 8477) - : c <= 8484))) - : (c <= 8486 || (c < 8508 - ? (c < 8490 - ? c == 8488 - : c <= 8505) - : (c <= 8511 || (c >= 8517 && c <= 8521))))))))) - : (c <= 8526 || (c < 12337 - ? (c < 11680 - ? (c < 11520 - ? (c < 11312 - ? (c < 11264 - ? (c >= 8544 && c <= 8584) - : c <= 11310) - : (c <= 11358 || (c < 11499 - ? (c >= 11360 && c <= 11492) - : c <= 11507))) - : (c <= 11557 || (c < 11568 - ? (c < 11565 - ? c == 11559 - : c <= 11565) - : (c <= 11623 || (c < 11647 - ? c == 11631 - : c <= 11670))))) - : (c <= 11686 || (c < 11728 - ? (c < 11704 - ? (c < 11696 - ? (c >= 11688 && c <= 11694) - : c <= 11702) - : (c <= 11710 || (c < 11720 - ? (c >= 11712 && c <= 11718) - : c <= 11726))) - : (c <= 11734 || (c < 12293 - ? (c < 11744 - ? (c >= 11736 && c <= 11742) - : c <= 11775) - : (c <= 12295 || (c >= 12321 && c <= 12335))))))) - : (c <= 12341 || (c < 19968 - ? (c < 12549 - ? (c < 12441 - ? (c < 12353 - ? (c >= 12344 && c <= 12348) - : c <= 12438) - : (c <= 12447 || (c < 12540 - ? (c >= 12449 && c <= 12538) - : c <= 12543))) - : (c <= 12591 || (c < 12784 - ? (c < 12704 - ? (c >= 12593 && c <= 12686) - : c <= 12735) - : (c <= 12799 || (c >= 13312 && c <= 19903))))) - : (c <= 40956 || (c < 42612 - ? (c < 42240 - ? (c < 42192 - ? (c >= 40960 && c <= 42124) - : c <= 42237) - : (c <= 42508 || (c < 42560 - ? (c >= 42512 && c <= 42539) - : c <= 42607))) - : (c <= 42621 || (c < 42786 - ? (c < 42775 - ? (c >= 42623 && c <= 42737) - : c <= 42783) - : (c <= 42888 || (c >= 42891 && c <= 42943))))))))))))))) - : (c <= 42954 || (c < 71168 - ? (c < 67424 - ? (c < 64467 - ? (c < 43785 - ? (c < 43471 - ? (c < 43232 - ? (c < 43072 - ? (c < 43052 - ? (c >= 42997 && c <= 43047) - : c <= 43052) - : (c <= 43123 || (c < 43216 - ? (c >= 43136 && c <= 43205) - : c <= 43225))) - : (c <= 43255 || (c < 43312 - ? (c < 43261 - ? c == 43259 - : c <= 43309) - : (c <= 43347 || (c < 43392 - ? (c >= 43360 && c <= 43388) - : c <= 43456))))) - : (c <= 43481 || (c < 43642 - ? (c < 43584 - ? (c < 43520 - ? (c >= 43488 && c <= 43518) - : c <= 43574) - : (c <= 43597 || (c < 43616 - ? (c >= 43600 && c <= 43609) - : c <= 43638))) - : (c <= 43714 || (c < 43762 - ? (c < 43744 - ? (c >= 43739 && c <= 43741) - : c <= 43759) - : (c <= 43766 || (c >= 43777 && c <= 43782))))))) - : (c <= 43790 || (c < 63744 - ? (c < 43888 - ? (c < 43816 - ? (c < 43808 - ? (c >= 43793 && c <= 43798) - : c <= 43814) - : (c <= 43822 || (c < 43868 - ? (c >= 43824 && c <= 43866) - : c <= 43881))) - : (c <= 44010 || (c < 44032 - ? (c < 44016 - ? (c >= 44012 && c <= 44013) - : c <= 44025) - : (c <= 55203 || (c < 55243 - ? (c >= 55216 && c <= 55238) - : c <= 55291))))) - : (c <= 64109 || (c < 64312 - ? (c < 64275 - ? (c < 64256 - ? (c >= 64112 && c <= 64217) - : c <= 64262) - : (c <= 64279 || (c < 64298 - ? (c >= 64285 && c <= 64296) - : c <= 64310))) - : (c <= 64316 || (c < 64323 - ? (c < 64320 - ? c == 64318 - : c <= 64321) - : (c <= 64324 || (c >= 64326 && c <= 64433))))))))) - : (c <= 64829 || (c < 65599 - ? (c < 65343 - ? (c < 65075 - ? (c < 65008 - ? (c < 64914 - ? (c >= 64848 && c <= 64911) - : c <= 64967) - : (c <= 65019 || (c < 65056 - ? (c >= 65024 && c <= 65039) - : c <= 65071))) - : (c <= 65076 || (c < 65142 - ? (c < 65136 - ? (c >= 65101 && c <= 65103) - : c <= 65140) - : (c <= 65276 || (c < 65313 - ? (c >= 65296 && c <= 65305) - : c <= 65338))))) - : (c <= 65343 || (c < 65498 - ? (c < 65474 - ? (c < 65382 - ? (c >= 65345 && c <= 65370) - : c <= 65470) - : (c <= 65479 || (c < 65490 - ? (c >= 65482 && c <= 65487) - : c <= 65495))) - : (c <= 65500 || (c < 65576 - ? (c < 65549 - ? (c >= 65536 && c <= 65547) - : c <= 65574) - : (c <= 65594 || (c >= 65596 && c <= 65597))))))) - : (c <= 65613 || (c < 66464 - ? (c < 66208 - ? (c < 65856 - ? (c < 65664 - ? (c >= 65616 && c <= 65629) - : c <= 65786) - : (c <= 65908 || (c < 66176 - ? c == 66045 - : c <= 66204))) - : (c <= 66256 || (c < 66349 - ? (c < 66304 - ? c == 66272 - : c <= 66335) - : (c <= 66378 || (c < 66432 - ? (c >= 66384 && c <= 66426) - : c <= 66461))))) - : (c <= 66499 || (c < 66776 - ? (c < 66560 - ? (c < 66513 - ? (c >= 66504 && c <= 66511) - : c <= 66517) - : (c <= 66717 || (c < 66736 - ? (c >= 66720 && c <= 66729) - : c <= 66771))) - : (c <= 66811 || (c < 67072 - ? (c < 66864 - ? (c >= 66816 && c <= 66855) - : c <= 66915) - : (c <= 67382 || (c >= 67392 && c <= 67413))))))))))) - : (c <= 67431 || (c < 69840 - ? (c < 68224 - ? (c < 67872 - ? (c < 67647 - ? (c < 67594 - ? (c < 67592 - ? (c >= 67584 && c <= 67589) - : c <= 67592) - : (c <= 67637 || (c < 67644 - ? (c >= 67639 && c <= 67640) - : c <= 67644))) - : (c <= 67669 || (c < 67808 - ? (c < 67712 - ? (c >= 67680 && c <= 67702) - : c <= 67742) - : (c <= 67826 || (c < 67840 - ? (c >= 67828 && c <= 67829) - : c <= 67861))))) - : (c <= 67897 || (c < 68117 - ? (c < 68096 - ? (c < 68030 - ? (c >= 67968 && c <= 68023) - : c <= 68031) - : (c <= 68099 || (c < 68108 - ? (c >= 68101 && c <= 68102) - : c <= 68115))) - : (c <= 68119 || (c < 68159 - ? (c < 68152 - ? (c >= 68121 && c <= 68149) - : c <= 68154) - : (c <= 68159 || (c >= 68192 && c <= 68220))))))) - : (c <= 68252 || (c < 69248 - ? (c < 68480 - ? (c < 68352 - ? (c < 68297 - ? (c >= 68288 && c <= 68295) - : c <= 68326) - : (c <= 68405 || (c < 68448 - ? (c >= 68416 && c <= 68437) - : c <= 68466))) - : (c <= 68497 || (c < 68800 - ? (c < 68736 - ? (c >= 68608 && c <= 68680) - : c <= 68786) - : (c <= 68850 || (c < 68912 - ? (c >= 68864 && c <= 68903) - : c <= 68921))))) - : (c <= 69289 || (c < 69552 - ? (c < 69376 - ? (c < 69296 - ? (c >= 69291 && c <= 69292) - : c <= 69297) - : (c <= 69404 || (c < 69424 - ? c == 69415 - : c <= 69456))) - : (c <= 69572 || (c < 69734 - ? (c < 69632 - ? (c >= 69600 && c <= 69622) - : c <= 69702) - : (c <= 69743 || (c >= 69759 && c <= 69818))))))))) - : (c <= 69864 || (c < 70415 - ? (c < 70163 - ? (c < 70006 - ? (c < 69942 - ? (c < 69888 - ? (c >= 69872 && c <= 69881) - : c <= 69940) - : (c <= 69951 || (c < 69968 - ? (c >= 69956 && c <= 69959) - : c <= 70003))) - : (c <= 70006 || (c < 70094 - ? (c < 70089 - ? (c >= 70016 && c <= 70084) - : c <= 70092) - : (c <= 70106 || (c < 70144 - ? c == 70108 - : c <= 70161))))) - : (c <= 70199 || (c < 70303 - ? (c < 70280 - ? (c < 70272 - ? c == 70206 - : c <= 70278) - : (c <= 70280 || (c < 70287 - ? (c >= 70282 && c <= 70285) - : c <= 70301))) - : (c <= 70312 || (c < 70400 - ? (c < 70384 - ? (c >= 70320 && c <= 70378) - : c <= 70393) - : (c <= 70403 || (c >= 70405 && c <= 70412))))))) - : (c <= 70416 || (c < 70502 - ? (c < 70471 - ? (c < 70450 - ? (c < 70442 - ? (c >= 70419 && c <= 70440) - : c <= 70448) - : (c <= 70451 || (c < 70459 - ? (c >= 70453 && c <= 70457) - : c <= 70468))) - : (c <= 70472 || (c < 70487 - ? (c < 70480 - ? (c >= 70475 && c <= 70477) - : c <= 70480) - : (c <= 70487 || (c >= 70493 && c <= 70499))))) - : (c <= 70508 || (c < 70855 - ? (c < 70736 - ? (c < 70656 - ? (c >= 70512 && c <= 70516) - : c <= 70730) - : (c <= 70745 || (c < 70784 - ? (c >= 70750 && c <= 70753) - : c <= 70853))) - : (c <= 70855 || (c < 71096 - ? (c < 71040 - ? (c >= 70864 && c <= 70873) - : c <= 71093) - : (c <= 71104 || (c >= 71128 && c <= 71133))))))))))))) - : (c <= 71232 || (c < 119966 - ? (c < 73120 - ? (c < 72263 - ? (c < 71948 - ? (c < 71453 - ? (c < 71296 - ? (c < 71248 - ? c == 71236 - : c <= 71257) - : (c <= 71352 || (c < 71424 - ? (c >= 71360 && c <= 71369) - : c <= 71450))) - : (c <= 71467 || (c < 71840 - ? (c < 71680 - ? (c >= 71472 && c <= 71481) - : c <= 71738) - : (c <= 71913 || (c < 71945 - ? (c >= 71935 && c <= 71942) - : c <= 71945))))) - : (c <= 71955 || (c < 72096 - ? (c < 71991 - ? (c < 71960 - ? (c >= 71957 && c <= 71958) - : c <= 71989) - : (c <= 71992 || (c < 72016 - ? (c >= 71995 && c <= 72003) - : c <= 72025))) - : (c <= 72103 || (c < 72163 - ? (c < 72154 - ? (c >= 72106 && c <= 72151) - : c <= 72161) - : (c <= 72164 || (c >= 72192 && c <= 72254))))))) - : (c <= 72263 || (c < 72968 - ? (c < 72760 - ? (c < 72384 - ? (c < 72349 - ? (c >= 72272 && c <= 72345) - : c <= 72349) - : (c <= 72440 || (c < 72714 - ? (c >= 72704 && c <= 72712) - : c <= 72758))) - : (c <= 72768 || (c < 72850 - ? (c < 72818 - ? (c >= 72784 && c <= 72793) - : c <= 72847) - : (c <= 72871 || (c < 72960 - ? (c >= 72873 && c <= 72886) - : c <= 72966))))) - : (c <= 72969 || (c < 73056 - ? (c < 73020 - ? (c < 73018 - ? (c >= 72971 && c <= 73014) - : c <= 73018) - : (c <= 73021 || (c < 73040 - ? (c >= 73023 && c <= 73031) - : c <= 73049))) - : (c <= 73061 || (c < 73104 - ? (c < 73066 - ? (c >= 73063 && c <= 73064) - : c <= 73102) - : (c <= 73105 || (c >= 73107 && c <= 73112))))))))) - : (c <= 73129 || (c < 94179 - ? (c < 92912 - ? (c < 77824 - ? (c < 73728 - ? (c < 73648 - ? (c >= 73440 && c <= 73462) - : c <= 73648) - : (c <= 74649 || (c < 74880 - ? (c >= 74752 && c <= 74862) - : c <= 75075))) - : (c <= 78894 || (c < 92736 - ? (c < 92160 - ? (c >= 82944 && c <= 83526) - : c <= 92728) - : (c <= 92766 || (c < 92880 - ? (c >= 92768 && c <= 92777) - : c <= 92909))))) - : (c <= 92916 || (c < 93760 - ? (c < 93008 - ? (c < 92992 - ? (c >= 92928 && c <= 92982) - : c <= 92995) - : (c <= 93017 || (c < 93053 - ? (c >= 93027 && c <= 93047) - : c <= 93071))) - : (c <= 93823 || (c < 94095 - ? (c < 94031 - ? (c >= 93952 && c <= 94026) - : c <= 94087) - : (c <= 94111 || (c >= 94176 && c <= 94177))))))) - : (c <= 94180 || (c < 113792 - ? (c < 110928 - ? (c < 100352 - ? (c < 94208 - ? (c >= 94192 && c <= 94193) - : c <= 100343) - : (c <= 101589 || (c < 110592 - ? (c >= 101632 && c <= 101640) - : c <= 110878))) - : (c <= 110930 || (c < 113664 - ? (c < 110960 - ? (c >= 110948 && c <= 110951) - : c <= 111355) - : (c <= 113770 || (c >= 113776 && c <= 113788))))) - : (c <= 113800 || (c < 119173 - ? (c < 119141 - ? (c < 113821 - ? (c >= 113808 && c <= 113817) - : c <= 113822) - : (c <= 119145 || (c < 119163 - ? (c >= 119149 && c <= 119154) - : c <= 119170))) - : (c <= 119179 || (c < 119808 - ? (c < 119362 - ? (c >= 119210 && c <= 119213) - : c <= 119364) - : (c <= 119892 || (c >= 119894 && c <= 119964))))))))))) - : (c <= 119967 || (c < 125136 - ? (c < 120656 - ? (c < 120123 - ? (c < 119997 - ? (c < 119977 - ? (c < 119973 - ? c == 119970 - : c <= 119974) - : (c <= 119980 || (c < 119995 - ? (c >= 119982 && c <= 119993) - : c <= 119995))) - : (c <= 120003 || (c < 120077 - ? (c < 120071 - ? (c >= 120005 && c <= 120069) - : c <= 120074) - : (c <= 120084 || (c < 120094 - ? (c >= 120086 && c <= 120092) - : c <= 120121))))) - : (c <= 120126 || (c < 120514 - ? (c < 120138 - ? (c < 120134 - ? (c >= 120128 && c <= 120132) - : c <= 120134) - : (c <= 120144 || (c < 120488 - ? (c >= 120146 && c <= 120485) - : c <= 120512))) - : (c <= 120538 || (c < 120598 - ? (c < 120572 - ? (c >= 120540 && c <= 120570) - : c <= 120596) - : (c <= 120628 || (c >= 120630 && c <= 120654))))))) - : (c <= 120686 || (c < 122880 - ? (c < 121344 - ? (c < 120746 - ? (c < 120714 - ? (c >= 120688 && c <= 120712) - : c <= 120744) - : (c <= 120770 || (c < 120782 - ? (c >= 120772 && c <= 120779) - : c <= 120831))) - : (c <= 121398 || (c < 121476 - ? (c < 121461 - ? (c >= 121403 && c <= 121452) - : c <= 121461) - : (c <= 121476 || (c < 121505 - ? (c >= 121499 && c <= 121503) - : c <= 121519))))) - : (c <= 122886 || (c < 123184 - ? (c < 122915 - ? (c < 122907 - ? (c >= 122888 && c <= 122904) - : c <= 122913) - : (c <= 122916 || (c < 123136 - ? (c >= 122918 && c <= 122922) - : c <= 123180))) - : (c <= 123197 || (c < 123584 - ? (c < 123214 - ? (c >= 123200 && c <= 123209) - : c <= 123214) - : (c <= 123641 || (c >= 124928 && c <= 125124))))))))) - : (c <= 125142 || (c < 126559 - ? (c < 126530 - ? (c < 126500 - ? (c < 126464 - ? (c < 125264 - ? (c >= 125184 && c <= 125259) - : c <= 125273) - : (c <= 126467 || (c < 126497 - ? (c >= 126469 && c <= 126495) - : c <= 126498))) - : (c <= 126500 || (c < 126516 - ? (c < 126505 - ? c == 126503 - : c <= 126514) - : (c <= 126519 || (c < 126523 - ? c == 126521 - : c <= 126523))))) - : (c <= 126530 || (c < 126548 - ? (c < 126539 - ? (c < 126537 - ? c == 126535 - : c <= 126537) - : (c <= 126539 || (c < 126545 - ? (c >= 126541 && c <= 126543) - : c <= 126546))) - : (c <= 126548 || (c < 126555 - ? (c < 126553 - ? c == 126551 - : c <= 126553) - : (c <= 126555 || c == 126557)))))) - : (c <= 126559 || (c < 126629 - ? (c < 126585 - ? (c < 126567 - ? (c < 126564 - ? (c >= 126561 && c <= 126562) - : c <= 126564) - : (c <= 126570 || (c < 126580 - ? (c >= 126572 && c <= 126578) - : c <= 126583))) - : (c <= 126588 || (c < 126603 - ? (c < 126592 - ? c == 126590 - : c <= 126601) - : (c <= 126619 || (c >= 126625 && c <= 126627))))) - : (c <= 126633 || (c < 178208 - ? (c < 131072 - ? (c < 130032 - ? (c >= 126635 && c <= 126651) - : c <= 130041) - : (c <= 173789 || (c < 177984 - ? (c >= 173824 && c <= 177972) - : c <= 178205))) - : (c <= 183969 || (c < 196608 - ? (c < 194560 - ? (c >= 183984 && c <= 191456) - : c <= 195101) - : (c <= 201546 || (c >= 917760 && c <= 917999))))))))))))))))); -} - static inline bool sym_keyword_character_set_1(int32_t c) { return (c < 72106 ? (c < 68448 @@ -11971,54 +10013,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(268); if (lookahead == '\n') ADVANCE(269); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '!') ADVANCE(606); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(743); - if (lookahead == '%') ADVANCE(594); - if (lookahead == '&') ADVANCE(596); - if (lookahead == '\'') ADVANCE(512); - if (lookahead == '(') ADVANCE(741); + if (lookahead == '!') ADVANCE(522); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(659); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(512); + if (lookahead == '\'') ADVANCE(428); + if (lookahead == '(') ADVANCE(657); if (lookahead == ')') ADVANCE(301); - if (lookahead == '*') ADVANCE(703); - if (lookahead == '+') ADVANCE(599); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(602); - if (lookahead == '.') ADVANCE(712); - if (lookahead == '/') ADVANCE(533); - if (lookahead == '0') ADVANCE(466); + if (lookahead == '*') ADVANCE(619); + if (lookahead == '+') ADVANCE(515); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(518); + if (lookahead == '.') ADVANCE(628); + if (lookahead == '/') ADVANCE(449); + if (lookahead == '0') ADVANCE(382); if (lookahead == ':') ADVANCE(145); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(521); - if (lookahead == '=') ADVANCE(630); - if (lookahead == '>') ADVANCE(525); + if (lookahead == '<') ADVANCE(437); + if (lookahead == '=') ADVANCE(546); + if (lookahead == '>') ADVANCE(441); if (lookahead == '?') ADVANCE(194); - if (lookahead == '@') ADVANCE(618); - if (lookahead == '[') ADVANCE(742); + if (lookahead == '@') ADVANCE(534); + if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(4); - if (lookahead == ']') ADVANCE(519); - if (lookahead == '^') ADVANCE(609); - if (lookahead == '_') ADVANCE(406); - if (lookahead == 'a') ADVANCE(546); - if (lookahead == 'c') ADVANCE(544); - if (lookahead == 'd') ADVANCE(551); - if (lookahead == 'e') ADVANCE(549); - if (lookahead == 'f') ADVANCE(543); - if (lookahead == 'i') ADVANCE(550); - if (lookahead == 'n') ADVANCE(548); - if (lookahead == 'o') ADVANCE(552); - if (lookahead == 'r') ADVANCE(545); - if (lookahead == 't') ADVANCE(553); - if (lookahead == 'w') ADVANCE(547); - if (lookahead == '{') ADVANCE(516); - if (lookahead == '|') ADVANCE(530); - if (lookahead == '}') ADVANCE(517); - if (lookahead == '~') ADVANCE(540); + if (lookahead == ']') ADVANCE(435); + if (lookahead == '^') ADVANCE(525); + if (lookahead == 'a') ADVANCE(462); + if (lookahead == 'c') ADVANCE(460); + if (lookahead == 'd') ADVANCE(467); + if (lookahead == 'e') ADVANCE(465); + if (lookahead == 'f') ADVANCE(459); + if (lookahead == 'i') ADVANCE(466); + if (lookahead == 'n') ADVANCE(464); + if (lookahead == 'o') ADVANCE(468); + if (lookahead == 'r') ADVANCE(461); + if (lookahead == 't') ADVANCE(469); + if (lookahead == 'w') ADVANCE(463); + if (lookahead == '{') ADVANCE(432); + if (lookahead == '|') ADVANCE(446); + if (lookahead == '}') ADVANCE(433); + if (lookahead == '~') ADVANCE(456); if (lookahead == 11823) ADVANCE(377); if (lookahead == '\t' || lookahead == ' ') SKIP(257) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); - if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(554); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(556); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(383); + if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(470); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(472); if (aux_sym_identifier_token1_character_set_1(lookahead)) ADVANCE(340); if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); @@ -12028,33 +10069,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 2: if (lookahead == '\n') ADVANCE(269); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '!') ADVANCE(606); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(743); - if (lookahead == '%') ADVANCE(594); - if (lookahead == '&') ADVANCE(596); - if (lookahead == '\'') ADVANCE(512); + if (lookahead == '!') ADVANCE(522); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(659); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(512); + if (lookahead == '\'') ADVANCE(428); if (lookahead == '(') ADVANCE(300); if (lookahead == ')') ADVANCE(301); - if (lookahead == '*') ADVANCE(703); - if (lookahead == '+') ADVANCE(599); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(602); - if (lookahead == '.') ADVANCE(712); - if (lookahead == '/') ADVANCE(533); - if (lookahead == '0') ADVANCE(466); + if (lookahead == '*') ADVANCE(619); + if (lookahead == '+') ADVANCE(515); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(518); + if (lookahead == '.') ADVANCE(628); + if (lookahead == '/') ADVANCE(449); + if (lookahead == '0') ADVANCE(382); if (lookahead == ':') ADVANCE(146); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(521); - if (lookahead == '=') ADVANCE(630); - if (lookahead == '>') ADVANCE(525); + if (lookahead == '<') ADVANCE(437); + if (lookahead == '=') ADVANCE(546); + if (lookahead == '>') ADVANCE(441); if (lookahead == '?') ADVANCE(194); - if (lookahead == '@') ADVANCE(618); - if (lookahead == '[') ADVANCE(518); + if (lookahead == '@') ADVANCE(534); + if (lookahead == '[') ADVANCE(434); if (lookahead == '\\') ADVANCE(4); - if (lookahead == ']') ADVANCE(519); - if (lookahead == '^') ADVANCE(609); - if (lookahead == '_') ADVANCE(406); + if (lookahead == ']') ADVANCE(435); + if (lookahead == '^') ADVANCE(525); if (lookahead == 'a') ADVANCE(317); if (lookahead == 'c') ADVANCE(305); if (lookahead == 'd') ADVANCE(328); @@ -12066,14 +10106,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(314); if (lookahead == 't') ADVANCE(330); if (lookahead == 'w') ADVANCE(318); - if (lookahead == '{') ADVANCE(516); - if (lookahead == '|') ADVANCE(530); - if (lookahead == '}') ADVANCE(517); - if (lookahead == '~') ADVANCE(540); + if (lookahead == '{') ADVANCE(432); + if (lookahead == '|') ADVANCE(446); + if (lookahead == '}') ADVANCE(433); + if (lookahead == '~') ADVANCE(456); if (lookahead == 11823) ADVANCE(377); if (lookahead == '\t' || lookahead == ' ') SKIP(2) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(383); if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); if (sym_keyword_character_set_2(lookahead)) ADVANCE(176); END_STATE(); @@ -12083,7 +10123,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 4: if (lookahead == '\n') SKIP(2) if (lookahead == '\r') SKIP(3) - if (lookahead == '\\') ADVANCE(622); + if (lookahead == '\\') ADVANCE(538); END_STATE(); case 5: if (lookahead == '\n') SKIP(77) @@ -12091,7 +10131,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 6: if (lookahead == '\n') SKIP(77) if (lookahead == '\r') SKIP(5) - if (lookahead == '\\') ADVANCE(621); + if (lookahead == '\\') ADVANCE(537); END_STATE(); case 7: if (lookahead == '\n') SKIP(79) @@ -12099,7 +10139,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 8: if (lookahead == '\n') SKIP(79) if (lookahead == '\r') SKIP(7) - if (lookahead == '\\') ADVANCE(622); + if (lookahead == '\\') ADVANCE(538); END_STATE(); case 9: if (lookahead == '\n') SKIP(84) @@ -12107,7 +10147,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 10: if (lookahead == '\n') SKIP(84) if (lookahead == '\r') SKIP(9) - if (lookahead == '\\') ADVANCE(622); + if (lookahead == '\\') ADVANCE(538); END_STATE(); case 11: if (lookahead == '\n') SKIP(92) @@ -12115,7 +10155,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 12: if (lookahead == '\n') SKIP(92) if (lookahead == '\r') SKIP(11) - if (lookahead == '\\') ADVANCE(622); + if (lookahead == '\\') ADVANCE(538); END_STATE(); case 13: if (lookahead == '\n') SKIP(94) @@ -12123,7 +10163,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 14: if (lookahead == '\n') SKIP(94) if (lookahead == '\r') SKIP(13) - if (lookahead == '\\') ADVANCE(621); + if (lookahead == '\\') ADVANCE(537); END_STATE(); case 15: if (lookahead == '\n') SKIP(96) @@ -12131,7 +10171,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 16: if (lookahead == '\n') SKIP(96) if (lookahead == '\r') SKIP(15) - if (lookahead == '\\') ADVANCE(622); + if (lookahead == '\\') ADVANCE(538); END_STATE(); case 17: if (lookahead == '\n') SKIP(98) @@ -12139,7 +10179,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 18: if (lookahead == '\n') SKIP(98) if (lookahead == '\r') SKIP(17) - if (lookahead == '\\') ADVANCE(621); + if (lookahead == '\\') ADVANCE(537); END_STATE(); case 19: if (lookahead == '\n') SKIP(100) @@ -12147,7 +10187,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 20: if (lookahead == '\n') SKIP(100) if (lookahead == '\r') SKIP(19) - if (lookahead == '\\') ADVANCE(621); + if (lookahead == '\\') ADVANCE(537); END_STATE(); case 21: if (lookahead == '\n') SKIP(103) @@ -12155,7 +10195,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 22: if (lookahead == '\n') SKIP(103) if (lookahead == '\r') SKIP(21) - if (lookahead == '\\') ADVANCE(621); + if (lookahead == '\\') ADVANCE(537); END_STATE(); case 23: if (lookahead == '\n') SKIP(105) @@ -12163,7 +10203,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 24: if (lookahead == '\n') SKIP(105) if (lookahead == '\r') SKIP(23) - if (lookahead == '\\') ADVANCE(621); + if (lookahead == '\\') ADVANCE(537); END_STATE(); case 25: if (lookahead == '\n') SKIP(108) @@ -12171,7 +10211,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 26: if (lookahead == '\n') SKIP(108) if (lookahead == '\r') SKIP(25) - if (lookahead == '\\') ADVANCE(621); + if (lookahead == '\\') ADVANCE(537); END_STATE(); case 27: if (lookahead == '\n') SKIP(114) @@ -12179,7 +10219,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 28: if (lookahead == '\n') SKIP(114) if (lookahead == '\r') SKIP(27) - if (lookahead == '\\') ADVANCE(621); + if (lookahead == '\\') ADVANCE(537); END_STATE(); case 29: if (lookahead == '\n') SKIP(116) @@ -12187,7 +10227,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 30: if (lookahead == '\n') SKIP(116) if (lookahead == '\r') SKIP(29) - if (lookahead == '\\') ADVANCE(621); + if (lookahead == '\\') ADVANCE(537); END_STATE(); case 31: if (lookahead == '\n') SKIP(122) @@ -12195,7 +10235,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 32: if (lookahead == '\n') SKIP(122) if (lookahead == '\r') SKIP(31) - if (lookahead == '\\') ADVANCE(621); + if (lookahead == '\\') ADVANCE(537); END_STATE(); case 33: if (lookahead == '\n') SKIP(125) @@ -12203,7 +10243,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 34: if (lookahead == '\n') SKIP(125) if (lookahead == '\r') SKIP(33) - if (lookahead == '\\') ADVANCE(621); + if (lookahead == '\\') ADVANCE(537); END_STATE(); case 35: if (lookahead == '\n') SKIP(127) @@ -12211,7 +10251,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 36: if (lookahead == '\n') SKIP(127) if (lookahead == '\r') SKIP(35) - if (lookahead == '\\') ADVANCE(621); + if (lookahead == '\\') ADVANCE(537); END_STATE(); case 37: if (lookahead == '\n') SKIP(130) @@ -12219,7 +10259,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 38: if (lookahead == '\n') SKIP(130) if (lookahead == '\r') SKIP(37) - if (lookahead == '\\') ADVANCE(621); + if (lookahead == '\\') ADVANCE(537); END_STATE(); case 39: if (lookahead == '\n') SKIP(133) @@ -12227,7 +10267,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 40: if (lookahead == '\n') SKIP(133) if (lookahead == '\r') SKIP(39) - if (lookahead == '\\') ADVANCE(621); + if (lookahead == '\\') ADVANCE(537); END_STATE(); case 41: if (lookahead == '\n') SKIP(136) @@ -12235,7 +10275,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 42: if (lookahead == '\n') SKIP(136) if (lookahead == '\r') SKIP(41) - if (lookahead == '\\') ADVANCE(621); + if (lookahead == '\\') ADVANCE(537); END_STATE(); case 43: if (lookahead == '\n') SKIP(139) @@ -12243,7 +10283,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 44: if (lookahead == '\n') SKIP(139) if (lookahead == '\r') SKIP(43) - if (lookahead == '\\') ADVANCE(621); + if (lookahead == '\\') ADVANCE(537); END_STATE(); case 45: if (lookahead == '\n') SKIP(142) @@ -12251,7 +10291,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 46: if (lookahead == '\n') SKIP(142) if (lookahead == '\r') SKIP(45) - if (lookahead == '\\') ADVANCE(621); + if (lookahead == '\\') ADVANCE(537); END_STATE(); case 47: if (lookahead == '\n') SKIP(50) @@ -12266,27 +10306,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 50: if (lookahead == '\n') ADVANCE(270); if (lookahead == '\r') ADVANCE(49); - if (lookahead == '!') ADVANCE(605); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '&') ADVANCE(595); - if (lookahead == '\'') ADVANCE(512); + if (lookahead == '!') ADVANCE(521); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(660); + if (lookahead == '&') ADVANCE(511); + if (lookahead == '\'') ADVANCE(428); if (lookahead == '(') ADVANCE(300); - if (lookahead == '+') ADVANCE(598); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(601); - if (lookahead == '/') ADVANCE(532); - if (lookahead == '<') ADVANCE(520); + if (lookahead == '+') ADVANCE(514); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(517); + if (lookahead == '/') ADVANCE(448); + if (lookahead == '<') ADVANCE(436); if (lookahead == '>') ADVANCE(191); - if (lookahead == '@') ADVANCE(617); - if (lookahead == '[') ADVANCE(518); + if (lookahead == '@') ADVANCE(533); + if (lookahead == '[') ADVANCE(434); if (lookahead == '\\') SKIP(48) - if (lookahead == ']') ADVANCE(519); - if (lookahead == '^') ADVANCE(608); + if (lookahead == ']') ADVANCE(435); + if (lookahead == '^') ADVANCE(524); if (lookahead == 'n') ADVANCE(218); - if (lookahead == '{') ADVANCE(515); - if (lookahead == '|') ADVANCE(529); - if (lookahead == '}') ADVANCE(517); + if (lookahead == '{') ADVANCE(431); + if (lookahead == '|') ADVANCE(445); + if (lookahead == '}') ADVANCE(433); if (lookahead == '~') ADVANCE(236); if (lookahead == '\t' || lookahead == ' ') SKIP(50) @@ -12294,22 +10334,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 51: if (lookahead == '\n') ADVANCE(270); if (lookahead == '\r') ADVANCE(49); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == ')') ADVANCE(301); - if (lookahead == ',') ADVANCE(584); + if (lookahead == ',') ADVANCE(500); if (lookahead == '-') ADVANCE(186); if (lookahead == '>') ADVANCE(191); if (lookahead == '\\') SKIP(57) - if (lookahead == ']') ADVANCE(519); + if (lookahead == ']') ADVANCE(435); if (lookahead == 'w') ADVANCE(211); - if (lookahead == '}') ADVANCE(517); + if (lookahead == '}') ADVANCE(433); if (lookahead == '\t' || lookahead == ' ') SKIP(51) END_STATE(); case 52: if (lookahead == '\n') ADVANCE(270); if (lookahead == '\r') ADVANCE(49); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '\\') SKIP(60) if (lookahead == '\t' || lookahead == ' ') SKIP(52) @@ -12317,12 +10357,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 53: if (lookahead == '\n') ADVANCE(270); if (lookahead == '\r') ADVANCE(49); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '\\') SKIP(60) if (lookahead == '\t' || lookahead == ' ') SKIP(52) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(555); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(542); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(471); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(458); END_STATE(); case 54: if (lookahead == '\n') SKIP(144) @@ -12340,11 +10380,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(56) END_STATE(); case 58: - if (lookahead == '\n') ADVANCE(538); - if (lookahead == '\r') ADVANCE(537); + if (lookahead == '\n') ADVANCE(454); + if (lookahead == '\r') ADVANCE(453); if (lookahead == 'u') ADVANCE(228); if (lookahead == 'x') ADVANCE(227); - if (lookahead != 0) ADVANCE(537); + if (lookahead != 0) ADVANCE(453); END_STATE(); case 59: if (lookahead == '\n') SKIP(52) @@ -12359,8 +10399,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 62: if (lookahead == '\n') ADVANCE(271); if (lookahead == '\r') ADVANCE(61); - if (lookahead == '"') ADVANCE(509); - if (lookahead == '#') ADVANCE(743); + if (lookahead == '"') ADVANCE(425); + if (lookahead == '#') ADVANCE(659); if (lookahead == '\'') ADVANCE(152); if (lookahead == '\\') ADVANCE(58); if (lookahead == '\t' || @@ -12369,16 +10409,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 63: if (lookahead == '\n') ADVANCE(271); if (lookahead == '\r') ADVANCE(61); - if (lookahead == '"') ADVANCE(509); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '\'') ADVANCE(511); + if (lookahead == '"') ADVANCE(425); + if (lookahead == '#') ADVANCE(660); + if (lookahead == '\'') ADVANCE(427); if (lookahead == ')') ADVANCE(301); - if (lookahead == '/') ADVANCE(532); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '/') ADVANCE(448); + if (lookahead == '>') ADVANCE(440); if (lookahead == '\\') ADVANCE(58); - if (lookahead == ']') ADVANCE(519); - if (lookahead == '|') ADVANCE(529); - if (lookahead == '}') ADVANCE(517); + if (lookahead == ']') ADVANCE(435); + if (lookahead == '|') ADVANCE(445); + if (lookahead == '}') ADVANCE(433); if (lookahead == '\t' || lookahead == ' ') SKIP(63) END_STATE(); @@ -12386,15 +10426,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(271); if (lookahead == '\r') ADVANCE(61); if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(743); - if (lookahead == '\'') ADVANCE(511); + if (lookahead == '#') ADVANCE(659); + if (lookahead == '\'') ADVANCE(427); if (lookahead == ')') ADVANCE(301); - if (lookahead == '/') ADVANCE(532); - if (lookahead == '>') ADVANCE(524); + if (lookahead == '/') ADVANCE(448); + if (lookahead == '>') ADVANCE(440); if (lookahead == '\\') ADVANCE(58); - if (lookahead == ']') ADVANCE(519); - if (lookahead == '|') ADVANCE(529); - if (lookahead == '}') ADVANCE(517); + if (lookahead == ']') ADVANCE(435); + if (lookahead == '|') ADVANCE(445); + if (lookahead == '}') ADVANCE(433); if (lookahead == '\t' || lookahead == ' ') SKIP(64) END_STATE(); @@ -12402,7 +10442,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(271); if (lookahead == '\r') ADVANCE(61); if (lookahead == '"') ADVANCE(147); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '\'') ADVANCE(152); if (lookahead == '\\') ADVANCE(58); if (lookahead == '\t' || @@ -12414,7 +10454,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 67: if (lookahead == '\n') SKIP(82) if (lookahead == '\r') SKIP(66) - if (lookahead == '\\') ADVANCE(622); + if (lookahead == '\\') ADVANCE(538); END_STATE(); case 68: if (lookahead == '\n') SKIP(87) @@ -12422,7 +10462,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 69: if (lookahead == '\n') SKIP(87) if (lookahead == '\r') SKIP(68) - if (lookahead == '\\') ADVANCE(622); + if (lookahead == '\\') ADVANCE(538); END_STATE(); case 70: if (lookahead == '\n') SKIP(90) @@ -12430,7 +10470,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 71: if (lookahead == '\n') SKIP(90) if (lookahead == '\r') SKIP(70) - if (lookahead == '\\') ADVANCE(622); + if (lookahead == '\\') ADVANCE(538); END_STATE(); case 72: if (lookahead == '\n') SKIP(111) @@ -12438,7 +10478,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 73: if (lookahead == '\n') SKIP(111) if (lookahead == '\r') SKIP(72) - if (lookahead == '\\') ADVANCE(621); + if (lookahead == '\\') ADVANCE(537); END_STATE(); case 74: if (lookahead == '\n') SKIP(119) @@ -12446,7 +10486,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 75: if (lookahead == '\n') SKIP(119) if (lookahead == '\r') SKIP(74) - if (lookahead == '\\') ADVANCE(621); + if (lookahead == '\\') ADVANCE(537); END_STATE(); case 76: if (lookahead == '\n') ADVANCE(272); @@ -12454,33 +10494,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 77: if (lookahead == '\n') ADVANCE(272); if (lookahead == '\r') ADVANCE(76); - if (lookahead == '!') ADVANCE(607); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '%') ADVANCE(593); - if (lookahead == '&') ADVANCE(597); - if (lookahead == '\'') ADVANCE(512); + if (lookahead == '!') ADVANCE(523); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(660); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(513); + if (lookahead == '\'') ADVANCE(428); if (lookahead == '(') ADVANCE(300); if (lookahead == ')') ADVANCE(301); - if (lookahead == '*') ADVANCE(704); - if (lookahead == '+') ADVANCE(600); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(604); - if (lookahead == '.') ADVANCE(713); - if (lookahead == '/') ADVANCE(532); - if (lookahead == '0') ADVANCE(466); + if (lookahead == '*') ADVANCE(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(520); + if (lookahead == '.') ADVANCE(629); + if (lookahead == '/') ADVANCE(448); + if (lookahead == '0') ADVANCE(382); if (lookahead == ':') ADVANCE(146); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(522); - if (lookahead == '=') ADVANCE(633); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '<') ADVANCE(438); + if (lookahead == '=') ADVANCE(549); + if (lookahead == '>') ADVANCE(444); if (lookahead == '?') ADVANCE(194); - if (lookahead == '@') ADVANCE(617); - if (lookahead == '[') ADVANCE(518); + if (lookahead == '@') ADVANCE(533); + if (lookahead == '[') ADVANCE(434); if (lookahead == '\\') ADVANCE(6); - if (lookahead == ']') ADVANCE(519); - if (lookahead == '^') ADVANCE(611); - if (lookahead == '_') ADVANCE(442); + if (lookahead == ']') ADVANCE(435); + if (lookahead == '^') ADVANCE(527); if (lookahead == 'a') ADVANCE(361); if (lookahead == 'f') ADVANCE(341); if (lookahead == 'i') ADVANCE(362); @@ -12488,14 +10527,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(366); if (lookahead == 't') ADVANCE(367); if (lookahead == 'w') ADVANCE(355); - if (lookahead == '{') ADVANCE(515); - if (lookahead == '|') ADVANCE(531); - if (lookahead == '}') ADVANCE(517); - if (lookahead == '~') ADVANCE(541); + if (lookahead == '{') ADVANCE(431); + if (lookahead == '|') ADVANCE(447); + if (lookahead == '}') ADVANCE(433); + if (lookahead == '~') ADVANCE(457); if (lookahead == '\t' || lookahead == ' ') SKIP(77) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(383); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(381); if (aux_sym_identifier_token1_character_set_3(lookahead)) ADVANCE(377); END_STATE(); case 78: @@ -12504,30 +10543,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 79: if (lookahead == '\n') ADVANCE(273); if (lookahead == '\r') ADVANCE(78); - if (lookahead == '!') ADVANCE(606); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '%') ADVANCE(594); - if (lookahead == '&') ADVANCE(596); - if (lookahead == '\'') ADVANCE(512); + if (lookahead == '!') ADVANCE(522); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(660); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(512); + if (lookahead == '\'') ADVANCE(428); if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(703); - if (lookahead == '+') ADVANCE(599); - if (lookahead == '-') ADVANCE(602); - if (lookahead == '.') ADVANCE(712); - if (lookahead == '/') ADVANCE(534); - if (lookahead == '0') ADVANCE(466); + if (lookahead == '*') ADVANCE(619); + if (lookahead == '+') ADVANCE(515); + if (lookahead == '-') ADVANCE(518); + if (lookahead == '.') ADVANCE(628); + if (lookahead == '/') ADVANCE(450); + if (lookahead == '0') ADVANCE(382); if (lookahead == ':') ADVANCE(146); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(521); - if (lookahead == '=') ADVANCE(631); - if (lookahead == '>') ADVANCE(526); + if (lookahead == '<') ADVANCE(437); + if (lookahead == '=') ADVANCE(547); + if (lookahead == '>') ADVANCE(442); if (lookahead == '?') ADVANCE(194); - if (lookahead == '@') ADVANCE(618); - if (lookahead == '[') ADVANCE(518); + if (lookahead == '@') ADVANCE(534); + if (lookahead == '[') ADVANCE(434); if (lookahead == '\\') ADVANCE(8); - if (lookahead == '^') ADVANCE(610); - if (lookahead == '_') ADVANCE(406); + if (lookahead == '^') ADVANCE(526); if (lookahead == 'a') ADVANCE(317); if (lookahead == 'c') ADVANCE(305); if (lookahead == 'e') ADVANCE(321); @@ -12538,14 +10576,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(314); if (lookahead == 't') ADVANCE(330); if (lookahead == 'w') ADVANCE(318); - if (lookahead == '{') ADVANCE(516); - if (lookahead == '|') ADVANCE(530); - if (lookahead == '~') ADVANCE(540); + if (lookahead == '{') ADVANCE(432); + if (lookahead == '|') ADVANCE(446); + if (lookahead == '~') ADVANCE(456); if (lookahead == 11823) ADVANCE(377); if (lookahead == '\t' || lookahead == ' ') SKIP(79) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(383); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(380); if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); @@ -12555,31 +10593,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 81: if (lookahead == '\n') ADVANCE(274); if (lookahead == '\r') ADVANCE(80); - if (lookahead == '!') ADVANCE(606); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '%') ADVANCE(594); - if (lookahead == '&') ADVANCE(596); - if (lookahead == '\'') ADVANCE(512); - if (lookahead == '(') ADVANCE(741); - if (lookahead == '*') ADVANCE(703); - if (lookahead == '+') ADVANCE(599); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(602); - if (lookahead == '.') ADVANCE(712); - if (lookahead == '/') ADVANCE(533); - if (lookahead == '0') ADVANCE(466); + if (lookahead == '!') ADVANCE(522); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(660); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(512); + if (lookahead == '\'') ADVANCE(428); + if (lookahead == '(') ADVANCE(657); + if (lookahead == '*') ADVANCE(619); + if (lookahead == '+') ADVANCE(515); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(518); + if (lookahead == '.') ADVANCE(628); + if (lookahead == '/') ADVANCE(449); + if (lookahead == '0') ADVANCE(382); if (lookahead == ':') ADVANCE(146); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(521); - if (lookahead == '=') ADVANCE(630); - if (lookahead == '>') ADVANCE(526); + if (lookahead == '<') ADVANCE(437); + if (lookahead == '=') ADVANCE(546); + if (lookahead == '>') ADVANCE(442); if (lookahead == '?') ADVANCE(194); - if (lookahead == '@') ADVANCE(618); - if (lookahead == '[') ADVANCE(742); + if (lookahead == '@') ADVANCE(534); + if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(67); - if (lookahead == '^') ADVANCE(609); - if (lookahead == '_') ADVANCE(406); + if (lookahead == '^') ADVANCE(525); if (lookahead == 'a') ADVANCE(317); if (lookahead == 'c') ADVANCE(305); if (lookahead == 'd') ADVANCE(328); @@ -12591,45 +10628,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(314); if (lookahead == 't') ADVANCE(330); if (lookahead == 'w') ADVANCE(318); - if (lookahead == '{') ADVANCE(516); - if (lookahead == '|') ADVANCE(530); - if (lookahead == '~') ADVANCE(540); + if (lookahead == '{') ADVANCE(432); + if (lookahead == '|') ADVANCE(446); + if (lookahead == '~') ADVANCE(456); if (lookahead == 11823) ADVANCE(377); if (lookahead == '\t' || lookahead == ' ') SKIP(82) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(383); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(380); if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); case 82: if (lookahead == '\n') ADVANCE(274); if (lookahead == '\r') ADVANCE(80); - if (lookahead == '!') ADVANCE(606); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '%') ADVANCE(594); - if (lookahead == '&') ADVANCE(596); - if (lookahead == '\'') ADVANCE(512); + if (lookahead == '!') ADVANCE(522); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(660); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(512); + if (lookahead == '\'') ADVANCE(428); if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(703); - if (lookahead == '+') ADVANCE(599); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(602); - if (lookahead == '.') ADVANCE(712); - if (lookahead == '/') ADVANCE(533); - if (lookahead == '0') ADVANCE(466); + if (lookahead == '*') ADVANCE(619); + if (lookahead == '+') ADVANCE(515); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(518); + if (lookahead == '.') ADVANCE(628); + if (lookahead == '/') ADVANCE(449); + if (lookahead == '0') ADVANCE(382); if (lookahead == ':') ADVANCE(146); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(521); - if (lookahead == '=') ADVANCE(630); - if (lookahead == '>') ADVANCE(526); + if (lookahead == '<') ADVANCE(437); + if (lookahead == '=') ADVANCE(546); + if (lookahead == '>') ADVANCE(442); if (lookahead == '?') ADVANCE(194); - if (lookahead == '@') ADVANCE(618); - if (lookahead == '[') ADVANCE(518); + if (lookahead == '@') ADVANCE(534); + if (lookahead == '[') ADVANCE(434); if (lookahead == '\\') ADVANCE(67); - if (lookahead == '^') ADVANCE(609); - if (lookahead == '_') ADVANCE(406); + if (lookahead == '^') ADVANCE(525); if (lookahead == 'a') ADVANCE(317); if (lookahead == 'c') ADVANCE(305); if (lookahead == 'd') ADVANCE(328); @@ -12641,14 +10677,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(314); if (lookahead == 't') ADVANCE(330); if (lookahead == 'w') ADVANCE(318); - if (lookahead == '{') ADVANCE(516); - if (lookahead == '|') ADVANCE(530); - if (lookahead == '~') ADVANCE(540); + if (lookahead == '{') ADVANCE(432); + if (lookahead == '|') ADVANCE(446); + if (lookahead == '~') ADVANCE(456); if (lookahead == 11823) ADVANCE(377); if (lookahead == '\t' || lookahead == ' ') SKIP(82) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(383); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(380); if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); @@ -12658,33 +10694,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 84: if (lookahead == '\n') ADVANCE(275); if (lookahead == '\r') ADVANCE(83); - if (lookahead == '!') ADVANCE(606); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '%') ADVANCE(594); - if (lookahead == '&') ADVANCE(596); - if (lookahead == '\'') ADVANCE(512); + if (lookahead == '!') ADVANCE(522); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(660); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(512); + if (lookahead == '\'') ADVANCE(428); if (lookahead == '(') ADVANCE(300); if (lookahead == ')') ADVANCE(301); - if (lookahead == '*') ADVANCE(703); - if (lookahead == '+') ADVANCE(599); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(602); - if (lookahead == '.') ADVANCE(712); - if (lookahead == '/') ADVANCE(533); - if (lookahead == '0') ADVANCE(466); + if (lookahead == '*') ADVANCE(619); + if (lookahead == '+') ADVANCE(515); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(518); + if (lookahead == '.') ADVANCE(628); + if (lookahead == '/') ADVANCE(449); + if (lookahead == '0') ADVANCE(382); if (lookahead == ':') ADVANCE(146); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(521); - if (lookahead == '=') ADVANCE(630); - if (lookahead == '>') ADVANCE(526); + if (lookahead == '<') ADVANCE(437); + if (lookahead == '=') ADVANCE(546); + if (lookahead == '>') ADVANCE(442); if (lookahead == '?') ADVANCE(194); - if (lookahead == '@') ADVANCE(618); - if (lookahead == '[') ADVANCE(518); + if (lookahead == '@') ADVANCE(534); + if (lookahead == '[') ADVANCE(434); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(519); - if (lookahead == '^') ADVANCE(609); - if (lookahead == '_') ADVANCE(406); + if (lookahead == ']') ADVANCE(435); + if (lookahead == '^') ADVANCE(525); if (lookahead == 'a') ADVANCE(324); if (lookahead == 'd') ADVANCE(328); if (lookahead == 'f') ADVANCE(304); @@ -12693,15 +10728,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(329); if (lookahead == 't') ADVANCE(330); if (lookahead == 'w') ADVANCE(318); - if (lookahead == '{') ADVANCE(516); - if (lookahead == '|') ADVANCE(530); - if (lookahead == '}') ADVANCE(517); - if (lookahead == '~') ADVANCE(540); + if (lookahead == '{') ADVANCE(432); + if (lookahead == '|') ADVANCE(446); + if (lookahead == '}') ADVANCE(433); + if (lookahead == '~') ADVANCE(456); if (lookahead == 11823) ADVANCE(377); if (lookahead == '\t' || lookahead == ' ') SKIP(84) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(383); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(380); if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); @@ -12711,31 +10746,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 86: if (lookahead == '\n') ADVANCE(276); if (lookahead == '\r') ADVANCE(85); - if (lookahead == '!') ADVANCE(606); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '%') ADVANCE(594); - if (lookahead == '&') ADVANCE(596); - if (lookahead == '\'') ADVANCE(512); - if (lookahead == '(') ADVANCE(741); - if (lookahead == '*') ADVANCE(703); - if (lookahead == '+') ADVANCE(599); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(602); - if (lookahead == '.') ADVANCE(712); - if (lookahead == '/') ADVANCE(533); - if (lookahead == '0') ADVANCE(466); + if (lookahead == '!') ADVANCE(522); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(660); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(512); + if (lookahead == '\'') ADVANCE(428); + if (lookahead == '(') ADVANCE(657); + if (lookahead == '*') ADVANCE(619); + if (lookahead == '+') ADVANCE(515); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(518); + if (lookahead == '.') ADVANCE(628); + if (lookahead == '/') ADVANCE(449); + if (lookahead == '0') ADVANCE(382); if (lookahead == ':') ADVANCE(146); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(521); - if (lookahead == '=') ADVANCE(630); - if (lookahead == '>') ADVANCE(526); + if (lookahead == '<') ADVANCE(437); + if (lookahead == '=') ADVANCE(546); + if (lookahead == '>') ADVANCE(442); if (lookahead == '?') ADVANCE(194); - if (lookahead == '@') ADVANCE(618); - if (lookahead == '[') ADVANCE(742); + if (lookahead == '@') ADVANCE(534); + if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(69); - if (lookahead == '^') ADVANCE(609); - if (lookahead == '_') ADVANCE(406); + if (lookahead == '^') ADVANCE(525); if (lookahead == 'a') ADVANCE(324); if (lookahead == 'd') ADVANCE(328); if (lookahead == 'e') ADVANCE(327); @@ -12745,45 +10779,44 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(329); if (lookahead == 't') ADVANCE(330); if (lookahead == 'w') ADVANCE(318); - if (lookahead == '{') ADVANCE(516); - if (lookahead == '|') ADVANCE(530); - if (lookahead == '~') ADVANCE(540); + if (lookahead == '{') ADVANCE(432); + if (lookahead == '|') ADVANCE(446); + if (lookahead == '~') ADVANCE(456); if (lookahead == 11823) ADVANCE(377); if (lookahead == '\t' || lookahead == ' ') SKIP(87) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(383); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(380); if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); case 87: if (lookahead == '\n') ADVANCE(276); if (lookahead == '\r') ADVANCE(85); - if (lookahead == '!') ADVANCE(606); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '%') ADVANCE(594); - if (lookahead == '&') ADVANCE(596); - if (lookahead == '\'') ADVANCE(512); + if (lookahead == '!') ADVANCE(522); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(660); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(512); + if (lookahead == '\'') ADVANCE(428); if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(703); - if (lookahead == '+') ADVANCE(599); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(602); - if (lookahead == '.') ADVANCE(712); - if (lookahead == '/') ADVANCE(533); - if (lookahead == '0') ADVANCE(466); + if (lookahead == '*') ADVANCE(619); + if (lookahead == '+') ADVANCE(515); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(518); + if (lookahead == '.') ADVANCE(628); + if (lookahead == '/') ADVANCE(449); + if (lookahead == '0') ADVANCE(382); if (lookahead == ':') ADVANCE(146); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(521); - if (lookahead == '=') ADVANCE(630); - if (lookahead == '>') ADVANCE(526); + if (lookahead == '<') ADVANCE(437); + if (lookahead == '=') ADVANCE(546); + if (lookahead == '>') ADVANCE(442); if (lookahead == '?') ADVANCE(194); - if (lookahead == '@') ADVANCE(618); - if (lookahead == '[') ADVANCE(518); + if (lookahead == '@') ADVANCE(534); + if (lookahead == '[') ADVANCE(434); if (lookahead == '\\') ADVANCE(69); - if (lookahead == '^') ADVANCE(609); - if (lookahead == '_') ADVANCE(406); + if (lookahead == '^') ADVANCE(525); if (lookahead == 'a') ADVANCE(324); if (lookahead == 'd') ADVANCE(328); if (lookahead == 'e') ADVANCE(327); @@ -12793,14 +10826,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(329); if (lookahead == 't') ADVANCE(330); if (lookahead == 'w') ADVANCE(318); - if (lookahead == '{') ADVANCE(516); - if (lookahead == '|') ADVANCE(530); - if (lookahead == '~') ADVANCE(540); + if (lookahead == '{') ADVANCE(432); + if (lookahead == '|') ADVANCE(446); + if (lookahead == '~') ADVANCE(456); if (lookahead == 11823) ADVANCE(377); if (lookahead == '\t' || lookahead == ' ') SKIP(87) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(383); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(380); if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); @@ -12810,30 +10843,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 89: if (lookahead == '\n') ADVANCE(277); if (lookahead == '\r') ADVANCE(88); - if (lookahead == '!') ADVANCE(606); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '%') ADVANCE(594); - if (lookahead == '&') ADVANCE(596); - if (lookahead == '\'') ADVANCE(512); - if (lookahead == '(') ADVANCE(741); - if (lookahead == '*') ADVANCE(703); - if (lookahead == '+') ADVANCE(599); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(602); - if (lookahead == '.') ADVANCE(712); - if (lookahead == '/') ADVANCE(533); - if (lookahead == '0') ADVANCE(466); + if (lookahead == '!') ADVANCE(522); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(660); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(512); + if (lookahead == '\'') ADVANCE(428); + if (lookahead == '(') ADVANCE(657); + if (lookahead == '*') ADVANCE(619); + if (lookahead == '+') ADVANCE(515); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(518); + if (lookahead == '.') ADVANCE(628); + if (lookahead == '/') ADVANCE(449); + if (lookahead == '0') ADVANCE(382); if (lookahead == ':') ADVANCE(146); - if (lookahead == '<') ADVANCE(521); - if (lookahead == '=') ADVANCE(630); - if (lookahead == '>') ADVANCE(525); + if (lookahead == '<') ADVANCE(437); + if (lookahead == '=') ADVANCE(546); + if (lookahead == '>') ADVANCE(441); if (lookahead == '?') ADVANCE(194); - if (lookahead == '@') ADVANCE(618); - if (lookahead == '[') ADVANCE(742); + if (lookahead == '@') ADVANCE(534); + if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(71); - if (lookahead == '^') ADVANCE(609); - if (lookahead == '_') ADVANCE(406); + if (lookahead == '^') ADVANCE(525); if (lookahead == 'a') ADVANCE(324); if (lookahead == 'd') ADVANCE(328); if (lookahead == 'f') ADVANCE(304); @@ -12842,44 +10874,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(329); if (lookahead == 't') ADVANCE(330); if (lookahead == 'w') ADVANCE(318); - if (lookahead == '{') ADVANCE(516); - if (lookahead == '|') ADVANCE(530); - if (lookahead == '~') ADVANCE(540); + if (lookahead == '{') ADVANCE(432); + if (lookahead == '|') ADVANCE(446); + if (lookahead == '~') ADVANCE(456); if (lookahead == 11823) ADVANCE(377); if (lookahead == '\t' || lookahead == ' ') SKIP(90) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(383); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(380); if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); case 90: if (lookahead == '\n') ADVANCE(277); if (lookahead == '\r') ADVANCE(88); - if (lookahead == '!') ADVANCE(606); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '%') ADVANCE(594); - if (lookahead == '&') ADVANCE(596); - if (lookahead == '\'') ADVANCE(512); + if (lookahead == '!') ADVANCE(522); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(660); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(512); + if (lookahead == '\'') ADVANCE(428); if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(703); - if (lookahead == '+') ADVANCE(599); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(602); - if (lookahead == '.') ADVANCE(712); - if (lookahead == '/') ADVANCE(533); - if (lookahead == '0') ADVANCE(466); + if (lookahead == '*') ADVANCE(619); + if (lookahead == '+') ADVANCE(515); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(518); + if (lookahead == '.') ADVANCE(628); + if (lookahead == '/') ADVANCE(449); + if (lookahead == '0') ADVANCE(382); if (lookahead == ':') ADVANCE(146); - if (lookahead == '<') ADVANCE(521); - if (lookahead == '=') ADVANCE(630); - if (lookahead == '>') ADVANCE(525); + if (lookahead == '<') ADVANCE(437); + if (lookahead == '=') ADVANCE(546); + if (lookahead == '>') ADVANCE(441); if (lookahead == '?') ADVANCE(194); - if (lookahead == '@') ADVANCE(618); - if (lookahead == '[') ADVANCE(518); + if (lookahead == '@') ADVANCE(534); + if (lookahead == '[') ADVANCE(434); if (lookahead == '\\') ADVANCE(71); - if (lookahead == '^') ADVANCE(609); - if (lookahead == '_') ADVANCE(406); + if (lookahead == '^') ADVANCE(525); if (lookahead == 'a') ADVANCE(324); if (lookahead == 'd') ADVANCE(328); if (lookahead == 'f') ADVANCE(304); @@ -12888,14 +10919,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(329); if (lookahead == 't') ADVANCE(330); if (lookahead == 'w') ADVANCE(318); - if (lookahead == '{') ADVANCE(516); - if (lookahead == '|') ADVANCE(530); - if (lookahead == '~') ADVANCE(540); + if (lookahead == '{') ADVANCE(432); + if (lookahead == '|') ADVANCE(446); + if (lookahead == '~') ADVANCE(456); if (lookahead == 11823) ADVANCE(377); if (lookahead == '\t' || lookahead == ' ') SKIP(90) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(383); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(380); if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); @@ -12905,32 +10936,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 92: if (lookahead == '\n') ADVANCE(278); if (lookahead == '\r') ADVANCE(91); - if (lookahead == '!') ADVANCE(606); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '%') ADVANCE(594); - if (lookahead == '&') ADVANCE(596); - if (lookahead == '\'') ADVANCE(512); + if (lookahead == '!') ADVANCE(522); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(660); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(512); + if (lookahead == '\'') ADVANCE(428); if (lookahead == '(') ADVANCE(300); if (lookahead == ')') ADVANCE(301); - if (lookahead == '*') ADVANCE(703); - if (lookahead == '+') ADVANCE(599); - if (lookahead == '-') ADVANCE(602); - if (lookahead == '.') ADVANCE(712); - if (lookahead == '/') ADVANCE(534); - if (lookahead == '0') ADVANCE(466); + if (lookahead == '*') ADVANCE(619); + if (lookahead == '+') ADVANCE(515); + if (lookahead == '-') ADVANCE(518); + if (lookahead == '.') ADVANCE(628); + if (lookahead == '/') ADVANCE(450); + if (lookahead == '0') ADVANCE(382); if (lookahead == ':') ADVANCE(146); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(521); - if (lookahead == '=') ADVANCE(631); - if (lookahead == '>') ADVANCE(526); + if (lookahead == '<') ADVANCE(437); + if (lookahead == '=') ADVANCE(547); + if (lookahead == '>') ADVANCE(442); if (lookahead == '?') ADVANCE(194); - if (lookahead == '@') ADVANCE(618); - if (lookahead == '[') ADVANCE(518); + if (lookahead == '@') ADVANCE(534); + if (lookahead == '[') ADVANCE(434); if (lookahead == '\\') ADVANCE(12); - if (lookahead == ']') ADVANCE(519); - if (lookahead == '^') ADVANCE(610); - if (lookahead == '_') ADVANCE(406); + if (lookahead == ']') ADVANCE(435); + if (lookahead == '^') ADVANCE(526); if (lookahead == 'a') ADVANCE(324); if (lookahead == 'f') ADVANCE(304); if (lookahead == 'i') ADVANCE(325); @@ -12938,15 +10968,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(329); if (lookahead == 't') ADVANCE(330); if (lookahead == 'w') ADVANCE(318); - if (lookahead == '{') ADVANCE(516); - if (lookahead == '|') ADVANCE(530); - if (lookahead == '}') ADVANCE(517); - if (lookahead == '~') ADVANCE(540); + if (lookahead == '{') ADVANCE(432); + if (lookahead == '|') ADVANCE(446); + if (lookahead == '}') ADVANCE(433); + if (lookahead == '~') ADVANCE(456); if (lookahead == 11823) ADVANCE(377); if (lookahead == '\t' || lookahead == ' ') SKIP(92) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(383); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(380); if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); @@ -12956,30 +10986,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 94: if (lookahead == '\n') ADVANCE(279); if (lookahead == '\r') ADVANCE(93); - if (lookahead == '!') ADVANCE(607); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '%') ADVANCE(593); - if (lookahead == '&') ADVANCE(597); - if (lookahead == '\'') ADVANCE(512); + if (lookahead == '!') ADVANCE(523); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(660); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(513); + if (lookahead == '\'') ADVANCE(428); if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(704); - if (lookahead == '+') ADVANCE(600); - if (lookahead == '-') ADVANCE(604); - if (lookahead == '.') ADVANCE(713); - if (lookahead == '/') ADVANCE(532); - if (lookahead == '0') ADVANCE(466); + if (lookahead == '*') ADVANCE(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == '-') ADVANCE(520); + if (lookahead == '.') ADVANCE(629); + if (lookahead == '/') ADVANCE(448); + if (lookahead == '0') ADVANCE(382); if (lookahead == ':') ADVANCE(146); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(522); - if (lookahead == '=') ADVANCE(633); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '<') ADVANCE(438); + if (lookahead == '=') ADVANCE(549); + if (lookahead == '>') ADVANCE(444); if (lookahead == '?') ADVANCE(194); - if (lookahead == '@') ADVANCE(617); - if (lookahead == '[') ADVANCE(518); + if (lookahead == '@') ADVANCE(533); + if (lookahead == '[') ADVANCE(434); if (lookahead == '\\') ADVANCE(14); - if (lookahead == '^') ADVANCE(611); - if (lookahead == '_') ADVANCE(442); + if (lookahead == '^') ADVANCE(527); if (lookahead == 'a') ADVANCE(354); if (lookahead == 'c') ADVANCE(342); if (lookahead == 'e') ADVANCE(360); @@ -12990,13 +11019,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(351); if (lookahead == 't') ADVANCE(367); if (lookahead == 'w') ADVANCE(355); - if (lookahead == '{') ADVANCE(515); - if (lookahead == '|') ADVANCE(531); - if (lookahead == '~') ADVANCE(541); + if (lookahead == '{') ADVANCE(431); + if (lookahead == '|') ADVANCE(447); + if (lookahead == '~') ADVANCE(457); if (lookahead == '\t' || lookahead == ' ') SKIP(94) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(383); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(381); if (aux_sym_identifier_token1_character_set_3(lookahead)) ADVANCE(377); END_STATE(); case 95: @@ -13005,29 +11034,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 96: if (lookahead == '\n') ADVANCE(280); if (lookahead == '\r') ADVANCE(95); - if (lookahead == '!') ADVANCE(606); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '%') ADVANCE(594); - if (lookahead == '&') ADVANCE(596); - if (lookahead == '\'') ADVANCE(512); + if (lookahead == '!') ADVANCE(522); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(660); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(512); + if (lookahead == '\'') ADVANCE(428); if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(703); - if (lookahead == '+') ADVANCE(599); - if (lookahead == '-') ADVANCE(602); - if (lookahead == '.') ADVANCE(712); - if (lookahead == '/') ADVANCE(534); - if (lookahead == '0') ADVANCE(466); + if (lookahead == '*') ADVANCE(619); + if (lookahead == '+') ADVANCE(515); + if (lookahead == '-') ADVANCE(518); + if (lookahead == '.') ADVANCE(628); + if (lookahead == '/') ADVANCE(450); + if (lookahead == '0') ADVANCE(382); if (lookahead == ':') ADVANCE(146); - if (lookahead == '<') ADVANCE(521); - if (lookahead == '=') ADVANCE(631); - if (lookahead == '>') ADVANCE(525); + if (lookahead == '<') ADVANCE(437); + if (lookahead == '=') ADVANCE(547); + if (lookahead == '>') ADVANCE(441); if (lookahead == '?') ADVANCE(194); - if (lookahead == '@') ADVANCE(618); - if (lookahead == '[') ADVANCE(518); + if (lookahead == '@') ADVANCE(534); + if (lookahead == '[') ADVANCE(434); if (lookahead == '\\') ADVANCE(16); - if (lookahead == '^') ADVANCE(610); - if (lookahead == '_') ADVANCE(406); + if (lookahead == '^') ADVANCE(526); if (lookahead == 'a') ADVANCE(324); if (lookahead == 'f') ADVANCE(304); if (lookahead == 'i') ADVANCE(325); @@ -13035,14 +11063,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(329); if (lookahead == 't') ADVANCE(330); if (lookahead == 'w') ADVANCE(318); - if (lookahead == '{') ADVANCE(516); - if (lookahead == '|') ADVANCE(530); - if (lookahead == '~') ADVANCE(540); + if (lookahead == '{') ADVANCE(432); + if (lookahead == '|') ADVANCE(446); + if (lookahead == '~') ADVANCE(456); if (lookahead == 11823) ADVANCE(377); if (lookahead == '\t' || lookahead == ' ') SKIP(96) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(383); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(380); if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); @@ -13052,30 +11080,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 98: if (lookahead == '\n') ADVANCE(281); if (lookahead == '\r') ADVANCE(97); - if (lookahead == '!') ADVANCE(607); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '%') ADVANCE(593); - if (lookahead == '&') ADVANCE(597); - if (lookahead == '\'') ADVANCE(512); + if (lookahead == '!') ADVANCE(523); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(660); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(513); + if (lookahead == '\'') ADVANCE(428); if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(704); - if (lookahead == '+') ADVANCE(600); - if (lookahead == '-') ADVANCE(604); - if (lookahead == '.') ADVANCE(713); - if (lookahead == '/') ADVANCE(532); - if (lookahead == '0') ADVANCE(466); + if (lookahead == '*') ADVANCE(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == '-') ADVANCE(520); + if (lookahead == '.') ADVANCE(629); + if (lookahead == '/') ADVANCE(448); + if (lookahead == '0') ADVANCE(382); if (lookahead == ':') ADVANCE(146); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(522); - if (lookahead == '=') ADVANCE(633); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '<') ADVANCE(438); + if (lookahead == '=') ADVANCE(549); + if (lookahead == '>') ADVANCE(444); if (lookahead == '?') ADVANCE(194); - if (lookahead == '@') ADVANCE(617); - if (lookahead == '[') ADVANCE(518); + if (lookahead == '@') ADVANCE(533); + if (lookahead == '[') ADVANCE(434); if (lookahead == '\\') ADVANCE(18); - if (lookahead == '^') ADVANCE(611); - if (lookahead == '_') ADVANCE(442); + if (lookahead == '^') ADVANCE(527); if (lookahead == 'a') ADVANCE(361); if (lookahead == 'e') ADVANCE(364); if (lookahead == 'f') ADVANCE(341); @@ -13084,13 +11111,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(366); if (lookahead == 't') ADVANCE(367); if (lookahead == 'w') ADVANCE(355); - if (lookahead == '{') ADVANCE(515); - if (lookahead == '|') ADVANCE(531); - if (lookahead == '~') ADVANCE(541); + if (lookahead == '{') ADVANCE(431); + if (lookahead == '|') ADVANCE(447); + if (lookahead == '~') ADVANCE(457); if (lookahead == '\t' || lookahead == ' ') SKIP(98) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(383); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(381); if (aux_sym_identifier_token1_character_set_3(lookahead)) ADVANCE(377); END_STATE(); case 99: @@ -13099,26 +11126,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 100: if (lookahead == '\n') ADVANCE(282); if (lookahead == '\r') ADVANCE(99); - if (lookahead == '!') ADVANCE(607); - if (lookahead == '"') ADVANCE(509); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '&') ADVANCE(597); - if (lookahead == '\'') ADVANCE(511); + if (lookahead == '!') ADVANCE(523); + if (lookahead == '"') ADVANCE(425); + if (lookahead == '#') ADVANCE(660); + if (lookahead == '&') ADVANCE(513); + if (lookahead == '\'') ADVANCE(427); if (lookahead == '(') ADVANCE(300); - if (lookahead == '*') ADVANCE(704); - if (lookahead == '+') ADVANCE(600); - if (lookahead == '-') ADVANCE(604); - if (lookahead == '.') ADVANCE(713); - if (lookahead == '/') ADVANCE(532); - if (lookahead == '0') ADVANCE(471); + if (lookahead == '*') ADVANCE(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == '-') ADVANCE(520); + if (lookahead == '.') ADVANCE(629); + if (lookahead == '/') ADVANCE(448); + if (lookahead == '0') ADVANCE(387); if (lookahead == ':') ADVANCE(177); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(633); - if (lookahead == '>') ADVANCE(528); - if (lookahead == '@') ADVANCE(617); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(549); + if (lookahead == '>') ADVANCE(444); + if (lookahead == '@') ADVANCE(533); if (lookahead == '\\') ADVANCE(20); - if (lookahead == '^') ADVANCE(611); - if (lookahead == '_') ADVANCE(442); + if (lookahead == '^') ADVANCE(527); if (lookahead == 'a') ADVANCE(354); if (lookahead == 'c') ADVANCE(342); if (lookahead == 'd') ADVANCE(365); @@ -13130,13 +11156,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(351); if (lookahead == 't') ADVANCE(367); if (lookahead == 'w') ADVANCE(355); - if (lookahead == '{') ADVANCE(515); - if (lookahead == '|') ADVANCE(531); + if (lookahead == '{') ADVANCE(431); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(188); if (lookahead == '\t' || lookahead == ' ') SKIP(100) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(472); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(388); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(381); if (aux_sym_identifier_token1_character_set_3(lookahead)) ADVANCE(377); END_STATE(); case 101: @@ -13146,22 +11172,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(283); if (lookahead == '\r') ADVANCE(101); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); if (lookahead == '(') ADVANCE(300); if (lookahead == ')') ADVANCE(301); - if (lookahead == '*') ADVANCE(704); - if (lookahead == '+') ADVANCE(600); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(604); - if (lookahead == '.') ADVANCE(714); - if (lookahead == '/') ADVANCE(535); + if (lookahead == '*') ADVANCE(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(520); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(178); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); - if (lookahead == '[') ADVANCE(742); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); + if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(22); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(209); @@ -13172,7 +11198,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(219); if (lookahead == 'r') ADVANCE(208); if (lookahead == 'w') ADVANCE(211); - if (lookahead == '|') ADVANCE(531); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(103) @@ -13181,21 +11207,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(283); if (lookahead == '\r') ADVANCE(101); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); if (lookahead == '(') ADVANCE(300); if (lookahead == ')') ADVANCE(301); - if (lookahead == '*') ADVANCE(704); - if (lookahead == '+') ADVANCE(600); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(604); - if (lookahead == '.') ADVANCE(714); - if (lookahead == '/') ADVANCE(535); + if (lookahead == '*') ADVANCE(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(520); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); if (lookahead == '\\') ADVANCE(22); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(209); @@ -13206,7 +11232,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(219); if (lookahead == 'r') ADVANCE(208); if (lookahead == 'w') ADVANCE(211); - if (lookahead == '|') ADVANCE(531); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(103) @@ -13218,23 +11244,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(284); if (lookahead == '\r') ADVANCE(104); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); if (lookahead == '(') ADVANCE(300); 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); if (lookahead == '\\') ADVANCE(24); - if (lookahead == ']') ADVANCE(519); + if (lookahead == ']') ADVANCE(435); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(209); if (lookahead == 'c') ADVANCE(199); @@ -13244,9 +11270,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(219); if (lookahead == 'r') ADVANCE(208); if (lookahead == 'w') ADVANCE(211); - if (lookahead == '{') ADVANCE(515); - if (lookahead == '|') ADVANCE(531); - if (lookahead == '}') ADVANCE(517); + if (lookahead == '{') ADVANCE(431); + if (lookahead == '|') ADVANCE(447); + if (lookahead == '}') ADVANCE(433); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(105) @@ -13258,54 +11284,54 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(285); if (lookahead == '\r') ADVANCE(106); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); - if (lookahead == '*') ADVANCE(704); - if (lookahead == '+') ADVANCE(600); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(604); - if (lookahead == '.') ADVANCE(714); - if (lookahead == '/') ADVANCE(535); + if (lookahead == '*') ADVANCE(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(520); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); - if (lookahead == '[') ADVANCE(742); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); + if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(26); if (lookahead == '^') ADVANCE(198); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'c') ADVANCE(557); - if (lookahead == 'd') ADVANCE(575); - if (lookahead == 'e') ADVANCE(570); - if (lookahead == 'i') ADVANCE(572); - if (lookahead == 'o') ADVANCE(576); - if (lookahead == 'r') ADVANCE(566); - if (lookahead == 'w') ADVANCE(569); - if (lookahead == '|') ADVANCE(531); + if (lookahead == 'a') ADVANCE(483); + if (lookahead == 'c') ADVANCE(473); + if (lookahead == 'd') ADVANCE(491); + if (lookahead == 'e') ADVANCE(486); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == 'o') ADVANCE(492); + if (lookahead == 'r') ADVANCE(482); + if (lookahead == 'w') ADVANCE(485); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(108) if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); case 108: if (lookahead == '\n') ADVANCE(285); if (lookahead == '\r') ADVANCE(106); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); - if (lookahead == '*') ADVANCE(704); - if (lookahead == '+') ADVANCE(600); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(604); - if (lookahead == '.') ADVANCE(714); - if (lookahead == '/') ADVANCE(535); + if (lookahead == '*') ADVANCE(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(520); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); if (lookahead == '\\') ADVANCE(26); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(209); @@ -13316,7 +11342,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(219); if (lookahead == 'r') ADVANCE(208); if (lookahead == 'w') ADVANCE(211); - if (lookahead == '|') ADVANCE(531); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(108) @@ -13328,54 +11354,54 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(286); if (lookahead == '\r') ADVANCE(109); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); - 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); - if (lookahead == '[') ADVANCE(742); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); + if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(73); if (lookahead == '^') ADVANCE(198); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'c') ADVANCE(557); - if (lookahead == 'd') ADVANCE(575); - if (lookahead == 'e') ADVANCE(570); - if (lookahead == 'i') ADVANCE(572); - if (lookahead == 'o') ADVANCE(576); - if (lookahead == 'r') ADVANCE(566); - if (lookahead == 'w') ADVANCE(569); - if (lookahead == '|') ADVANCE(531); + if (lookahead == 'a') ADVANCE(483); + if (lookahead == 'c') ADVANCE(473); + if (lookahead == 'd') ADVANCE(491); + if (lookahead == 'e') ADVANCE(486); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == 'o') ADVANCE(492); + if (lookahead == 'r') ADVANCE(482); + if (lookahead == 'w') ADVANCE(485); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(111) if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); case 111: if (lookahead == '\n') ADVANCE(286); if (lookahead == '\r') ADVANCE(109); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); - 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); if (lookahead == '\\') ADVANCE(73); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(209); @@ -13386,7 +11412,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(219); if (lookahead == 'r') ADVANCE(208); if (lookahead == 'w') ADVANCE(211); - if (lookahead == '|') ADVANCE(531); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(111) @@ -13398,53 +11424,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(287); if (lookahead == '\r') ADVANCE(112); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); - if (lookahead == '*') ADVANCE(704); - if (lookahead == '+') ADVANCE(600); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(604); - if (lookahead == '.') ADVANCE(714); - if (lookahead == '/') ADVANCE(535); + if (lookahead == '*') ADVANCE(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(520); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); - if (lookahead == '[') ADVANCE(742); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); + if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(28); if (lookahead == '^') ADVANCE(198); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'c') ADVANCE(557); - if (lookahead == 'e') ADVANCE(570); - if (lookahead == 'i') ADVANCE(572); - if (lookahead == 'o') ADVANCE(576); - if (lookahead == 'r') ADVANCE(566); - if (lookahead == 'w') ADVANCE(569); - if (lookahead == '|') ADVANCE(531); + if (lookahead == 'a') ADVANCE(483); + if (lookahead == 'c') ADVANCE(473); + if (lookahead == 'e') ADVANCE(486); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == 'o') ADVANCE(492); + if (lookahead == 'r') ADVANCE(482); + if (lookahead == 'w') ADVANCE(485); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(114) if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); case 114: if (lookahead == '\n') ADVANCE(287); if (lookahead == '\r') ADVANCE(112); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); - if (lookahead == '*') ADVANCE(704); - if (lookahead == '+') ADVANCE(600); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(604); - if (lookahead == '.') ADVANCE(714); - if (lookahead == '/') ADVANCE(535); + if (lookahead == '*') ADVANCE(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(520); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); if (lookahead == '\\') ADVANCE(28); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(209); @@ -13454,7 +11480,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(219); if (lookahead == 'r') ADVANCE(208); if (lookahead == 'w') ADVANCE(211); - if (lookahead == '|') ADVANCE(531); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(114) @@ -13466,31 +11492,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(288); if (lookahead == '\r') ADVANCE(115); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); if (lookahead == '\\') ADVANCE(30); - if (lookahead == ']') ADVANCE(519); + if (lookahead == ']') ADVANCE(435); 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(431); + if (lookahead == '|') ADVANCE(447); + if (lookahead == '}') ADVANCE(433); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(116) @@ -13502,53 +11528,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(289); if (lookahead == '\r') ADVANCE(117); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); - 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); - if (lookahead == '[') ADVANCE(742); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); + if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(75); if (lookahead == '^') ADVANCE(198); - if (lookahead == 'a') ADVANCE(567); - if (lookahead == 'c') ADVANCE(557); - if (lookahead == 'e') ADVANCE(570); - if (lookahead == 'i') ADVANCE(572); - if (lookahead == 'o') ADVANCE(576); - if (lookahead == 'r') ADVANCE(566); - if (lookahead == 'w') ADVANCE(569); - if (lookahead == '|') ADVANCE(531); + if (lookahead == 'a') ADVANCE(483); + if (lookahead == 'c') ADVANCE(473); + if (lookahead == 'e') ADVANCE(486); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == 'o') ADVANCE(492); + if (lookahead == 'r') ADVANCE(482); + if (lookahead == 'w') ADVANCE(485); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(119) if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); case 119: if (lookahead == '\n') ADVANCE(289); if (lookahead == '\r') ADVANCE(117); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); - 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); if (lookahead == '\\') ADVANCE(75); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(209); @@ -13558,7 +11584,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(219); if (lookahead == 'r') ADVANCE(208); if (lookahead == 'w') ADVANCE(211); - if (lookahead == '|') ADVANCE(531); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(119) @@ -13570,53 +11596,53 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(290); if (lookahead == '\r') ADVANCE(120); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); 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(714); - if (lookahead == '/') ADVANCE(535); + if (lookahead == '*') ADVANCE(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(520); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); - if (lookahead == '[') ADVANCE(742); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); + if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(32); 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); - if (lookahead == '|') ADVANCE(531); + if (lookahead == 'a') ADVANCE(487); + if (lookahead == 'd') ADVANCE(491); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == 'o') ADVANCE(492); + if (lookahead == 'w') ADVANCE(485); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(122) if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); case 122: if (lookahead == '\n') ADVANCE(290); if (lookahead == '\r') ADVANCE(120); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); 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(714); - if (lookahead == '/') ADVANCE(535); + if (lookahead == '*') ADVANCE(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(520); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); if (lookahead == '\\') ADVANCE(32); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(213); @@ -13624,7 +11650,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(214); if (lookahead == 'o') ADVANCE(219); if (lookahead == 'w') ADVANCE(211); - if (lookahead == '|') ADVANCE(531); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(122) @@ -13636,52 +11662,52 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(291); if (lookahead == '\r') ADVANCE(123); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); - 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); - if (lookahead == '[') ADVANCE(742); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); + if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(34); if (lookahead == '^') ADVANCE(198); - if (lookahead == 'a') ADVANCE(571); - if (lookahead == 'd') ADVANCE(575); - if (lookahead == 'e') ADVANCE(574); - if (lookahead == 'i') ADVANCE(572); - if (lookahead == 'o') ADVANCE(576); - if (lookahead == 'w') ADVANCE(569); - if (lookahead == '|') ADVANCE(531); + if (lookahead == 'a') ADVANCE(487); + if (lookahead == 'd') ADVANCE(491); + if (lookahead == 'e') ADVANCE(490); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == 'o') ADVANCE(492); + if (lookahead == 'w') ADVANCE(485); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(125) if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); case 125: if (lookahead == '\n') ADVANCE(291); if (lookahead == '\r') ADVANCE(123); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); - 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); if (lookahead == '\\') ADVANCE(34); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(213); @@ -13690,7 +11716,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(214); if (lookahead == 'o') ADVANCE(219); if (lookahead == 'w') ADVANCE(211); - if (lookahead == '|') ADVANCE(531); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(125) @@ -13702,30 +11728,30 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(292); if (lookahead == '\r') ADVANCE(126); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); if (lookahead == '\\') ADVANCE(36); - if (lookahead == ']') ADVANCE(519); + if (lookahead == ']') ADVANCE(435); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(213); 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(431); + if (lookahead == '|') ADVANCE(447); + if (lookahead == '}') ADVANCE(433); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(127) @@ -13737,20 +11763,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(293); if (lookahead == '\r') ADVANCE(128); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(178); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '[') ADVANCE(742); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(443); + if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(38); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(213); @@ -13758,7 +11784,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(214); if (lookahead == 'o') ADVANCE(219); if (lookahead == 'w') ADVANCE(211); - if (lookahead == '|') ADVANCE(531); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(130) @@ -13767,19 +11793,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(293); if (lookahead == '\r') ADVANCE(128); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(527); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(443); if (lookahead == '\\') ADVANCE(38); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(213); @@ -13787,7 +11813,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(214); if (lookahead == 'o') ADVANCE(219); if (lookahead == 'w') ADVANCE(211); - if (lookahead == '|') ADVANCE(531); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(130) @@ -13799,59 +11825,57 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(294); if (lookahead == '\r') ADVANCE(131); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); 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(714); - if (lookahead == '/') ADVANCE(535); + if (lookahead == '*') ADVANCE(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); - if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); - if (lookahead == '[') ADVANCE(742); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(443); + if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(40); if (lookahead == '^') ADVANCE(198); - if (lookahead == 'a') ADVANCE(571); - if (lookahead == 'i') ADVANCE(572); - if (lookahead == 'o') ADVANCE(576); - if (lookahead == 'w') ADVANCE(569); - if (lookahead == '|') ADVANCE(531); + if (lookahead == 'a') ADVANCE(487); + if (lookahead == 'd') ADVANCE(491); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == 'o') ADVANCE(492); + if (lookahead == 'w') ADVANCE(485); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(133) if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); case 133: if (lookahead == '\n') ADVANCE(294); if (lookahead == '\r') ADVANCE(131); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); 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(714); - if (lookahead == '/') ADVANCE(535); + if (lookahead == '*') ADVANCE(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); - if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(443); 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); - if (lookahead == '|') ADVANCE(531); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(133) @@ -13863,57 +11887,59 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(295); if (lookahead == '\r') ADVANCE(134); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); - 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(301); + if (lookahead == '*') ADVANCE(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(520); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '[') ADVANCE(742); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); + if (lookahead == '[') ADVANCE(658); 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); - if (lookahead == '|') ADVANCE(531); + if (lookahead == 'a') ADVANCE(487); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == 'o') ADVANCE(492); + if (lookahead == 'w') ADVANCE(485); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(136) if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); case 136: if (lookahead == '\n') ADVANCE(295); if (lookahead == '\r') ADVANCE(134); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); - 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(301); + if (lookahead == '*') ADVANCE(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(520); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(527); + if (lookahead == ';') ADVANCE(299); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); 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); - if (lookahead == '|') ADVANCE(531); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(136) @@ -13925,51 +11951,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(296); if (lookahead == '\r') ADVANCE(137); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); - 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); - if (lookahead == '[') ADVANCE(742); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); + if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(44); if (lookahead == '^') ADVANCE(198); - if (lookahead == 'a') ADVANCE(571); - if (lookahead == 'e') ADVANCE(574); - if (lookahead == 'i') ADVANCE(572); - if (lookahead == 'o') ADVANCE(576); - if (lookahead == 'w') ADVANCE(569); - if (lookahead == '|') ADVANCE(531); + if (lookahead == 'a') ADVANCE(487); + if (lookahead == 'e') ADVANCE(490); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == 'o') ADVANCE(492); + if (lookahead == 'w') ADVANCE(485); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(139) if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); case 139: if (lookahead == '\n') ADVANCE(296); if (lookahead == '\r') ADVANCE(137); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); - 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); if (lookahead == '\\') ADVANCE(44); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(213); @@ -13977,7 +12003,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(214); if (lookahead == 'o') ADVANCE(219); if (lookahead == 'w') ADVANCE(211); - if (lookahead == '|') ADVANCE(531); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(139) @@ -13989,55 +12015,55 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(297); if (lookahead == '\r') ADVANCE(140); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); - 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(527); - if (lookahead == '[') ADVANCE(742); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(443); + if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(46); if (lookahead == '^') ADVANCE(198); - if (lookahead == 'a') ADVANCE(571); - if (lookahead == 'i') ADVANCE(572); - if (lookahead == 'o') ADVANCE(576); - if (lookahead == 'w') ADVANCE(569); - if (lookahead == '|') ADVANCE(531); + if (lookahead == 'a') ADVANCE(487); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == 'o') ADVANCE(492); + if (lookahead == 'w') ADVANCE(485); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(142) if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); case 142: if (lookahead == '\n') ADVANCE(297); if (lookahead == '\r') ADVANCE(140); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); - 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(527); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(443); if (lookahead == '\\') ADVANCE(46); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(213); if (lookahead == 'i') ADVANCE(214); if (lookahead == 'o') ADVANCE(219); if (lookahead == 'w') ADVANCE(211); - if (lookahead == '|') ADVANCE(531); + if (lookahead == '|') ADVANCE(447); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(142) @@ -14049,11 +12075,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(298); if (lookahead == '\r') ADVANCE(143); if (lookahead == '!') ADVANCE(169); - if (lookahead == '"') ADVANCE(509); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '"') ADVANCE(425); + if (lookahead == '#') ADVANCE(660); if (lookahead == '%') ADVANCE(174); if (lookahead == '&') ADVANCE(151); - if (lookahead == '\'') ADVANCE(511); + if (lookahead == '\'') ADVANCE(427); if (lookahead == ')') ADVANCE(301); if (lookahead == '*') ADVANCE(154); if (lookahead == '+') ADVANCE(156); @@ -14065,74 +12091,74 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '>') ADVANCE(168); if (lookahead == '@') ADVANCE(166); if (lookahead == '\\') ADVANCE(55); - if (lookahead == ']') ADVANCE(519); + if (lookahead == ']') ADVANCE(435); if (lookahead == '^') ADVANCE(173); if (lookahead == '{') ADVANCE(230); if (lookahead == '|') ADVANCE(172); - if (lookahead == '}') ADVANCE(517); + if (lookahead == '}') ADVANCE(433); if (lookahead == '~') ADVANCE(192); if (lookahead == '\t' || lookahead == ' ') SKIP(144) if (sym_keyword_character_set_3(lookahead)) ADVANCE(176); END_STATE(); case 145: - if (lookahead == '!') ADVANCE(500); - if (lookahead == '%') ADVANCE(505); - if (lookahead == '&') ADVANCE(489); - if (lookahead == '*') ADVANCE(490); - if (lookahead == '+') ADVANCE(492); - if (lookahead == '-') ADVANCE(494); - if (lookahead == '.') ADVANCE(496); - if (lookahead == '/') ADVANCE(497); - if (lookahead == ':') ADVANCE(628); - if (lookahead == '<') ADVANCE(508); - if (lookahead == '=') ADVANCE(501); - if (lookahead == '>') ADVANCE(499); - if (lookahead == '@') ADVANCE(487); + if (lookahead == '!') ADVANCE(416); + if (lookahead == '%') ADVANCE(421); + if (lookahead == '&') ADVANCE(405); + if (lookahead == '*') ADVANCE(406); + if (lookahead == '+') ADVANCE(408); + if (lookahead == '-') ADVANCE(410); + if (lookahead == '.') ADVANCE(412); + if (lookahead == '/') ADVANCE(413); + if (lookahead == ':') ADVANCE(544); + if (lookahead == '<') ADVANCE(424); + if (lookahead == '=') ADVANCE(417); + if (lookahead == '>') ADVANCE(415); + if (lookahead == '@') ADVANCE(403); if (lookahead == '\\') ADVANCE(193); - if (lookahead == '^') ADVANCE(504); + if (lookahead == '^') ADVANCE(420); if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(503); + if (lookahead == '|') ADVANCE(419); if (lookahead == '~') ADVANCE(183); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(586); - if (sym_keyword_character_set_3(lookahead)) ADVANCE(507); + lookahead == ' ') ADVANCE(502); + if (sym_keyword_character_set_3(lookahead)) ADVANCE(423); END_STATE(); case 146: - if (lookahead == '!') ADVANCE(500); - if (lookahead == '%') ADVANCE(505); - if (lookahead == '&') ADVANCE(489); - if (lookahead == '*') ADVANCE(490); - if (lookahead == '+') ADVANCE(492); - if (lookahead == '-') ADVANCE(494); - if (lookahead == '.') ADVANCE(496); - if (lookahead == '/') ADVANCE(497); - if (lookahead == ':') ADVANCE(628); - if (lookahead == '<') ADVANCE(508); - if (lookahead == '=') ADVANCE(501); - if (lookahead == '>') ADVANCE(499); - if (lookahead == '@') ADVANCE(487); + if (lookahead == '!') ADVANCE(416); + if (lookahead == '%') ADVANCE(421); + if (lookahead == '&') ADVANCE(405); + if (lookahead == '*') ADVANCE(406); + if (lookahead == '+') ADVANCE(408); + if (lookahead == '-') ADVANCE(410); + if (lookahead == '.') ADVANCE(412); + if (lookahead == '/') ADVANCE(413); + if (lookahead == ':') ADVANCE(544); + if (lookahead == '<') ADVANCE(424); + if (lookahead == '=') ADVANCE(417); + if (lookahead == '>') ADVANCE(415); + if (lookahead == '@') ADVANCE(403); if (lookahead == '\\') ADVANCE(193); - if (lookahead == '^') ADVANCE(504); + if (lookahead == '^') ADVANCE(420); if (lookahead == '{') ADVANCE(229); - if (lookahead == '|') ADVANCE(503); + if (lookahead == '|') ADVANCE(419); if (lookahead == '~') ADVANCE(183); - if (sym_keyword_character_set_3(lookahead)) ADVANCE(507); + if (sym_keyword_character_set_3(lookahead)) ADVANCE(423); END_STATE(); case 147: if (lookahead == '"') ADVANCE(148); END_STATE(); case 148: - if (lookahead == '"') ADVANCE(514); + if (lookahead == '"') ADVANCE(430); END_STATE(); case 149: if (lookahead == '&') ADVANCE(166); if (lookahead == ':') ADVANCE(243); END_STATE(); case 150: - if (lookahead == '&') ADVANCE(643); + if (lookahead == '&') ADVANCE(559); END_STATE(); case 151: if (lookahead == '&') ADVANCE(149); @@ -14142,7 +12168,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\'') ADVANCE(153); END_STATE(); case 153: - if (lookahead == '\'') ADVANCE(513); + if (lookahead == '\'') ADVANCE(429); END_STATE(); case 154: if (lookahead == '*') ADVANCE(166); @@ -14182,7 +12208,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(243); END_STATE(); case 162: - if (lookahead == '/') ADVANCE(487); + if (lookahead == '/') ADVANCE(403); END_STATE(); case 163: if (lookahead == '/') ADVANCE(166); @@ -14192,8 +12218,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(243); END_STATE(); case 165: - if (lookahead == '0') ADVANCE(477); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); + if (lookahead == '0') ADVANCE(393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); END_STATE(); case 166: if (lookahead == ':') ADVANCE(243); @@ -14205,7 +12231,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 168: if (lookahead == ':') ADVANCE(243); if (lookahead == '=') ADVANCE(166); - if (lookahead == '>') ADVANCE(590); + if (lookahead == '>') ADVANCE(506); END_STATE(); case 169: if (lookahead == ':') ADVANCE(243); @@ -14244,77 +12270,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (sym_keyword_character_set_4(lookahead)) ADVANCE(176); END_STATE(); case 177: - if (lookahead == ':') ADVANCE(627); + if (lookahead == ':') ADVANCE(543); END_STATE(); case 178: - if (lookahead == ':') ADVANCE(627); + if (lookahead == ':') ADVANCE(543); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(586); + lookahead == ' ') ADVANCE(502); END_STATE(); case 179: - if (lookahead == '<') ADVANCE(666); - if (lookahead == '~') ADVANCE(670); + if (lookahead == '<') ADVANCE(582); + if (lookahead == '~') ADVANCE(586); END_STATE(); case 180: - if (lookahead == '=') ADVANCE(653); + if (lookahead == '=') ADVANCE(569); END_STATE(); case 181: - if (lookahead == '>') ADVANCE(487); + if (lookahead == '>') ADVANCE(403); END_STATE(); case 182: if (lookahead == '>') ADVANCE(166); END_STATE(); case 183: - if (lookahead == '>') ADVANCE(502); + if (lookahead == '>') ADVANCE(418); if (lookahead == '~') ADVANCE(232); END_STATE(); case 184: - if (lookahead == '>') ADVANCE(681); + if (lookahead == '>') ADVANCE(597); END_STATE(); case 185: - if (lookahead == '>') ADVANCE(669); + if (lookahead == '>') ADVANCE(585); END_STATE(); case 186: - if (lookahead == '>') ADVANCE(710); + if (lookahead == '>') ADVANCE(626); END_STATE(); case 187: - if (lookahead == '>') ADVANCE(677); + if (lookahead == '>') ADVANCE(593); END_STATE(); case 188: - if (lookahead == '>') ADVANCE(677); + if (lookahead == '>') ADVANCE(593); if (lookahead == '~') ADVANCE(235); END_STATE(); case 189: - if (lookahead == '>') ADVANCE(680); + if (lookahead == '>') ADVANCE(596); END_STATE(); case 190: - if (lookahead == '>') ADVANCE(668); + if (lookahead == '>') ADVANCE(584); END_STATE(); case 191: - if (lookahead == '>') ADVANCE(589); + if (lookahead == '>') ADVANCE(505); END_STATE(); case 192: if (lookahead == '>') ADVANCE(171); if (lookahead == '~') ADVANCE(233); END_STATE(); case 193: - if (lookahead == '\\') ADVANCE(487); + if (lookahead == '\\') ADVANCE(403); END_STATE(); case 194: - if (lookahead == '\\') ADVANCE(480); + if (lookahead == '\\') ADVANCE(396); if (lookahead != 0 && - lookahead != '\n') ADVANCE(479); + lookahead != '\n') ADVANCE(395); END_STATE(); case 195: - if (lookahead == '^') ADVANCE(487); + if (lookahead == '^') ADVANCE(403); END_STATE(); case 196: if (lookahead == '^') ADVANCE(166); END_STATE(); case 197: - if (lookahead == '^') ADVANCE(686); + if (lookahead == '^') ADVANCE(602); END_STATE(); case 198: if (lookahead == '^') ADVANCE(197); @@ -14329,16 +12355,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'c') ADVANCE(210); END_STATE(); case 202: - if (lookahead == 'd') ADVANCE(646); + if (lookahead == 'd') ADVANCE(562); END_STATE(); case 203: - if (lookahead == 'd') ADVANCE(731); + if (lookahead == 'd') ADVANCE(647); END_STATE(); case 204: - if (lookahead == 'e') ADVANCE(727); + if (lookahead == 'e') ADVANCE(643); END_STATE(); case 205: - if (lookahead == 'e') ADVANCE(737); + if (lookahead == 'e') ADVANCE(653); END_STATE(); case 206: if (lookahead == 'e') ADVANCE(215); @@ -14354,7 +12380,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(202); END_STATE(); case 210: - if (lookahead == 'h') ADVANCE(719); + if (lookahead == 'h') ADVANCE(635); END_STATE(); case 211: if (lookahead == 'h') ADVANCE(206); @@ -14367,25 +12393,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(202); END_STATE(); case 214: - if (lookahead == 'n') ADVANCE(682); + if (lookahead == 'n') ADVANCE(598); END_STATE(); case 215: - if (lookahead == 'n') ADVANCE(623); + if (lookahead == 'n') ADVANCE(539); END_STATE(); case 216: if (lookahead == 'n') ADVANCE(203); END_STATE(); case 217: - if (lookahead == 'o') ADVANCE(723); + if (lookahead == 'o') ADVANCE(639); END_STATE(); case 218: if (lookahead == 'o') ADVANCE(224); END_STATE(); case 219: - if (lookahead == 'r') ADVANCE(638); + if (lookahead == 'r') ADVANCE(554); END_STATE(); case 220: - if (lookahead == 'r') ADVANCE(715); + if (lookahead == 'r') ADVANCE(631); END_STATE(); case 221: if (lookahead == 's') ADVANCE(200); @@ -14397,7 +12423,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 't') ADVANCE(201); END_STATE(); case 224: - if (lookahead == 't') ADVANCE(614); + if (lookahead == 't') ADVANCE(530); END_STATE(); case 225: if (lookahead == 't') ADVANCE(207); @@ -14409,7 +12435,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '{') ADVANCE(254); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(539); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(455); END_STATE(); case 228: if (lookahead == '{') ADVANCE(254); @@ -14418,28 +12444,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(256); END_STATE(); case 229: - if (lookahead == '}') ADVANCE(487); + if (lookahead == '}') ADVANCE(403); END_STATE(); case 230: if (lookahead == '}') ADVANCE(166); END_STATE(); case 231: - if (lookahead == '}') ADVANCE(537); + if (lookahead == '}') ADVANCE(453); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(231); END_STATE(); case 232: - if (lookahead == '~') ADVANCE(487); + if (lookahead == '~') ADVANCE(403); END_STATE(); case 233: if (lookahead == '~') ADVANCE(166); END_STATE(); case 234: - if (lookahead == '~') ADVANCE(613); + if (lookahead == '~') ADVANCE(529); END_STATE(); case 235: - if (lookahead == '~') ADVANCE(612); + if (lookahead == '~') ADVANCE(528); END_STATE(); case 236: if (lookahead == '~') ADVANCE(235); @@ -14447,12 +12473,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 237: if (lookahead == '+' || lookahead == '-') ADVANCE(165); - if (lookahead == '0') ADVANCE(477); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(478); + if (lookahead == '0') ADVANCE(393); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(394); END_STATE(); case 238: if (lookahead == '<' || - lookahead == '~') ADVANCE(487); + lookahead == '~') ADVANCE(403); if (lookahead == '>') ADVANCE(181); END_STATE(); case 239: @@ -14462,11 +12488,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 240: if (lookahead == '0' || - lookahead == '1') ADVANCE(468); + lookahead == '1') ADVANCE(384); END_STATE(); case 241: if (lookahead == '0' || - lookahead == '1') ADVANCE(474); + lookahead == '1') ADVANCE(390); END_STATE(); case 242: if (lookahead == '-' || @@ -14481,47 +12507,47 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(585); + lookahead == ' ') ADVANCE(501); END_STATE(); case 244: if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') ADVANCE(244); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(465); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(381); END_STATE(); case 245: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(469); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(385); END_STATE(); case 246: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(475); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(391); END_STATE(); case 247: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(383); END_STATE(); case 248: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(473); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(389); END_STATE(); case 249: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(478); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(394); END_STATE(); case 250: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(388); END_STATE(); case 251: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(386); END_STATE(); case 252: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(476); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(392); END_STATE(); case 253: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(537); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(453); END_STATE(); case 254: if (('0' <= lookahead && lookahead <= '9') || @@ -14542,33 +12568,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(268); if (lookahead == '\n') ADVANCE(269); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '!') ADVANCE(606); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(743); - if (lookahead == '%') ADVANCE(594); - if (lookahead == '&') ADVANCE(596); - if (lookahead == '\'') ADVANCE(512); + if (lookahead == '!') ADVANCE(522); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(659); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(512); + if (lookahead == '\'') ADVANCE(428); if (lookahead == '(') ADVANCE(300); if (lookahead == ')') ADVANCE(301); - if (lookahead == '*') ADVANCE(703); - if (lookahead == '+') ADVANCE(599); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(602); - if (lookahead == '.') ADVANCE(712); - if (lookahead == '/') ADVANCE(533); - if (lookahead == '0') ADVANCE(466); + if (lookahead == '*') ADVANCE(619); + if (lookahead == '+') ADVANCE(515); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(518); + if (lookahead == '.') ADVANCE(628); + if (lookahead == '/') ADVANCE(449); + if (lookahead == '0') ADVANCE(382); if (lookahead == ':') ADVANCE(146); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(521); - if (lookahead == '=') ADVANCE(630); - if (lookahead == '>') ADVANCE(525); + if (lookahead == '<') ADVANCE(437); + if (lookahead == '=') ADVANCE(546); + if (lookahead == '>') ADVANCE(441); if (lookahead == '?') ADVANCE(194); - if (lookahead == '@') ADVANCE(618); - if (lookahead == '[') ADVANCE(518); + if (lookahead == '@') ADVANCE(534); + if (lookahead == '[') ADVANCE(434); if (lookahead == '\\') ADVANCE(4); - if (lookahead == ']') ADVANCE(519); - if (lookahead == '^') ADVANCE(609); - if (lookahead == '_') ADVANCE(406); + if (lookahead == ']') ADVANCE(435); + if (lookahead == '^') ADVANCE(525); if (lookahead == 'a') ADVANCE(317); if (lookahead == 'c') ADVANCE(305); if (lookahead == 'd') ADVANCE(328); @@ -14580,14 +12605,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'r') ADVANCE(314); if (lookahead == 't') ADVANCE(330); if (lookahead == 'w') ADVANCE(318); - if (lookahead == '{') ADVANCE(516); - if (lookahead == '|') ADVANCE(530); - if (lookahead == '}') ADVANCE(517); - if (lookahead == '~') ADVANCE(540); + if (lookahead == '{') ADVANCE(432); + if (lookahead == '|') ADVANCE(446); + if (lookahead == '}') ADVANCE(433); + if (lookahead == '~') ADVANCE(456); if (lookahead == 11823) ADVANCE(377); if (lookahead == '\t' || lookahead == ' ') SKIP(257) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(383); if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); if (sym_keyword_character_set_2(lookahead)) ADVANCE(176); END_STATE(); @@ -14595,33 +12620,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(268); if (lookahead == '\n') ADVANCE(272); if (lookahead == '\r') ADVANCE(76); - if (lookahead == '!') ADVANCE(607); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '%') ADVANCE(593); - if (lookahead == '&') ADVANCE(597); - if (lookahead == '\'') ADVANCE(512); + if (lookahead == '!') ADVANCE(523); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(660); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(513); + if (lookahead == '\'') ADVANCE(428); if (lookahead == '(') ADVANCE(300); if (lookahead == ')') ADVANCE(301); - if (lookahead == '*') ADVANCE(704); - if (lookahead == '+') ADVANCE(600); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(604); - if (lookahead == '.') ADVANCE(713); - if (lookahead == '/') ADVANCE(532); - if (lookahead == '0') ADVANCE(466); + if (lookahead == '*') ADVANCE(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(520); + if (lookahead == '.') ADVANCE(629); + if (lookahead == '/') ADVANCE(448); + if (lookahead == '0') ADVANCE(382); if (lookahead == ':') ADVANCE(145); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(522); - if (lookahead == '=') ADVANCE(633); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '<') ADVANCE(438); + if (lookahead == '=') ADVANCE(549); + if (lookahead == '>') ADVANCE(444); if (lookahead == '?') ADVANCE(194); - if (lookahead == '@') ADVANCE(617); - if (lookahead == '[') ADVANCE(518); + if (lookahead == '@') ADVANCE(533); + if (lookahead == '[') ADVANCE(434); if (lookahead == '\\') ADVANCE(6); - if (lookahead == ']') ADVANCE(519); - if (lookahead == '^') ADVANCE(611); - if (lookahead == '_') ADVANCE(442); + if (lookahead == ']') ADVANCE(435); + if (lookahead == '^') ADVANCE(527); if (lookahead == 'a') ADVANCE(361); if (lookahead == 'f') ADVANCE(341); if (lookahead == 'i') ADVANCE(362); @@ -14629,47 +12653,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(366); if (lookahead == 't') ADVANCE(367); if (lookahead == 'w') ADVANCE(355); - if (lookahead == '{') ADVANCE(515); - if (lookahead == '|') ADVANCE(531); - if (lookahead == '}') ADVANCE(517); - if (lookahead == '~') ADVANCE(541); + if (lookahead == '{') ADVANCE(431); + if (lookahead == '|') ADVANCE(447); + if (lookahead == '}') ADVANCE(433); + if (lookahead == '~') ADVANCE(457); if (lookahead == '\t' || lookahead == ' ') SKIP(259) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(383); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(381); if (aux_sym_identifier_token1_character_set_3(lookahead)) ADVANCE(377); END_STATE(); case 259: if (eof) ADVANCE(268); if (lookahead == '\n') ADVANCE(272); if (lookahead == '\r') ADVANCE(76); - if (lookahead == '!') ADVANCE(607); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '%') ADVANCE(593); - if (lookahead == '&') ADVANCE(597); - if (lookahead == '\'') ADVANCE(512); + if (lookahead == '!') ADVANCE(523); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(660); + if (lookahead == '%') ADVANCE(509); + if (lookahead == '&') ADVANCE(513); + if (lookahead == '\'') ADVANCE(428); if (lookahead == '(') ADVANCE(300); if (lookahead == ')') ADVANCE(301); - if (lookahead == '*') ADVANCE(704); - if (lookahead == '+') ADVANCE(600); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(604); - if (lookahead == '.') ADVANCE(713); - if (lookahead == '/') ADVANCE(532); - if (lookahead == '0') ADVANCE(466); + if (lookahead == '*') ADVANCE(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(520); + if (lookahead == '.') ADVANCE(629); + if (lookahead == '/') ADVANCE(448); + if (lookahead == '0') ADVANCE(382); if (lookahead == ':') ADVANCE(146); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(522); - if (lookahead == '=') ADVANCE(633); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '<') ADVANCE(438); + if (lookahead == '=') ADVANCE(549); + if (lookahead == '>') ADVANCE(444); if (lookahead == '?') ADVANCE(194); - if (lookahead == '@') ADVANCE(617); - if (lookahead == '[') ADVANCE(518); + if (lookahead == '@') ADVANCE(533); + if (lookahead == '[') ADVANCE(434); if (lookahead == '\\') ADVANCE(6); - if (lookahead == ']') ADVANCE(519); - if (lookahead == '^') ADVANCE(611); - if (lookahead == '_') ADVANCE(442); + if (lookahead == ']') ADVANCE(435); + if (lookahead == '^') ADVANCE(527); if (lookahead == 'a') ADVANCE(361); if (lookahead == 'f') ADVANCE(341); if (lookahead == 'i') ADVANCE(362); @@ -14677,47 +12700,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(366); if (lookahead == 't') ADVANCE(367); if (lookahead == 'w') ADVANCE(355); - if (lookahead == '{') ADVANCE(515); - if (lookahead == '|') ADVANCE(531); - if (lookahead == '}') ADVANCE(517); - if (lookahead == '~') ADVANCE(541); + if (lookahead == '{') ADVANCE(431); + if (lookahead == '|') ADVANCE(447); + if (lookahead == '}') ADVANCE(433); + if (lookahead == '~') ADVANCE(457); if (lookahead == '\t' || lookahead == ' ') SKIP(259) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(465); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(383); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(381); if (aux_sym_identifier_token1_character_set_3(lookahead)) ADVANCE(377); END_STATE(); case 260: if (eof) ADVANCE(268); if (lookahead == '\n') ADVANCE(275); if (lookahead == '\r') ADVANCE(83); - if (lookahead == '!') ADVANCE(606); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '%') ADVANCE(594); - if (lookahead == '&') ADVANCE(596); - if (lookahead == '\'') ADVANCE(512); - if (lookahead == '(') ADVANCE(741); + if (lookahead == '!') ADVANCE(522); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(660); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(512); + if (lookahead == '\'') ADVANCE(428); + if (lookahead == '(') ADVANCE(657); if (lookahead == ')') ADVANCE(301); - if (lookahead == '*') ADVANCE(703); - if (lookahead == '+') ADVANCE(599); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(602); - if (lookahead == '.') ADVANCE(712); - if (lookahead == '/') ADVANCE(533); - if (lookahead == '0') ADVANCE(466); + if (lookahead == '*') ADVANCE(619); + if (lookahead == '+') ADVANCE(515); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(518); + if (lookahead == '.') ADVANCE(628); + if (lookahead == '/') ADVANCE(449); + if (lookahead == '0') ADVANCE(382); if (lookahead == ':') ADVANCE(146); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(521); - if (lookahead == '=') ADVANCE(630); - if (lookahead == '>') ADVANCE(526); + if (lookahead == '<') ADVANCE(437); + if (lookahead == '=') ADVANCE(546); + if (lookahead == '>') ADVANCE(442); if (lookahead == '?') ADVANCE(194); - if (lookahead == '@') ADVANCE(618); - if (lookahead == '[') ADVANCE(742); + if (lookahead == '@') ADVANCE(534); + if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(519); - if (lookahead == '^') ADVANCE(609); - if (lookahead == '_') ADVANCE(406); + if (lookahead == ']') ADVANCE(435); + if (lookahead == '^') ADVANCE(525); if (lookahead == 'a') ADVANCE(324); if (lookahead == 'd') ADVANCE(328); if (lookahead == 'f') ADVANCE(304); @@ -14726,15 +12748,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(329); if (lookahead == 't') ADVANCE(330); if (lookahead == 'w') ADVANCE(318); - if (lookahead == '{') ADVANCE(516); - if (lookahead == '|') ADVANCE(530); - if (lookahead == '}') ADVANCE(517); - if (lookahead == '~') ADVANCE(540); + if (lookahead == '{') ADVANCE(432); + if (lookahead == '|') ADVANCE(446); + if (lookahead == '}') ADVANCE(433); + if (lookahead == '~') ADVANCE(456); if (lookahead == 11823) ADVANCE(377); if (lookahead == '\t' || lookahead == ' ') SKIP(261) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(383); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(380); if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); @@ -14742,33 +12764,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (eof) ADVANCE(268); if (lookahead == '\n') ADVANCE(275); if (lookahead == '\r') ADVANCE(83); - if (lookahead == '!') ADVANCE(606); - if (lookahead == '"') ADVANCE(510); - if (lookahead == '#') ADVANCE(744); - if (lookahead == '%') ADVANCE(594); - if (lookahead == '&') ADVANCE(596); - if (lookahead == '\'') ADVANCE(512); + if (lookahead == '!') ADVANCE(522); + if (lookahead == '"') ADVANCE(426); + if (lookahead == '#') ADVANCE(660); + if (lookahead == '%') ADVANCE(510); + if (lookahead == '&') ADVANCE(512); + if (lookahead == '\'') ADVANCE(428); if (lookahead == '(') ADVANCE(300); if (lookahead == ')') ADVANCE(301); - if (lookahead == '*') ADVANCE(703); - if (lookahead == '+') ADVANCE(599); - if (lookahead == ',') ADVANCE(584); - if (lookahead == '-') ADVANCE(602); - if (lookahead == '.') ADVANCE(712); - if (lookahead == '/') ADVANCE(533); - if (lookahead == '0') ADVANCE(466); + if (lookahead == '*') ADVANCE(619); + if (lookahead == '+') ADVANCE(515); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(518); + if (lookahead == '.') ADVANCE(628); + if (lookahead == '/') ADVANCE(449); + if (lookahead == '0') ADVANCE(382); if (lookahead == ':') ADVANCE(146); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(521); - if (lookahead == '=') ADVANCE(630); - if (lookahead == '>') ADVANCE(526); + if (lookahead == '<') ADVANCE(437); + if (lookahead == '=') ADVANCE(546); + if (lookahead == '>') ADVANCE(442); if (lookahead == '?') ADVANCE(194); - if (lookahead == '@') ADVANCE(618); - if (lookahead == '[') ADVANCE(518); + if (lookahead == '@') ADVANCE(534); + if (lookahead == '[') ADVANCE(434); if (lookahead == '\\') ADVANCE(10); - if (lookahead == ']') ADVANCE(519); - if (lookahead == '^') ADVANCE(609); - if (lookahead == '_') ADVANCE(406); + if (lookahead == ']') ADVANCE(435); + if (lookahead == '^') ADVANCE(525); if (lookahead == 'a') ADVANCE(324); if (lookahead == 'd') ADVANCE(328); if (lookahead == 'f') ADVANCE(304); @@ -14777,15 +12798,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(329); if (lookahead == 't') ADVANCE(330); if (lookahead == 'w') ADVANCE(318); - if (lookahead == '{') ADVANCE(516); - if (lookahead == '|') ADVANCE(530); - if (lookahead == '}') ADVANCE(517); - if (lookahead == '~') ADVANCE(540); + if (lookahead == '{') ADVANCE(432); + if (lookahead == '|') ADVANCE(446); + if (lookahead == '}') ADVANCE(433); + if (lookahead == '~') ADVANCE(456); if (lookahead == 11823) ADVANCE(377); if (lookahead == '\t' || lookahead == ' ') SKIP(261) - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(467); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(464); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(383); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(380); if (aux_sym_identifier_token1_character_set_2(lookahead)) ADVANCE(340); if (sym_keyword_character_set_1(lookahead)) ADVANCE(176); END_STATE(); @@ -14794,24 +12815,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(284); if (lookahead == '\r') ADVANCE(104); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); if (lookahead == '(') ADVANCE(300); 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(178); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); - if (lookahead == '[') ADVANCE(742); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); + if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(24); - if (lookahead == ']') ADVANCE(519); + if (lookahead == ']') ADVANCE(435); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(209); if (lookahead == 'c') ADVANCE(199); @@ -14821,9 +12842,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(219); if (lookahead == 'r') ADVANCE(208); if (lookahead == 'w') ADVANCE(211); - if (lookahead == '{') ADVANCE(515); - if (lookahead == '|') ADVANCE(531); - if (lookahead == '}') ADVANCE(517); + if (lookahead == '{') ADVANCE(431); + if (lookahead == '|') ADVANCE(447); + if (lookahead == '}') ADVANCE(433); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(263) @@ -14833,23 +12854,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(284); if (lookahead == '\r') ADVANCE(104); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); if (lookahead == '&') ADVANCE(150); if (lookahead == '(') ADVANCE(300); 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); if (lookahead == '\\') ADVANCE(24); - if (lookahead == ']') ADVANCE(519); + if (lookahead == ']') ADVANCE(435); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(209); if (lookahead == 'c') ADVANCE(199); @@ -14859,9 +12880,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'o') ADVANCE(219); if (lookahead == 'r') ADVANCE(208); if (lookahead == 'w') ADVANCE(211); - if (lookahead == '{') ADVANCE(515); - if (lookahead == '|') ADVANCE(531); - if (lookahead == '}') ADVANCE(517); + if (lookahead == '{') ADVANCE(431); + if (lookahead == '|') ADVANCE(447); + if (lookahead == '}') ADVANCE(433); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(263) @@ -14871,68 +12892,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(288); if (lookahead == '\r') ADVANCE(115); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); - if (lookahead == '[') ADVANCE(742); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); + if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(30); - if (lookahead == ']') ADVANCE(519); + if (lookahead == ']') ADVANCE(435); 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); - if (lookahead == '{') ADVANCE(515); - if (lookahead == '|') ADVANCE(531); - if (lookahead == '}') ADVANCE(517); + if (lookahead == 'a') ADVANCE(487); + if (lookahead == 'd') ADVANCE(491); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == 'o') ADVANCE(492); + if (lookahead == 'w') ADVANCE(485); + if (lookahead == '{') ADVANCE(431); + if (lookahead == '|') ADVANCE(447); + if (lookahead == '}') ADVANCE(433); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(265) if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); case 265: if (eof) ADVANCE(268); if (lookahead == '\n') ADVANCE(288); if (lookahead == '\r') ADVANCE(115); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); if (lookahead == '\\') ADVANCE(30); - if (lookahead == ']') ADVANCE(519); + if (lookahead == ']') ADVANCE(435); 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(431); + if (lookahead == '|') ADVANCE(447); + if (lookahead == '}') ADVANCE(433); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(265) @@ -14942,66 +12963,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\n') ADVANCE(292); if (lookahead == '\r') ADVANCE(126); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); - if (lookahead == '[') ADVANCE(742); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); + if (lookahead == '[') ADVANCE(658); if (lookahead == '\\') ADVANCE(36); - if (lookahead == ']') ADVANCE(519); + if (lookahead == ']') ADVANCE(435); if (lookahead == '^') ADVANCE(198); - if (lookahead == 'a') ADVANCE(571); - if (lookahead == 'i') ADVANCE(572); - if (lookahead == 'o') ADVANCE(576); - if (lookahead == 'w') ADVANCE(569); - if (lookahead == '{') ADVANCE(515); - if (lookahead == '|') ADVANCE(531); - if (lookahead == '}') ADVANCE(517); + if (lookahead == 'a') ADVANCE(487); + if (lookahead == 'i') ADVANCE(488); + if (lookahead == 'o') ADVANCE(492); + if (lookahead == 'w') ADVANCE(485); + if (lookahead == '{') ADVANCE(431); + if (lookahead == '|') ADVANCE(447); + if (lookahead == '}') ADVANCE(433); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(267) if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); case 267: if (eof) ADVANCE(268); if (lookahead == '\n') ADVANCE(292); if (lookahead == '\r') ADVANCE(126); if (lookahead == '!') ADVANCE(180); - if (lookahead == '#') ADVANCE(744); + if (lookahead == '#') ADVANCE(660); 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(620); + if (lookahead == '+') ADVANCE(516); + if (lookahead == ',') ADVANCE(500); + if (lookahead == '-') ADVANCE(519); + if (lookahead == '.') ADVANCE(630); + if (lookahead == '/') ADVANCE(451); if (lookahead == ':') ADVANCE(177); if (lookahead == ';') ADVANCE(299); - if (lookahead == '<') ADVANCE(523); - if (lookahead == '=') ADVANCE(632); - if (lookahead == '>') ADVANCE(528); + if (lookahead == '<') ADVANCE(439); + if (lookahead == '=') ADVANCE(548); + if (lookahead == '>') ADVANCE(444); if (lookahead == '\\') ADVANCE(36); - if (lookahead == ']') ADVANCE(519); + if (lookahead == ']') ADVANCE(435); if (lookahead == '^') ADVANCE(198); if (lookahead == 'a') ADVANCE(213); 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(431); + if (lookahead == '|') ADVANCE(447); + if (lookahead == '}') ADVANCE(433); if (lookahead == '~') ADVANCE(187); if (lookahead == '\t' || lookahead == ' ') SKIP(267) @@ -15209,7 +13230,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); if (lookahead == 'a') ADVANCE(323); - if (lookahead == 'n') ADVANCE(735); + if (lookahead == 'n') ADVANCE(651); if (lookahead == '!' || lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_4(lookahead)) ADVANCE(340); @@ -15245,7 +13266,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); - if (lookahead == 'd') ADVANCE(647); + if (lookahead == 'd') ADVANCE(563); if (lookahead == '!' || lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); @@ -15254,7 +13275,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); - if (lookahead == 'd') ADVANCE(732); + if (lookahead == 'd') ADVANCE(648); if (lookahead == '!' || lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); @@ -15263,7 +13284,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); - if (lookahead == 'e') ADVANCE(728); + if (lookahead == 'e') ADVANCE(644); if (lookahead == '!' || lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); @@ -15272,7 +13293,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); - if (lookahead == 'e') ADVANCE(481); + if (lookahead == 'e') ADVANCE(397); if (lookahead == '!' || lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); @@ -15281,7 +13302,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); - if (lookahead == 'e') ADVANCE(483); + if (lookahead == 'e') ADVANCE(399); if (lookahead == '!' || lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); @@ -15290,7 +13311,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); - if (lookahead == 'e') ADVANCE(738); + if (lookahead == 'e') ADVANCE(654); if (lookahead == '!' || lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); @@ -15345,7 +13366,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); - if (lookahead == 'h') ADVANCE(720); + if (lookahead == 'h') ADVANCE(636); if (lookahead == '!' || lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); @@ -15374,7 +13395,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); - if (lookahead == 'l') ADVANCE(485); + if (lookahead == 'l') ADVANCE(401); if (lookahead == '!' || lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); @@ -15401,7 +13422,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); - if (lookahead == 'n') ADVANCE(683); + if (lookahead == 'n') ADVANCE(599); if (lookahead == '!' || lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); @@ -15410,7 +13431,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); - if (lookahead == 'n') ADVANCE(624); + if (lookahead == 'n') ADVANCE(540); if (lookahead == '!' || lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); @@ -15428,7 +13449,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); - if (lookahead == 'o') ADVANCE(724); + if (lookahead == 'o') ADVANCE(640); if (lookahead == '!' || lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); @@ -15437,7 +13458,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); - if (lookahead == 'r') ADVANCE(639); + if (lookahead == 'r') ADVANCE(555); if (lookahead == '!' || lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); @@ -15455,7 +13476,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); - if (lookahead == 'r') ADVANCE(716); + if (lookahead == 'r') ADVANCE(632); if (lookahead == '!' || lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); @@ -15500,7 +13521,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); - if (lookahead == 't') ADVANCE(615); + if (lookahead == 't') ADVANCE(531); if (lookahead == '!' || lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); @@ -15543,7 +13564,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 341: ACCEPT_TOKEN(aux_sym_identifier_token1); if (lookahead == 'a') ADVANCE(358); - if (lookahead == 'n') ADVANCE(736); + if (lookahead == 'n') ADVANCE(652); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_4(lookahead)) ADVANCE(377); @@ -15571,42 +13592,42 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 345: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'd') ADVANCE(648); + if (lookahead == 'd') ADVANCE(564); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); case 346: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'd') ADVANCE(733); + if (lookahead == 'd') ADVANCE(649); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); case 347: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'e') ADVANCE(482); + if (lookahead == 'e') ADVANCE(398); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); case 348: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'e') ADVANCE(484); + if (lookahead == 'e') ADVANCE(400); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); case 349: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'e') ADVANCE(729); + if (lookahead == 'e') ADVANCE(645); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); case 350: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'e') ADVANCE(739); + if (lookahead == 'e') ADVANCE(655); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); @@ -15649,7 +13670,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 356: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'h') ADVANCE(721); + if (lookahead == 'h') ADVANCE(637); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); @@ -15671,7 +13692,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 359: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'l') ADVANCE(486); + if (lookahead == 'l') ADVANCE(402); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); @@ -15693,14 +13714,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 362: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'n') ADVANCE(684); + if (lookahead == 'n') ADVANCE(600); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); case 363: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'n') ADVANCE(625); + if (lookahead == 'n') ADVANCE(541); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); @@ -15714,14 +13735,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 365: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'o') ADVANCE(725); + if (lookahead == 'o') ADVANCE(641); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); case 366: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'r') ADVANCE(640); + if (lookahead == 'r') ADVANCE(556); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); @@ -15735,7 +13756,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 368: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 'r') ADVANCE(717); + if (lookahead == 'r') ADVANCE(633); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); @@ -15763,7 +13784,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 372: ACCEPT_TOKEN(aux_sym_identifier_token1); - if (lookahead == 't') ADVANCE(616); + if (lookahead == 't') ADVANCE(532); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); @@ -15810,665 +13831,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ':') ADVANCE(243); END_STATE(); case 380: - ACCEPT_TOKEN(sym_unused_identifier); - END_STATE(); - case 381: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 382: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'A') ADVANCE(395); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (sym_unused_identifier_character_set_1(lookahead)) ADVANCE(417); - END_STATE(); - case 383: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'A') ADVANCE(386); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (sym_unused_identifier_character_set_1(lookahead)) ADVANCE(417); - END_STATE(); - case 384: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'A') ADVANCE(387); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (sym_unused_identifier_character_set_1(lookahead)) ADVANCE(417); - END_STATE(); - case 385: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'C') ADVANCE(382); - if (lookahead == 'D') ADVANCE(392); - if (lookahead == 'E') ADVANCE(397); - if (lookahead == 'M') ADVANCE(398); - if (lookahead == 'S') ADVANCE(402); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 386: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'C') ADVANCE(393); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 387: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'C') ADVANCE(390); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 388: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'D') ADVANCE(404); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 389: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'E') ADVANCE(415); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 390: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'E') ADVANCE(416); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 391: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'E') ADVANCE(401); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 392: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'I') ADVANCE(399); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 393: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'K') ADVANCE(403); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 394: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'L') ADVANCE(391); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 395: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'L') ADVANCE(394); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 396: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'L') ADVANCE(389); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 397: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'N') ADVANCE(405); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 398: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'O') ADVANCE(388); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 399: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'R') ADVANCE(412); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 400: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'R') ADVANCE(384); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 401: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'R') ADVANCE(414); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 402: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'T') ADVANCE(383); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 403: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'T') ADVANCE(400); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 404: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'U') ADVANCE(396); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 405: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == 'V') ADVANCE(413); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 406: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '_') ADVANCE(385); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); - END_STATE(); - case 407: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '_') ADVANCE(456); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); - END_STATE(); - case 408: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '_') ADVANCE(458); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); - END_STATE(); - case 409: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '_') ADVANCE(460); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); - END_STATE(); - case 410: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '_') ADVANCE(454); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); - END_STATE(); - case 411: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '_') ADVANCE(462); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); - END_STATE(); - case 412: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '_') ADVANCE(407); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); - END_STATE(); - case 413: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '_') ADVANCE(408); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); - END_STATE(); - case 414: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '_') ADVANCE(409); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); - END_STATE(); - case 415: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '_') ADVANCE(410); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); - END_STATE(); - case 416: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '_') ADVANCE(411); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(417); - END_STATE(); - case 417: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 418: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'A') ADVANCE(431); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (sym_unused_identifier_character_set_1(lookahead)) ADVANCE(453); - END_STATE(); - case 419: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'A') ADVANCE(422); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (sym_unused_identifier_character_set_1(lookahead)) ADVANCE(453); - END_STATE(); - case 420: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'A') ADVANCE(423); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (sym_unused_identifier_character_set_1(lookahead)) ADVANCE(453); - END_STATE(); - case 421: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'C') ADVANCE(418); - if (lookahead == 'D') ADVANCE(428); - if (lookahead == 'E') ADVANCE(433); - if (lookahead == 'M') ADVANCE(434); - if (lookahead == 'S') ADVANCE(438); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 422: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'C') ADVANCE(429); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 423: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'C') ADVANCE(426); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 424: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'D') ADVANCE(440); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 425: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'E') ADVANCE(451); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 426: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'E') ADVANCE(452); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 427: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'E') ADVANCE(437); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 428: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'I') ADVANCE(435); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 429: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'K') ADVANCE(439); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 430: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'L') ADVANCE(427); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 431: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'L') ADVANCE(430); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 432: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'L') ADVANCE(425); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 433: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'N') ADVANCE(441); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 434: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'O') ADVANCE(424); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 435: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'R') ADVANCE(448); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 436: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'R') ADVANCE(420); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 437: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'R') ADVANCE(450); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 438: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'T') ADVANCE(419); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 439: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'T') ADVANCE(436); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 440: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'U') ADVANCE(432); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 441: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == 'V') ADVANCE(449); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 442: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == '_') ADVANCE(421); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); - END_STATE(); - case 443: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == '_') ADVANCE(457); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); - END_STATE(); - case 444: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == '_') ADVANCE(459); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); - END_STATE(); - case 445: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == '_') ADVANCE(461); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); - END_STATE(); - case 446: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == '_') ADVANCE(455); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); - END_STATE(); - case 447: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == '_') ADVANCE(463); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); - END_STATE(); - case 448: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == '_') ADVANCE(443); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); - END_STATE(); - case 449: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == '_') ADVANCE(444); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); - END_STATE(); - case 450: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == '_') ADVANCE(445); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); - END_STATE(); - case 451: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == '_') ADVANCE(446); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); - END_STATE(); - case 452: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == '_') ADVANCE(447); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (sym_unused_identifier_character_set_2(lookahead)) ADVANCE(453); - END_STATE(); - case 453: - ACCEPT_TOKEN(sym_unused_identifier); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 454: - ACCEPT_TOKEN(anon_sym___MODULE__); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 455: - ACCEPT_TOKEN(anon_sym___MODULE__); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 456: - ACCEPT_TOKEN(anon_sym___DIR__); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 457: - ACCEPT_TOKEN(anon_sym___DIR__); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 458: - ACCEPT_TOKEN(anon_sym___ENV__); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 459: - ACCEPT_TOKEN(anon_sym___ENV__); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 460: - ACCEPT_TOKEN(anon_sym___CALLER__); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 461: - ACCEPT_TOKEN(anon_sym___CALLER__); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 462: - ACCEPT_TOKEN(anon_sym___STACKTRACE__); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '!' || - lookahead == '?') ADVANCE(381); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(417); - END_STATE(); - case 463: - ACCEPT_TOKEN(anon_sym___STACKTRACE__); - if (lookahead == '!' || - lookahead == '?') ADVANCE(380); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(453); - END_STATE(); - case 464: ACCEPT_TOKEN(sym_alias); if (lookahead == '.') ADVANCE(244); if (lookahead == ':') ADVANCE(243); @@ -16481,10 +13843,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(464); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(380); if (sym_keyword_character_set_5(lookahead)) ADVANCE(176); END_STATE(); - case 465: + case 381: ACCEPT_TOKEN(sym_alias); if (lookahead == '.') ADVANCE(244); if (lookahead == '\t' || @@ -16494,101 +13856,101 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(465); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(381); END_STATE(); - case 466: + case 382: ACCEPT_TOKEN(sym_integer); if (lookahead == '.') ADVANCE(248); if (lookahead == '_') ADVANCE(247); if (lookahead == 'b') ADVANCE(240); if (lookahead == 'o') ADVANCE(245); if (lookahead == 'x') ADVANCE(251); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(383); END_STATE(); - case 467: + case 383: ACCEPT_TOKEN(sym_integer); if (lookahead == '.') ADVANCE(248); if (lookahead == '_') ADVANCE(247); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(467); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(383); END_STATE(); - case 468: + case 384: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(240); if (lookahead == '0' || - lookahead == '1') ADVANCE(468); + lookahead == '1') ADVANCE(384); END_STATE(); - case 469: + case 385: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(245); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(469); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(385); END_STATE(); - case 470: + case 386: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(251); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(470); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(386); END_STATE(); - case 471: + case 387: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(250); if (lookahead == 'b') ADVANCE(240); if (lookahead == 'o') ADVANCE(245); if (lookahead == 'x') ADVANCE(251); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(388); END_STATE(); - case 472: + case 388: ACCEPT_TOKEN(sym_integer); if (lookahead == '_') ADVANCE(250); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(388); END_STATE(); - case 473: + case 389: ACCEPT_TOKEN(sym_float); if (lookahead == '_') ADVANCE(248); if (lookahead == 'E' || lookahead == 'e') ADVANCE(237); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(473); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(389); END_STATE(); - case 474: + case 390: ACCEPT_TOKEN(sym_float); if (lookahead == '_') ADVANCE(241); if (lookahead == '0' || - lookahead == '1') ADVANCE(474); + lookahead == '1') ADVANCE(390); END_STATE(); - case 475: + case 391: ACCEPT_TOKEN(sym_float); if (lookahead == '_') ADVANCE(246); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(475); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(391); END_STATE(); - case 476: + case 392: ACCEPT_TOKEN(sym_float); if (lookahead == '_') ADVANCE(252); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(476); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(392); END_STATE(); - case 477: + case 393: ACCEPT_TOKEN(sym_float); if (lookahead == '_') ADVANCE(249); if (lookahead == 'b') ADVANCE(241); if (lookahead == 'o') ADVANCE(246); if (lookahead == 'x') ADVANCE(252); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(478); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(394); END_STATE(); - case 478: + case 394: ACCEPT_TOKEN(sym_float); if (lookahead == '_') ADVANCE(249); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(478); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(394); END_STATE(); - case 479: + case 395: ACCEPT_TOKEN(sym_char); END_STATE(); - case 480: + case 396: ACCEPT_TOKEN(sym_char); if (lookahead != 0 && - lookahead != '\n') ADVANCE(479); + lookahead != '\n') ADVANCE(395); END_STATE(); - case 481: + case 397: ACCEPT_TOKEN(anon_sym_true); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); @@ -16596,13 +13958,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); - case 482: + case 398: ACCEPT_TOKEN(anon_sym_true); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); - case 483: + case 399: ACCEPT_TOKEN(anon_sym_false); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); @@ -16610,13 +13972,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); - case 484: + case 400: ACCEPT_TOKEN(anon_sym_false); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); - case 485: + case 401: ACCEPT_TOKEN(anon_sym_nil); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); @@ -16624,276 +13986,276 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); - case 486: + case 402: ACCEPT_TOKEN(anon_sym_nil); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); - case 487: + case 403: ACCEPT_TOKEN(sym_atom); END_STATE(); - case 488: + case 404: ACCEPT_TOKEN(sym_atom); - if (lookahead == '&') ADVANCE(487); + if (lookahead == '&') ADVANCE(403); END_STATE(); - case 489: + case 405: ACCEPT_TOKEN(sym_atom); - if (lookahead == '&') ADVANCE(488); + if (lookahead == '&') ADVANCE(404); END_STATE(); - case 490: + case 406: ACCEPT_TOKEN(sym_atom); - if (lookahead == '*') ADVANCE(487); + if (lookahead == '*') ADVANCE(403); END_STATE(); - case 491: + case 407: ACCEPT_TOKEN(sym_atom); - if (lookahead == '+') ADVANCE(487); + if (lookahead == '+') ADVANCE(403); END_STATE(); - case 492: + case 408: ACCEPT_TOKEN(sym_atom); - if (lookahead == '+') ADVANCE(491); + if (lookahead == '+') ADVANCE(407); END_STATE(); - case 493: + case 409: ACCEPT_TOKEN(sym_atom); - if (lookahead == '-') ADVANCE(487); + if (lookahead == '-') ADVANCE(403); END_STATE(); - case 494: + case 410: ACCEPT_TOKEN(sym_atom); - if (lookahead == '-') ADVANCE(493); - if (lookahead == '>') ADVANCE(487); + if (lookahead == '-') ADVANCE(409); + if (lookahead == '>') ADVANCE(403); END_STATE(); - case 495: + case 411: ACCEPT_TOKEN(sym_atom); - if (lookahead == '.') ADVANCE(487); + if (lookahead == '.') ADVANCE(403); if (lookahead == '/') ADVANCE(162); END_STATE(); - case 496: + case 412: ACCEPT_TOKEN(sym_atom); - if (lookahead == '.') ADVANCE(495); + if (lookahead == '.') ADVANCE(411); END_STATE(); - case 497: + case 413: ACCEPT_TOKEN(sym_atom); - if (lookahead == '/') ADVANCE(487); + if (lookahead == '/') ADVANCE(403); END_STATE(); - case 498: + case 414: ACCEPT_TOKEN(sym_atom); - if (lookahead == '=') ADVANCE(487); + if (lookahead == '=') ADVANCE(403); END_STATE(); - case 499: + case 415: ACCEPT_TOKEN(sym_atom); - if (lookahead == '=') ADVANCE(487); + if (lookahead == '=') ADVANCE(403); if (lookahead == '>') ADVANCE(181); END_STATE(); - case 500: + case 416: ACCEPT_TOKEN(sym_atom); - if (lookahead == '=') ADVANCE(498); + if (lookahead == '=') ADVANCE(414); END_STATE(); - case 501: + case 417: ACCEPT_TOKEN(sym_atom); - if (lookahead == '=') ADVANCE(498); - if (lookahead == '~') ADVANCE(487); + if (lookahead == '=') ADVANCE(414); + if (lookahead == '~') ADVANCE(403); END_STATE(); - case 502: + case 418: ACCEPT_TOKEN(sym_atom); - if (lookahead == '>') ADVANCE(487); + if (lookahead == '>') ADVANCE(403); END_STATE(); - case 503: + case 419: ACCEPT_TOKEN(sym_atom); - if (lookahead == '>') ADVANCE(487); - if (lookahead == '|') ADVANCE(506); + if (lookahead == '>') ADVANCE(403); + if (lookahead == '|') ADVANCE(422); END_STATE(); - case 504: + case 420: ACCEPT_TOKEN(sym_atom); if (lookahead == '^') ADVANCE(195); END_STATE(); - case 505: + case 421: ACCEPT_TOKEN(sym_atom); if (lookahead == '{') ADVANCE(229); END_STATE(); - case 506: + case 422: ACCEPT_TOKEN(sym_atom); - if (lookahead == '|') ADVANCE(487); + if (lookahead == '|') ADVANCE(403); END_STATE(); - case 507: + case 423: ACCEPT_TOKEN(sym_atom); if (lookahead == '!' || - lookahead == '?') ADVANCE(487); - if (sym_keyword_character_set_4(lookahead)) ADVANCE(507); + lookahead == '?') ADVANCE(403); + if (sym_keyword_character_set_4(lookahead)) ADVANCE(423); END_STATE(); - case 508: + case 424: ACCEPT_TOKEN(sym_atom); if (lookahead == '-' || lookahead == '=' || - lookahead == '>') ADVANCE(487); + lookahead == '>') ADVANCE(403); if (lookahead == '<') ADVANCE(238); if (lookahead == '|') ADVANCE(181); - if (lookahead == '~') ADVANCE(502); + if (lookahead == '~') ADVANCE(418); END_STATE(); - case 509: + case 425: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 510: + case 426: ACCEPT_TOKEN(anon_sym_DQUOTE); if (lookahead == '"') ADVANCE(148); END_STATE(); - case 511: + case 427: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 512: + case 428: ACCEPT_TOKEN(anon_sym_SQUOTE); if (lookahead == '\'') ADVANCE(153); END_STATE(); - case 513: + case 429: ACCEPT_TOKEN(anon_sym_SQUOTE_SQUOTE_SQUOTE); END_STATE(); - case 514: + case 430: ACCEPT_TOKEN(anon_sym_DQUOTE_DQUOTE_DQUOTE); END_STATE(); - case 515: + case 431: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 516: + case 432: ACCEPT_TOKEN(anon_sym_LBRACE); if (lookahead == '}') ADVANCE(166); END_STATE(); - case 517: + case 433: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 518: + case 434: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 519: + case 435: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 520: + case 436: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 521: + case 437: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(620); + if (lookahead == '-') ADVANCE(536); if (lookahead == ':') ADVANCE(243); - if (lookahead == '<') ADVANCE(587); - if (lookahead == '=') ADVANCE(661); - if (lookahead == '>') ADVANCE(702); + if (lookahead == '<') ADVANCE(503); + if (lookahead == '=') ADVANCE(577); + if (lookahead == '>') ADVANCE(618); if (lookahead == '|') ADVANCE(184); - if (lookahead == '~') ADVANCE(674); + if (lookahead == '~') ADVANCE(590); END_STATE(); - case 522: + case 438: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(619); - if (lookahead == '<') ADVANCE(588); - if (lookahead == '=') ADVANCE(660); - if (lookahead == '>') ADVANCE(701); + if (lookahead == '-') ADVANCE(535); + if (lookahead == '<') ADVANCE(504); + if (lookahead == '=') ADVANCE(576); + if (lookahead == '>') ADVANCE(617); if (lookahead == '|') ADVANCE(189); - if (lookahead == '~') ADVANCE(675); + if (lookahead == '~') ADVANCE(591); END_STATE(); - case 523: + case 439: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '-') ADVANCE(619); + if (lookahead == '-') ADVANCE(535); if (lookahead == '<') ADVANCE(179); - if (lookahead == '=') ADVANCE(660); - if (lookahead == '>') ADVANCE(701); + if (lookahead == '=') ADVANCE(576); + if (lookahead == '>') ADVANCE(617); if (lookahead == '|') ADVANCE(189); - if (lookahead == '~') ADVANCE(675); + if (lookahead == '~') ADVANCE(591); END_STATE(); - case 524: + case 440: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 525: + case 441: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == ':') ADVANCE(243); - if (lookahead == '=') ADVANCE(663); - if (lookahead == '>') ADVANCE(591); + if (lookahead == '=') ADVANCE(579); + if (lookahead == '>') ADVANCE(507); END_STATE(); - case 526: + case 442: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == ':') ADVANCE(243); - if (lookahead == '=') ADVANCE(663); + if (lookahead == '=') ADVANCE(579); if (lookahead == '>') ADVANCE(185); END_STATE(); - case 527: + case 443: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(662); - if (lookahead == '>') ADVANCE(592); + if (lookahead == '=') ADVANCE(578); + if (lookahead == '>') ADVANCE(508); END_STATE(); - case 528: + case 444: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(662); + if (lookahead == '=') ADVANCE(578); if (lookahead == '>') ADVANCE(190); END_STATE(); - case 529: + case 445: ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); - case 530: + case 446: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == ':') ADVANCE(243); - if (lookahead == '>') ADVANCE(665); - if (lookahead == '|') ADVANCE(634); + if (lookahead == '>') ADVANCE(581); + if (lookahead == '|') ADVANCE(550); END_STATE(); - case 531: + case 447: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '>') ADVANCE(664); - if (lookahead == '|') ADVANCE(635); + if (lookahead == '>') ADVANCE(580); + if (lookahead == '|') ADVANCE(551); END_STATE(); - case 532: + case 448: ACCEPT_TOKEN(anon_sym_SLASH); END_STATE(); - case 533: + case 449: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(689); + if (lookahead == '/') ADVANCE(605); if (lookahead == ':') ADVANCE(243); END_STATE(); - case 534: + case 450: ACCEPT_TOKEN(anon_sym_SLASH); if (lookahead == '/') ADVANCE(166); if (lookahead == ':') ADVANCE(243); END_STATE(); - case 535: + case 451: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(688); + if (lookahead == '/') ADVANCE(604); END_STATE(); - case 536: + case 452: ACCEPT_TOKEN(anon_sym_POUND_LBRACE); END_STATE(); - case 537: + case 453: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 538: + case 454: ACCEPT_TOKEN(sym_escape_sequence); if (lookahead == '\n') ADVANCE(271); if (lookahead == '\r') ADVANCE(61); if (lookahead == '\\') ADVANCE(58); END_STATE(); - case 539: + case 455: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(537); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(453); END_STATE(); - case 540: + case 456: ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead == '>') ADVANCE(676); + if (lookahead == '>') ADVANCE(592); if (lookahead == '~') ADVANCE(234); END_STATE(); - case 541: + case 457: ACCEPT_TOKEN(anon_sym_TILDE); - if (lookahead == '>') ADVANCE(677); + if (lookahead == '>') ADVANCE(593); if (lookahead == '~') ADVANCE(235); END_STATE(); - case 542: + case 458: ACCEPT_TOKEN(aux_sym_sigil_token1); END_STATE(); - case 543: + case 459: ACCEPT_TOKEN(aux_sym_sigil_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); if (lookahead == 'a') ADVANCE(323); - if (lookahead == 'n') ADVANCE(735); + if (lookahead == 'n') ADVANCE(651); if (lookahead == '!' || lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_4(lookahead)) ADVANCE(340); END_STATE(); - case 544: + case 460: ACCEPT_TOKEN(aux_sym_sigil_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); @@ -16902,7 +14264,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_4(lookahead)) ADVANCE(340); END_STATE(); - case 545: + case 461: ACCEPT_TOKEN(aux_sym_sigil_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); @@ -16911,7 +14273,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); - case 546: + case 462: ACCEPT_TOKEN(aux_sym_sigil_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); @@ -16921,7 +14283,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); - case 547: + case 463: ACCEPT_TOKEN(aux_sym_sigil_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); @@ -16930,7 +14292,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); - case 548: + case 464: ACCEPT_TOKEN(aux_sym_sigil_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); @@ -16940,7 +14302,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); - case 549: + case 465: ACCEPT_TOKEN(aux_sym_sigil_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); @@ -16950,34 +14312,34 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); - case 550: + case 466: ACCEPT_TOKEN(aux_sym_sigil_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); - if (lookahead == 'n') ADVANCE(683); + if (lookahead == 'n') ADVANCE(599); if (lookahead == '!' || lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); - case 551: + case 467: ACCEPT_TOKEN(aux_sym_sigil_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); - if (lookahead == 'o') ADVANCE(724); + if (lookahead == 'o') ADVANCE(640); if (lookahead == '!' || lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); - case 552: + case 468: ACCEPT_TOKEN(aux_sym_sigil_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); - if (lookahead == 'r') ADVANCE(639); + if (lookahead == 'r') ADVANCE(555); if (lookahead == '!' || lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); - case 553: + case 469: ACCEPT_TOKEN(aux_sym_sigil_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); @@ -16986,7 +14348,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); - case 554: + case 470: ACCEPT_TOKEN(aux_sym_sigil_token1); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); @@ -16994,729 +14356,729 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); - case 555: + case 471: ACCEPT_TOKEN(aux_sym_sigil_token2); END_STATE(); - case 556: + case 472: ACCEPT_TOKEN(aux_sym_sigil_token2); if (lookahead == ':') ADVANCE(243); if (lookahead == '!' || lookahead == '?') ADVANCE(166); if (sym_keyword_character_set_4(lookahead)) ADVANCE(176); END_STATE(); - case 557: + case 473: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'a') ADVANCE(580); + if (lookahead == 'a') ADVANCE(496); if (('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 558: + case 474: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'c') ADVANCE(582); + if (lookahead == 'c') ADVANCE(498); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 559: + case 475: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'c') ADVANCE(484); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 560: + case 476: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'd') ADVANCE(649); + if (lookahead == 'd') ADVANCE(565); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 561: + case 477: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'd') ADVANCE(734); + if (lookahead == 'd') ADVANCE(650); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 562: + case 478: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'e') ADVANCE(730); + if (lookahead == 'e') ADVANCE(646); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 563: + case 479: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'e') ADVANCE(740); + if (lookahead == 'e') ADVANCE(656); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 564: + case 480: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'e') ADVANCE(573); + if (lookahead == 'e') ADVANCE(489); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 565: + case 481: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'e') ADVANCE(577); + if (lookahead == 'e') ADVANCE(493); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 566: + case 482: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'e') ADVANCE(578); + if (lookahead == 'e') ADVANCE(494); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 567: + case 483: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'f') ADVANCE(581); - if (lookahead == 'n') ADVANCE(560); + if (lookahead == 'f') ADVANCE(497); + if (lookahead == 'n') ADVANCE(476); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 568: + case 484: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'h') ADVANCE(722); + if (lookahead == 'h') ADVANCE(638); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 569: + case 485: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'h') ADVANCE(564); + if (lookahead == 'h') ADVANCE(480); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 570: + case 486: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'l') ADVANCE(579); - if (lookahead == 'n') ADVANCE(561); + if (lookahead == 'l') ADVANCE(495); + if (lookahead == 'n') ADVANCE(477); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 571: + case 487: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'n') ADVANCE(560); + if (lookahead == 'n') ADVANCE(476); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 572: + case 488: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'n') ADVANCE(685); + if (lookahead == 'n') ADVANCE(601); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 573: + case 489: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'n') ADVANCE(626); + if (lookahead == 'n') ADVANCE(542); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 574: + case 490: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'n') ADVANCE(561); + if (lookahead == 'n') ADVANCE(477); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 575: + case 491: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'o') ADVANCE(726); + if (lookahead == 'o') ADVANCE(642); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 576: + case 492: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'r') ADVANCE(641); + if (lookahead == 'r') ADVANCE(557); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 577: + case 493: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'r') ADVANCE(718); + if (lookahead == 'r') ADVANCE(634); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 578: + case 494: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 's') ADVANCE(558); + if (lookahead == 's') ADVANCE(474); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 579: + case 495: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 's') ADVANCE(562); + if (lookahead == 's') ADVANCE(478); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 580: + case 496: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 't') ADVANCE(559); + if (lookahead == 't') ADVANCE(475); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 581: + case 497: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 't') ADVANCE(565); + if (lookahead == 't') ADVANCE(481); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 582: + case 498: ACCEPT_TOKEN(aux_sym_sigil_token3); - if (lookahead == 'u') ADVANCE(563); + if (lookahead == 'u') ADVANCE(479); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 583: + case 499: ACCEPT_TOKEN(aux_sym_sigil_token3); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 584: + case 500: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 585: + case 501: ACCEPT_TOKEN(sym_keyword); END_STATE(); - case 586: + case 502: ACCEPT_TOKEN(aux_sym_quoted_keyword_token1); END_STATE(); - case 587: + case 503: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '<') ADVANCE(667); + if (lookahead == '<') ADVANCE(583); if (lookahead == '>') ADVANCE(182); - if (lookahead == '~') ADVANCE(671); + if (lookahead == '~') ADVANCE(587); END_STATE(); - case 588: + case 504: ACCEPT_TOKEN(anon_sym_LT_LT); - if (lookahead == '<') ADVANCE(666); - if (lookahead == '~') ADVANCE(670); + if (lookahead == '<') ADVANCE(582); + if (lookahead == '~') ADVANCE(586); END_STATE(); - case 589: + case 505: ACCEPT_TOKEN(anon_sym_GT_GT); END_STATE(); - case 590: + case 506: ACCEPT_TOKEN(anon_sym_GT_GT); if (lookahead == '>') ADVANCE(166); END_STATE(); - case 591: + case 507: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(669); + if (lookahead == '>') ADVANCE(585); END_STATE(); - case 592: + case 508: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(668); + if (lookahead == '>') ADVANCE(584); END_STATE(); - case 593: + case 509: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 594: + case 510: ACCEPT_TOKEN(anon_sym_PERCENT); if (lookahead == ':') ADVANCE(243); if (lookahead == '{') ADVANCE(230); END_STATE(); - case 595: + case 511: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); + case 512: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(558); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 513: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '&') ADVANCE(559); + END_STATE(); + case 514: + ACCEPT_TOKEN(anon_sym_PLUS); + END_STATE(); + case 515: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(606); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 516: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(607); + END_STATE(); + case 517: + ACCEPT_TOKEN(anon_sym_DASH); + END_STATE(); + case 518: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(608); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '>') ADVANCE(627); + END_STATE(); + case 519: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(609); + END_STATE(); + case 520: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '-') ADVANCE(609); + if (lookahead == '>') ADVANCE(626); + END_STATE(); + case 521: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 522: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '=') ADVANCE(568); + END_STATE(); + case 523: + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(569); + END_STATE(); + case 524: + ACCEPT_TOKEN(anon_sym_CARET); + END_STATE(); + case 525: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '^') ADVANCE(625); + END_STATE(); + case 526: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '^') ADVANCE(624); + END_STATE(); + case 527: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '^') ADVANCE(623); + END_STATE(); + case 528: + ACCEPT_TOKEN(anon_sym_TILDE_TILDE_TILDE); + END_STATE(); + case 529: + ACCEPT_TOKEN(anon_sym_TILDE_TILDE_TILDE); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 530: + ACCEPT_TOKEN(anon_sym_not); + END_STATE(); + case 531: + ACCEPT_TOKEN(anon_sym_not); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 532: + ACCEPT_TOKEN(anon_sym_not); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 533: + ACCEPT_TOKEN(anon_sym_AT); + END_STATE(); + case 534: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 535: + ACCEPT_TOKEN(anon_sym_LT_DASH); + END_STATE(); + case 536: + ACCEPT_TOKEN(anon_sym_LT_DASH); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 537: + ACCEPT_TOKEN(anon_sym_BSLASH_BSLASH); + END_STATE(); + case 538: + ACCEPT_TOKEN(anon_sym_BSLASH_BSLASH); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 539: + ACCEPT_TOKEN(anon_sym_when); + END_STATE(); + case 540: + ACCEPT_TOKEN(anon_sym_when); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 541: + ACCEPT_TOKEN(anon_sym_when); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 542: + ACCEPT_TOKEN(anon_sym_when); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); + END_STATE(); + case 543: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + END_STATE(); + case 544: + ACCEPT_TOKEN(anon_sym_COLON_COLON); + if (lookahead == ':') ADVANCE(403); + END_STATE(); + case 545: + ACCEPT_TOKEN(anon_sym_EQ_GT); + END_STATE(); + case 546: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '=') ADVANCE(566); + if (lookahead == '>') ADVANCE(545); + if (lookahead == '~') ADVANCE(571); + END_STATE(); + case 547: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '=') ADVANCE(566); + if (lookahead == '~') ADVANCE(571); + END_STATE(); + case 548: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(567); + if (lookahead == '>') ADVANCE(545); + if (lookahead == '~') ADVANCE(570); + END_STATE(); + case 549: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(567); + if (lookahead == '~') ADVANCE(570); + END_STATE(); + case 550: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '|') ADVANCE(553); + END_STATE(); + case 551: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + if (lookahead == '|') ADVANCE(552); + END_STATE(); + case 552: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE_PIPE); + END_STATE(); + case 553: + ACCEPT_TOKEN(anon_sym_PIPE_PIPE_PIPE); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 554: + ACCEPT_TOKEN(anon_sym_or); + END_STATE(); + case 555: + ACCEPT_TOKEN(anon_sym_or); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 556: + ACCEPT_TOKEN(anon_sym_or); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 557: + ACCEPT_TOKEN(anon_sym_or); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); + END_STATE(); + case 558: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '&') ADVANCE(561); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 559: + ACCEPT_TOKEN(anon_sym_AMP_AMP); + if (lookahead == '&') ADVANCE(560); + END_STATE(); + case 560: + ACCEPT_TOKEN(anon_sym_AMP_AMP_AMP); + END_STATE(); + case 561: + ACCEPT_TOKEN(anon_sym_AMP_AMP_AMP); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 562: + ACCEPT_TOKEN(anon_sym_and); + END_STATE(); + case 563: + ACCEPT_TOKEN(anon_sym_and); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); + END_STATE(); + case 564: + ACCEPT_TOKEN(anon_sym_and); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); + END_STATE(); + case 565: + ACCEPT_TOKEN(anon_sym_and); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); + END_STATE(); + case 566: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '=') ADVANCE(573); + END_STATE(); + case 567: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + if (lookahead == '=') ADVANCE(572); + END_STATE(); + case 568: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '=') ADVANCE(575); + END_STATE(); + case 569: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') ADVANCE(574); + END_STATE(); + case 570: + ACCEPT_TOKEN(anon_sym_EQ_TILDE); + END_STATE(); + case 571: + ACCEPT_TOKEN(anon_sym_EQ_TILDE); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 572: + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + END_STATE(); + case 573: + ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 574: + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + END_STATE(); + case 575: + ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 576: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 577: + ACCEPT_TOKEN(anon_sym_LT_EQ); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 578: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 579: + ACCEPT_TOKEN(anon_sym_GT_EQ); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 580: + ACCEPT_TOKEN(anon_sym_PIPE_GT); + END_STATE(); + case 581: + ACCEPT_TOKEN(anon_sym_PIPE_GT); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 582: + ACCEPT_TOKEN(anon_sym_LT_LT_LT); + END_STATE(); + case 583: + ACCEPT_TOKEN(anon_sym_LT_LT_LT); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 584: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + END_STATE(); + case 585: + ACCEPT_TOKEN(anon_sym_GT_GT_GT); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 586: + ACCEPT_TOKEN(anon_sym_LT_LT_TILDE); + END_STATE(); + case 587: + ACCEPT_TOKEN(anon_sym_LT_LT_TILDE); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 588: + ACCEPT_TOKEN(anon_sym_TILDE_GT_GT); + END_STATE(); + case 589: + ACCEPT_TOKEN(anon_sym_TILDE_GT_GT); + if (lookahead == ':') ADVANCE(243); + END_STATE(); + case 590: + ACCEPT_TOKEN(anon_sym_LT_TILDE); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '>') ADVANCE(595); + END_STATE(); + case 591: + ACCEPT_TOKEN(anon_sym_LT_TILDE); + if (lookahead == '>') ADVANCE(594); + END_STATE(); + case 592: + ACCEPT_TOKEN(anon_sym_TILDE_GT); + if (lookahead == ':') ADVANCE(243); + if (lookahead == '>') ADVANCE(589); + END_STATE(); + case 593: + ACCEPT_TOKEN(anon_sym_TILDE_GT); + if (lookahead == '>') ADVANCE(588); + END_STATE(); + case 594: + ACCEPT_TOKEN(anon_sym_LT_TILDE_GT); + END_STATE(); + case 595: + ACCEPT_TOKEN(anon_sym_LT_TILDE_GT); + if (lookahead == ':') ADVANCE(243); + END_STATE(); case 596: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(642); - if (lookahead == ':') ADVANCE(243); + ACCEPT_TOKEN(anon_sym_LT_PIPE_GT); END_STATE(); case 597: - ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(643); + ACCEPT_TOKEN(anon_sym_LT_PIPE_GT); + if (lookahead == ':') ADVANCE(243); END_STATE(); case 598: - ACCEPT_TOKEN(anon_sym_PLUS); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 599: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(690); + ACCEPT_TOKEN(anon_sym_in); if (lookahead == ':') ADVANCE(243); + if (lookahead == '@') ADVANCE(176); + if (lookahead == '!' || + lookahead == '?') ADVANCE(303); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); case 600: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(691); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == '!' || + lookahead == '?') ADVANCE(302); + if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); case 601: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_in); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); case 602: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(692); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '>') ADVANCE(711); + ACCEPT_TOKEN(anon_sym_CARET_CARET_CARET); END_STATE(); case 603: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(693); + ACCEPT_TOKEN(anon_sym_CARET_CARET_CARET); + if (lookahead == ':') ADVANCE(243); END_STATE(); case 604: - ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(693); - if (lookahead == '>') ADVANCE(710); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 605: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == ':') ADVANCE(243); END_STATE(); case 606: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + if (lookahead == '+') ADVANCE(611); if (lookahead == ':') ADVANCE(243); - if (lookahead == '=') ADVANCE(652); END_STATE(); case 607: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(653); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + if (lookahead == '+') ADVANCE(610); END_STATE(); case 608: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (lookahead == '-') ADVANCE(613); + if (lookahead == ':') ADVANCE(243); END_STATE(); case 609: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '^') ADVANCE(709); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if (lookahead == '-') ADVANCE(612); END_STATE(); case 610: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '^') ADVANCE(708); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_PLUS); END_STATE(); case 611: - ACCEPT_TOKEN(anon_sym_CARET); - if (lookahead == '^') ADVANCE(707); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_PLUS); + if (lookahead == ':') ADVANCE(243); END_STATE(); case 612: - ACCEPT_TOKEN(anon_sym_TILDE_TILDE_TILDE); + ACCEPT_TOKEN(anon_sym_DASH_DASH_DASH); END_STATE(); case 613: - ACCEPT_TOKEN(anon_sym_TILDE_TILDE_TILDE); + ACCEPT_TOKEN(anon_sym_DASH_DASH_DASH); if (lookahead == ':') ADVANCE(243); END_STATE(); case 614: - ACCEPT_TOKEN(anon_sym_not); - END_STATE(); - case 615: - ACCEPT_TOKEN(anon_sym_not); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '!' || - lookahead == '?') ADVANCE(303); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); - END_STATE(); - case 616: - ACCEPT_TOKEN(anon_sym_not); - if (lookahead == '!' || - lookahead == '?') ADVANCE(302); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); - END_STATE(); - case 617: - ACCEPT_TOKEN(anon_sym_AT); - END_STATE(); - case 618: - ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 619: - ACCEPT_TOKEN(anon_sym_LT_DASH); - END_STATE(); - case 620: - ACCEPT_TOKEN(anon_sym_LT_DASH); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 621: - ACCEPT_TOKEN(anon_sym_BSLASH_BSLASH); - END_STATE(); - case 622: - ACCEPT_TOKEN(anon_sym_BSLASH_BSLASH); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 623: - ACCEPT_TOKEN(anon_sym_when); - END_STATE(); - case 624: - ACCEPT_TOKEN(anon_sym_when); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '!' || - lookahead == '?') ADVANCE(303); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); - END_STATE(); - case 625: - ACCEPT_TOKEN(anon_sym_when); - if (lookahead == '!' || - lookahead == '?') ADVANCE(302); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); - END_STATE(); - case 626: - ACCEPT_TOKEN(anon_sym_when); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); - END_STATE(); - case 627: - ACCEPT_TOKEN(anon_sym_COLON_COLON); - END_STATE(); - case 628: - ACCEPT_TOKEN(anon_sym_COLON_COLON); - if (lookahead == ':') ADVANCE(487); - END_STATE(); - case 629: - ACCEPT_TOKEN(anon_sym_EQ_GT); - END_STATE(); - case 630: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '=') ADVANCE(650); - if (lookahead == '>') ADVANCE(629); - if (lookahead == '~') ADVANCE(655); - END_STATE(); - case 631: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '=') ADVANCE(650); - if (lookahead == '~') ADVANCE(655); - END_STATE(); - case 632: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(651); - if (lookahead == '>') ADVANCE(629); - if (lookahead == '~') ADVANCE(654); - END_STATE(); - case 633: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(651); - if (lookahead == '~') ADVANCE(654); - END_STATE(); - case 634: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '|') ADVANCE(637); - END_STATE(); - case 635: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); - if (lookahead == '|') ADVANCE(636); - END_STATE(); - case 636: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE_PIPE); - END_STATE(); - case 637: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE_PIPE); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 638: - ACCEPT_TOKEN(anon_sym_or); - END_STATE(); - case 639: - ACCEPT_TOKEN(anon_sym_or); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '!' || - lookahead == '?') ADVANCE(303); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); - END_STATE(); - case 640: - ACCEPT_TOKEN(anon_sym_or); - if (lookahead == '!' || - lookahead == '?') ADVANCE(302); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); - END_STATE(); - case 641: - ACCEPT_TOKEN(anon_sym_or); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); - END_STATE(); - case 642: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '&') ADVANCE(645); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 643: - ACCEPT_TOKEN(anon_sym_AMP_AMP); - if (lookahead == '&') ADVANCE(644); - END_STATE(); - case 644: - ACCEPT_TOKEN(anon_sym_AMP_AMP_AMP); - END_STATE(); - case 645: - ACCEPT_TOKEN(anon_sym_AMP_AMP_AMP); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 646: - ACCEPT_TOKEN(anon_sym_and); - END_STATE(); - case 647: - ACCEPT_TOKEN(anon_sym_and); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '!' || - lookahead == '?') ADVANCE(303); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); - END_STATE(); - case 648: - ACCEPT_TOKEN(anon_sym_and); - if (lookahead == '!' || - lookahead == '?') ADVANCE(302); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); - END_STATE(); - case 649: - ACCEPT_TOKEN(anon_sym_and); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); - END_STATE(); - case 650: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '=') ADVANCE(657); - END_STATE(); - case 651: - ACCEPT_TOKEN(anon_sym_EQ_EQ); - if (lookahead == '=') ADVANCE(656); - END_STATE(); - case 652: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '=') ADVANCE(659); - END_STATE(); - case 653: - ACCEPT_TOKEN(anon_sym_BANG_EQ); - if (lookahead == '=') ADVANCE(658); - END_STATE(); - case 654: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); - END_STATE(); - case 655: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 656: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); - END_STATE(); - case 657: - ACCEPT_TOKEN(anon_sym_EQ_EQ_EQ); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 658: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); - END_STATE(); - case 659: - ACCEPT_TOKEN(anon_sym_BANG_EQ_EQ); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 660: - ACCEPT_TOKEN(anon_sym_LT_EQ); - END_STATE(); - case 661: - ACCEPT_TOKEN(anon_sym_LT_EQ); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 662: - ACCEPT_TOKEN(anon_sym_GT_EQ); - END_STATE(); - case 663: - ACCEPT_TOKEN(anon_sym_GT_EQ); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 664: - ACCEPT_TOKEN(anon_sym_PIPE_GT); - END_STATE(); - case 665: - ACCEPT_TOKEN(anon_sym_PIPE_GT); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 666: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); - END_STATE(); - case 667: - ACCEPT_TOKEN(anon_sym_LT_LT_LT); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 668: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - END_STATE(); - case 669: - ACCEPT_TOKEN(anon_sym_GT_GT_GT); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 670: - ACCEPT_TOKEN(anon_sym_LT_LT_TILDE); - END_STATE(); - case 671: - ACCEPT_TOKEN(anon_sym_LT_LT_TILDE); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 672: - ACCEPT_TOKEN(anon_sym_TILDE_GT_GT); - END_STATE(); - case 673: - ACCEPT_TOKEN(anon_sym_TILDE_GT_GT); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 674: - ACCEPT_TOKEN(anon_sym_LT_TILDE); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '>') ADVANCE(679); - END_STATE(); - case 675: - ACCEPT_TOKEN(anon_sym_LT_TILDE); - if (lookahead == '>') ADVANCE(678); - END_STATE(); - case 676: - ACCEPT_TOKEN(anon_sym_TILDE_GT); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '>') ADVANCE(673); - END_STATE(); - case 677: - ACCEPT_TOKEN(anon_sym_TILDE_GT); - if (lookahead == '>') ADVANCE(672); - END_STATE(); - case 678: - ACCEPT_TOKEN(anon_sym_LT_TILDE_GT); - END_STATE(); - case 679: - ACCEPT_TOKEN(anon_sym_LT_TILDE_GT); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 680: - ACCEPT_TOKEN(anon_sym_LT_PIPE_GT); - END_STATE(); - case 681: - ACCEPT_TOKEN(anon_sym_LT_PIPE_GT); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 682: - ACCEPT_TOKEN(anon_sym_in); - END_STATE(); - case 683: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == ':') ADVANCE(243); - if (lookahead == '@') ADVANCE(176); - if (lookahead == '!' || - lookahead == '?') ADVANCE(303); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); - END_STATE(); - case 684: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == '!' || - lookahead == '?') ADVANCE(302); - if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); - END_STATE(); - case 685: - ACCEPT_TOKEN(anon_sym_in); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); - END_STATE(); - case 686: - ACCEPT_TOKEN(anon_sym_CARET_CARET_CARET); - END_STATE(); - case 687: - ACCEPT_TOKEN(anon_sym_CARET_CARET_CARET); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 688: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - END_STATE(); - case 689: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 690: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '+') ADVANCE(695); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 691: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); - if (lookahead == '+') ADVANCE(694); - END_STATE(); - case 692: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '-') ADVANCE(697); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 693: - ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (lookahead == '-') ADVANCE(696); - END_STATE(); - case 694: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS_PLUS); - END_STATE(); - case 695: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS_PLUS); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 696: - ACCEPT_TOKEN(anon_sym_DASH_DASH_DASH); - END_STATE(); - case 697: - ACCEPT_TOKEN(anon_sym_DASH_DASH_DASH); - if (lookahead == ':') ADVANCE(243); - END_STATE(); - case 698: ACCEPT_TOKEN(anon_sym_DOT_DOT); END_STATE(); - case 699: + case 615: ACCEPT_TOKEN(anon_sym_DOT_DOT); if (lookahead == '.') ADVANCE(379); if (lookahead == '/') ADVANCE(163); if (lookahead == ':') ADVANCE(243); END_STATE(); - case 700: + case 616: ACCEPT_TOKEN(anon_sym_DOT_DOT); if (lookahead == '.') ADVANCE(378); END_STATE(); - case 701: + case 617: ACCEPT_TOKEN(anon_sym_LT_GT); END_STATE(); - case 702: + case 618: ACCEPT_TOKEN(anon_sym_LT_GT); if (lookahead == ':') ADVANCE(243); END_STATE(); - case 703: + case 619: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(706); + if (lookahead == '*') ADVANCE(622); if (lookahead == ':') ADVANCE(243); END_STATE(); - case 704: + case 620: ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(705); + if (lookahead == '*') ADVANCE(621); END_STATE(); - case 705: + case 621: ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); - case 706: + case 622: ACCEPT_TOKEN(anon_sym_STAR_STAR); if (lookahead == ':') ADVANCE(243); END_STATE(); - case 707: + case 623: ACCEPT_TOKEN(anon_sym_CARET_CARET); END_STATE(); - case 708: + case 624: ACCEPT_TOKEN(anon_sym_CARET_CARET); if (lookahead == '^') ADVANCE(166); END_STATE(); - case 709: + case 625: ACCEPT_TOKEN(anon_sym_CARET_CARET); - if (lookahead == '^') ADVANCE(687); + if (lookahead == '^') ADVANCE(603); END_STATE(); - case 710: + case 626: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 711: + case 627: ACCEPT_TOKEN(anon_sym_DASH_GT); if (lookahead == ':') ADVANCE(243); END_STATE(); - case 712: + case 628: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(699); + if (lookahead == '.') ADVANCE(615); if (lookahead == ':') ADVANCE(243); END_STATE(); - case 713: + case 629: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(700); + if (lookahead == '.') ADVANCE(616); END_STATE(); - case 714: + case 630: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(698); + if (lookahead == '.') ADVANCE(614); END_STATE(); - case 715: + case 631: ACCEPT_TOKEN(anon_sym_after); END_STATE(); - case 716: + case 632: ACCEPT_TOKEN(anon_sym_after); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); @@ -17724,21 +15086,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); - case 717: + case 633: ACCEPT_TOKEN(anon_sym_after); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); - case 718: + case 634: ACCEPT_TOKEN(anon_sym_after); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 719: + case 635: ACCEPT_TOKEN(anon_sym_catch); END_STATE(); - case 720: + case 636: ACCEPT_TOKEN(anon_sym_catch); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); @@ -17746,21 +15108,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); - case 721: + case 637: ACCEPT_TOKEN(anon_sym_catch); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); - case 722: + case 638: ACCEPT_TOKEN(anon_sym_catch); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 723: + case 639: ACCEPT_TOKEN(anon_sym_do); END_STATE(); - case 724: + case 640: ACCEPT_TOKEN(anon_sym_do); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); @@ -17768,21 +15130,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); - case 725: + case 641: ACCEPT_TOKEN(anon_sym_do); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); - case 726: + case 642: ACCEPT_TOKEN(anon_sym_do); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 727: + case 643: ACCEPT_TOKEN(anon_sym_else); END_STATE(); - case 728: + case 644: ACCEPT_TOKEN(anon_sym_else); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); @@ -17790,21 +15152,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); - case 729: + case 645: ACCEPT_TOKEN(anon_sym_else); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); - case 730: + case 646: ACCEPT_TOKEN(anon_sym_else); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 731: + case 647: ACCEPT_TOKEN(anon_sym_end); END_STATE(); - case 732: + case 648: ACCEPT_TOKEN(anon_sym_end); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); @@ -17812,18 +15174,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); - case 733: + case 649: ACCEPT_TOKEN(anon_sym_end); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); - case 734: + case 650: ACCEPT_TOKEN(anon_sym_end); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 735: + case 651: ACCEPT_TOKEN(anon_sym_fn); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); @@ -17831,16 +15193,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); - case 736: + case 652: ACCEPT_TOKEN(anon_sym_fn); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); - case 737: + case 653: ACCEPT_TOKEN(anon_sym_rescue); END_STATE(); - case 738: + case 654: ACCEPT_TOKEN(anon_sym_rescue); if (lookahead == ':') ADVANCE(243); if (lookahead == '@') ADVANCE(176); @@ -17848,33 +15210,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?') ADVANCE(303); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(340); END_STATE(); - case 739: + case 655: ACCEPT_TOKEN(anon_sym_rescue); if (lookahead == '!' || lookahead == '?') ADVANCE(302); if (aux_sym_identifier_token1_character_set_5(lookahead)) ADVANCE(377); END_STATE(); - case 740: + case 656: ACCEPT_TOKEN(anon_sym_rescue); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(583); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(499); END_STATE(); - case 741: + case 657: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 742: + case 658: ACCEPT_TOKEN(anon_sym_LBRACK2); END_STATE(); - case 743: + case 659: ACCEPT_TOKEN(sym_comment); - if (lookahead == '{') ADVANCE(536); + if (lookahead == '{') ADVANCE(452); if (lookahead != 0 && - lookahead != '\n') ADVANCE(744); + lookahead != '\n') ADVANCE(660); END_STATE(); - case 744: + case 660: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(744); + lookahead != '\n') ADVANCE(660); END_STATE(); default: return false; @@ -17903,61 +15265,61 @@ 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 = 81, .external_lex_state = 2}, + [21] = {.lex_state = 79, .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}, - [26] = {.lex_state = 79, .external_lex_state = 2}, + [25] = {.lex_state = 79, .external_lex_state = 2}, + [26] = {.lex_state = 81, .external_lex_state = 2}, [27] = {.lex_state = 79, .external_lex_state = 2}, [28] = {.lex_state = 79, .external_lex_state = 2}, [29] = {.lex_state = 79, .external_lex_state = 2}, - [30] = {.lex_state = 79, .external_lex_state = 2}, + [30] = {.lex_state = 81, .external_lex_state = 2}, [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 = 79, .external_lex_state = 2}, + [34] = {.lex_state = 260, .external_lex_state = 3}, [35] = {.lex_state = 260, .external_lex_state = 3}, - [36] = {.lex_state = 260, .external_lex_state = 3}, - [37] = {.lex_state = 79, .external_lex_state = 2}, + [36] = {.lex_state = 79, .external_lex_state = 2}, + [37] = {.lex_state = 260, .external_lex_state = 3}, [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 = 86, .external_lex_state = 3}, - [42] = {.lex_state = 260, .external_lex_state = 3}, + [40] = {.lex_state = 79, .external_lex_state = 2}, + [41] = {.lex_state = 260, .external_lex_state = 3}, + [42] = {.lex_state = 86, .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 = 86, .external_lex_state = 3}, + [46] = {.lex_state = 86, .external_lex_state = 3}, + [47] = {.lex_state = 260, .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 = 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}, + [52] = {.lex_state = 86, .external_lex_state = 3}, + [53] = {.lex_state = 260, .external_lex_state = 3}, + [54] = {.lex_state = 89, .external_lex_state = 3}, + [55] = {.lex_state = 260, .external_lex_state = 2}, [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}, + [59] = {.lex_state = 260, .external_lex_state = 3}, + [60] = {.lex_state = 260, .external_lex_state = 2}, + [61] = {.lex_state = 260, .external_lex_state = 2}, + [62] = {.lex_state = 89, .external_lex_state = 3}, [63] = {.lex_state = 86, .external_lex_state = 2}, - [64] = {.lex_state = 260, .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}, + [64] = {.lex_state = 79, .external_lex_state = 2}, + [65] = {.lex_state = 89, .external_lex_state = 2}, + [66] = {.lex_state = 260, .external_lex_state = 3}, + [67] = {.lex_state = 260, .external_lex_state = 2}, + [68] = {.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 = 260, .external_lex_state = 3}, + [71] = {.lex_state = 260, .external_lex_state = 3}, + [72] = {.lex_state = 79, .external_lex_state = 2}, [73] = {.lex_state = 92, .external_lex_state = 2}, [74] = {.lex_state = 92, .external_lex_state = 2}, - [75] = {.lex_state = 92, .external_lex_state = 2}, + [75] = {.lex_state = 260, .external_lex_state = 2}, [76] = {.lex_state = 92, .external_lex_state = 2}, [77] = {.lex_state = 92, .external_lex_state = 2}, [78] = {.lex_state = 92, .external_lex_state = 2}, @@ -17975,7 +15337,7 @@ 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 = 260, .external_lex_state = 2}, + [93] = {.lex_state = 92, .external_lex_state = 2}, [94] = {.lex_state = 92, .external_lex_state = 2}, [95] = {.lex_state = 92, .external_lex_state = 2}, [96] = {.lex_state = 92, .external_lex_state = 2}, @@ -17985,10 +15347,10 @@ 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 = 260, .external_lex_state = 2}, + [103] = {.lex_state = 92, .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}, + [106] = {.lex_state = 260, .external_lex_state = 2}, [107] = {.lex_state = 92, .external_lex_state = 2}, [108] = {.lex_state = 92, .external_lex_state = 2}, [109] = {.lex_state = 92, .external_lex_state = 2}, @@ -18074,21 +15436,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 96, .external_lex_state = 2}, + [192] = {.lex_state = 92, .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}, + [196] = {.lex_state = 96, .external_lex_state = 2}, [197] = {.lex_state = 92, .external_lex_state = 2}, [198] = {.lex_state = 92, .external_lex_state = 2}, [199] = {.lex_state = 92, .external_lex_state = 2}, - [200] = {.lex_state = 92, .external_lex_state = 2}, + [200] = {.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}, + [206] = {.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 = 92, .external_lex_state = 2}, @@ -18096,21 +15458,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [211] = {.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 = 96, .external_lex_state = 2}, + [214] = {.lex_state = 92, .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 = 96, .external_lex_state = 2}, + [220] = {.lex_state = 92, .external_lex_state = 2}, [221] = {.lex_state = 92, .external_lex_state = 2}, - [222] = {.lex_state = 92, .external_lex_state = 2}, + [222] = {.lex_state = 96, .external_lex_state = 2}, [223] = {.lex_state = 92, .external_lex_state = 2}, [224] = {.lex_state = 92, .external_lex_state = 2}, [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 = 96, .external_lex_state = 2}, + [227] = {.lex_state = 96, .external_lex_state = 2}, + [228] = {.lex_state = 92, .external_lex_state = 2}, [229] = {.lex_state = 92, .external_lex_state = 2}, [230] = {.lex_state = 92, .external_lex_state = 2}, [231] = {.lex_state = 92, .external_lex_state = 2}, @@ -18124,22 +15486,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 96, .external_lex_state = 2}, + [242] = {.lex_state = 92, .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}, - [246] = {.lex_state = 92, .external_lex_state = 2}, - [247] = {.lex_state = 92, .external_lex_state = 2}, + [246] = {.lex_state = 96, .external_lex_state = 2}, + [247] = {.lex_state = 96, .external_lex_state = 2}, [248] = {.lex_state = 92, .external_lex_state = 2}, - [249] = {.lex_state = 92, .external_lex_state = 2}, - [250] = {.lex_state = 96, .external_lex_state = 2}, + [249] = {.lex_state = 96, .external_lex_state = 2}, + [250] = {.lex_state = 92, .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 = 96, .external_lex_state = 2}, + [252] = {.lex_state = 96, .external_lex_state = 2}, + [253] = {.lex_state = 92, .external_lex_state = 2}, + [254] = {.lex_state = 92, .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}, + [257] = {.lex_state = 92, .external_lex_state = 2}, [258] = {.lex_state = 96, .external_lex_state = 2}, [259] = {.lex_state = 94, .external_lex_state = 2}, [260] = {.lex_state = 96, .external_lex_state = 2}, @@ -18152,8 +15514,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 92, .external_lex_state = 2}, + [270] = {.lex_state = 94, .external_lex_state = 2}, + [271] = {.lex_state = 94, .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}, @@ -18161,31 +15523,31 @@ 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 = 94, .external_lex_state = 2}, + [279] = {.lex_state = 92, .external_lex_state = 2}, [280] = {.lex_state = 92, .external_lex_state = 2}, [281] = {.lex_state = 92, .external_lex_state = 2}, [282] = {.lex_state = 92, .external_lex_state = 2}, [283] = {.lex_state = 92, .external_lex_state = 2}, [284] = {.lex_state = 92, .external_lex_state = 2}, [285] = {.lex_state = 92, .external_lex_state = 2}, - [286] = {.lex_state = 94, .external_lex_state = 2}, + [286] = {.lex_state = 258, .external_lex_state = 2}, [287] = {.lex_state = 92, .external_lex_state = 2}, [288] = {.lex_state = 92, .external_lex_state = 2}, - [289] = {.lex_state = 258, .external_lex_state = 2}, + [289] = {.lex_state = 92, .external_lex_state = 2}, [290] = {.lex_state = 92, .external_lex_state = 2}, - [291] = {.lex_state = 92, .external_lex_state = 2}, - [292] = {.lex_state = 94, .external_lex_state = 2}, + [291] = {.lex_state = 94, .external_lex_state = 2}, + [292] = {.lex_state = 92, .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 = 94, .external_lex_state = 2}, - [300] = {.lex_state = 92, .external_lex_state = 2}, - [301] = {.lex_state = 92, .external_lex_state = 2}, + [298] = {.lex_state = 258, .external_lex_state = 2}, + [299] = {.lex_state = 92, .external_lex_state = 2}, + [300] = {.lex_state = 98, .external_lex_state = 2}, + [301] = {.lex_state = 94, .external_lex_state = 2}, [302] = {.lex_state = 92, .external_lex_state = 2}, - [303] = {.lex_state = 94, .external_lex_state = 2}, + [303] = {.lex_state = 92, .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}, @@ -18193,46 +15555,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 92, .external_lex_state = 2}, + [311] = {.lex_state = 94, .external_lex_state = 2}, [312] = {.lex_state = 92, .external_lex_state = 2}, - [313] = {.lex_state = 98, .external_lex_state = 2}, + [313] = {.lex_state = 94, .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 = 92, .external_lex_state = 2}, [318] = {.lex_state = 92, .external_lex_state = 2}, - [319] = {.lex_state = 92, .external_lex_state = 2}, + [319] = {.lex_state = 94, .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 = 92, .external_lex_state = 2}, - [324] = {.lex_state = 92, .external_lex_state = 2}, + [324] = {.lex_state = 94, .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 = 98, .external_lex_state = 2}, - [329] = {.lex_state = 94, .external_lex_state = 2}, + [328] = {.lex_state = 92, .external_lex_state = 2}, + [329] = {.lex_state = 92, .external_lex_state = 2}, [330] = {.lex_state = 92, .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 = 258, .external_lex_state = 2}, - [336] = {.lex_state = 94, .external_lex_state = 2}, + [333] = {.lex_state = 94, .external_lex_state = 2}, + [334] = {.lex_state = 94, .external_lex_state = 2}, + [335] = {.lex_state = 94, .external_lex_state = 2}, + [336] = {.lex_state = 92, .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}, + [338] = {.lex_state = 92, .external_lex_state = 2}, + [339] = {.lex_state = 92, .external_lex_state = 2}, [340] = {.lex_state = 92, .external_lex_state = 2}, [341] = {.lex_state = 92, .external_lex_state = 2}, - [342] = {.lex_state = 94, .external_lex_state = 2}, + [342] = {.lex_state = 92, .external_lex_state = 2}, [343] = {.lex_state = 92, .external_lex_state = 2}, - [344] = {.lex_state = 94, .external_lex_state = 2}, - [345] = {.lex_state = 258, .external_lex_state = 2}, + [344] = {.lex_state = 98, .external_lex_state = 2}, + [345] = {.lex_state = 98, .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}, + [350] = {.lex_state = 258, .external_lex_state = 2}, [351] = {.lex_state = 258, .external_lex_state = 2}, [352] = {.lex_state = 258, .external_lex_state = 2}, [353] = {.lex_state = 258, .external_lex_state = 2}, @@ -18807,9 +16169,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [922] = {.lex_state = 81, .external_lex_state = 3}, [923] = {.lex_state = 81, .external_lex_state = 3}, [924] = {.lex_state = 81, .external_lex_state = 3}, - [925] = {.lex_state = 81, .external_lex_state = 3}, - [926] = {.lex_state = 81, .external_lex_state = 2}, - [927] = {.lex_state = 81, .external_lex_state = 2}, + [925] = {.lex_state = 81, .external_lex_state = 2}, + [926] = {.lex_state = 260, .external_lex_state = 3}, + [927] = {.lex_state = 260, .external_lex_state = 3}, [928] = {.lex_state = 260, .external_lex_state = 3}, [929] = {.lex_state = 260, .external_lex_state = 3}, [930] = {.lex_state = 260, .external_lex_state = 3}, @@ -18824,124 +16186,124 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [939] = {.lex_state = 260, .external_lex_state = 3}, [940] = {.lex_state = 260, .external_lex_state = 3}, [941] = {.lex_state = 260, .external_lex_state = 3}, - [942] = {.lex_state = 260, .external_lex_state = 3}, + [942] = {.lex_state = 86, .external_lex_state = 3}, [943] = {.lex_state = 260, .external_lex_state = 3}, - [944] = {.lex_state = 86, .external_lex_state = 3}, + [944] = {.lex_state = 260, .external_lex_state = 3}, [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 = 3}, + [948] = {.lex_state = 86, .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 = 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}, + [954] = {.lex_state = 260, .external_lex_state = 3}, + [955] = {.lex_state = 260, .external_lex_state = 3}, + [956] = {.lex_state = 86, .external_lex_state = 3}, + [957] = {.lex_state = 86, .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 = 260, .external_lex_state = 3}, - [962] = {.lex_state = 260, .external_lex_state = 3}, + [962] = {.lex_state = 86, .external_lex_state = 3}, [963] = {.lex_state = 260, .external_lex_state = 3}, - [964] = {.lex_state = 260, .external_lex_state = 3}, - [965] = {.lex_state = 260, .external_lex_state = 3}, + [964] = {.lex_state = 86, .external_lex_state = 3}, + [965] = {.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}, + [967] = {.lex_state = 86, .external_lex_state = 3}, + [968] = {.lex_state = 260, .external_lex_state = 3}, + [969] = {.lex_state = 260, .external_lex_state = 3}, [970] = {.lex_state = 260, .external_lex_state = 3}, - [971] = {.lex_state = 86, .external_lex_state = 3}, - [972] = {.lex_state = 260, .external_lex_state = 3}, + [971] = {.lex_state = 260, .external_lex_state = 3}, + [972] = {.lex_state = 260, .external_lex_state = 2}, [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}, - [979] = {.lex_state = 260, .external_lex_state = 3}, - [980] = {.lex_state = 260, .external_lex_state = 3}, - [981] = {.lex_state = 260, .external_lex_state = 3}, - [982] = {.lex_state = 260, .external_lex_state = 3}, + [979] = {.lex_state = 86, .external_lex_state = 3}, + [980] = {.lex_state = 86, .external_lex_state = 3}, + [981] = {.lex_state = 86, .external_lex_state = 3}, + [982] = {.lex_state = 86, .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}, + [984] = {.lex_state = 260, .external_lex_state = 3}, + [985] = {.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 = 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 = 86, .external_lex_state = 3}, + [987] = {.lex_state = 89, .external_lex_state = 3}, + [988] = {.lex_state = 89, .external_lex_state = 3}, + [989] = {.lex_state = 260, .external_lex_state = 2}, + [990] = {.lex_state = 86, .external_lex_state = 2}, + [991] = {.lex_state = 89, .external_lex_state = 3}, + [992] = {.lex_state = 89, .external_lex_state = 3}, + [993] = {.lex_state = 89, .external_lex_state = 3}, [994] = {.lex_state = 89, .external_lex_state = 3}, - [995] = {.lex_state = 89, .external_lex_state = 3}, - [996] = {.lex_state = 86, .external_lex_state = 2}, + [995] = {.lex_state = 260, .external_lex_state = 2}, + [996] = {.lex_state = 89, .external_lex_state = 3}, [997] = {.lex_state = 89, .external_lex_state = 3}, [998] = {.lex_state = 89, .external_lex_state = 3}, - [999] = {.lex_state = 260, .external_lex_state = 2}, + [999] = {.lex_state = 89, .external_lex_state = 3}, [1000] = {.lex_state = 89, .external_lex_state = 3}, [1001] = {.lex_state = 89, .external_lex_state = 3}, [1002] = {.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 = 260, .external_lex_state = 2}, - [1007] = {.lex_state = 89, .external_lex_state = 3}, - [1008] = {.lex_state = 89, .external_lex_state = 3}, - [1009] = {.lex_state = 89, .external_lex_state = 3}, - [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 = 89, .external_lex_state = 3}, - [1014] = {.lex_state = 89, .external_lex_state = 3}, - [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}, - [1019] = {.lex_state = 79, .external_lex_state = 2}, - [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 = 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}, + [1003] = {.lex_state = 89, .external_lex_state = 3}, + [1004] = {.lex_state = 89, .external_lex_state = 3}, + [1005] = {.lex_state = 89, .external_lex_state = 2}, + [1006] = {.lex_state = 79, .external_lex_state = 2}, + [1007] = {.lex_state = 79, .external_lex_state = 2}, + [1008] = {.lex_state = 94, .external_lex_state = 2}, + [1009] = {.lex_state = 94, .external_lex_state = 2}, + [1010] = {.lex_state = 94, .external_lex_state = 2}, + [1011] = {.lex_state = 79, .external_lex_state = 2}, + [1012] = {.lex_state = 94, .external_lex_state = 2}, + [1013] = {.lex_state = 94, .external_lex_state = 2}, + [1014] = {.lex_state = 92, .external_lex_state = 2}, + [1015] = {.lex_state = 92, .external_lex_state = 2}, + [1016] = {.lex_state = 258, .external_lex_state = 2}, + [1017] = {.lex_state = 258, .external_lex_state = 2}, + [1018] = {.lex_state = 258, .external_lex_state = 2}, + [1019] = {.lex_state = 98, .external_lex_state = 2}, + [1020] = {.lex_state = 258, .external_lex_state = 2}, + [1021] = {.lex_state = 258, .external_lex_state = 2}, + [1022] = {.lex_state = 98, .external_lex_state = 2}, + [1023] = {.lex_state = 258, .external_lex_state = 2}, + [1024] = {.lex_state = 92, .external_lex_state = 2}, + [1025] = {.lex_state = 98, .external_lex_state = 2}, + [1026] = {.lex_state = 258, .external_lex_state = 2}, + [1027] = {.lex_state = 258, .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 = 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 = 98, .external_lex_state = 2}, - [1036] = {.lex_state = 258, .external_lex_state = 2}, - [1037] = {.lex_state = 92, .external_lex_state = 2}, + [1030] = {.lex_state = 100, .external_lex_state = 4}, + [1031] = {.lex_state = 100, .external_lex_state = 4}, + [1032] = {.lex_state = 100, .external_lex_state = 4}, + [1033] = {.lex_state = 100, .external_lex_state = 4}, + [1034] = {.lex_state = 100, .external_lex_state = 4}, + [1035] = {.lex_state = 100, .external_lex_state = 4}, + [1036] = {.lex_state = 100, .external_lex_state = 4}, + [1037] = {.lex_state = 100, .external_lex_state = 4}, [1038] = {.lex_state = 100, .external_lex_state = 4}, [1039] = {.lex_state = 100, .external_lex_state = 4}, [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 = 258, .external_lex_state = 2}, - [1044] = {.lex_state = 258, .external_lex_state = 2}, + [1043] = {.lex_state = 100, .external_lex_state = 4}, + [1044] = {.lex_state = 100, .external_lex_state = 4}, [1045] = {.lex_state = 100, .external_lex_state = 4}, [1046] = {.lex_state = 100, .external_lex_state = 4}, [1047] = {.lex_state = 100, .external_lex_state = 4}, - [1048] = {.lex_state = 100, .external_lex_state = 4}, - [1049] = {.lex_state = 100, .external_lex_state = 4}, - [1050] = {.lex_state = 100, .external_lex_state = 4}, - [1051] = {.lex_state = 100, .external_lex_state = 4}, - [1052] = {.lex_state = 100, .external_lex_state = 4}, - [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 = 100, .external_lex_state = 4}, - [1057] = {.lex_state = 100, .external_lex_state = 4}, - [1058] = {.lex_state = 258, .external_lex_state = 2}, - [1059] = {.lex_state = 258, .external_lex_state = 2}, + [1048] = {.lex_state = 102, .external_lex_state = 4}, + [1049] = {.lex_state = 102, .external_lex_state = 4}, + [1050] = {.lex_state = 102, .external_lex_state = 4}, + [1051] = {.lex_state = 102, .external_lex_state = 4}, + [1052] = {.lex_state = 102, .external_lex_state = 4}, + [1053] = {.lex_state = 102, .external_lex_state = 4}, + [1054] = {.lex_state = 102, .external_lex_state = 4}, + [1055] = {.lex_state = 102, .external_lex_state = 4}, + [1056] = {.lex_state = 102, .external_lex_state = 4}, + [1057] = {.lex_state = 102, .external_lex_state = 4}, + [1058] = {.lex_state = 102, .external_lex_state = 4}, + [1059] = {.lex_state = 102, .external_lex_state = 4}, [1060] = {.lex_state = 102, .external_lex_state = 4}, [1061] = {.lex_state = 102, .external_lex_state = 4}, [1062] = {.lex_state = 102, .external_lex_state = 4}, @@ -18954,101 +16316,101 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1069] = {.lex_state = 102, .external_lex_state = 4}, [1070] = {.lex_state = 102, .external_lex_state = 4}, [1071] = {.lex_state = 102, .external_lex_state = 4}, - [1072] = {.lex_state = 102, .external_lex_state = 4}, - [1073] = {.lex_state = 102, .external_lex_state = 4}, - [1074] = {.lex_state = 102, .external_lex_state = 4}, - [1075] = {.lex_state = 102, .external_lex_state = 4}, - [1076] = {.lex_state = 102, .external_lex_state = 4}, - [1077] = {.lex_state = 102, .external_lex_state = 4}, - [1078] = {.lex_state = 102, .external_lex_state = 4}, - [1079] = {.lex_state = 102, .external_lex_state = 4}, - [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 = 4}, + [1072] = {.lex_state = 102, .external_lex_state = 5}, + [1073] = {.lex_state = 102, .external_lex_state = 5}, + [1074] = {.lex_state = 102, .external_lex_state = 5}, + [1075] = {.lex_state = 102, .external_lex_state = 5}, + [1076] = {.lex_state = 102, .external_lex_state = 5}, + [1077] = {.lex_state = 102, .external_lex_state = 5}, + [1078] = {.lex_state = 102, .external_lex_state = 5}, + [1079] = {.lex_state = 102, .external_lex_state = 5}, + [1080] = {.lex_state = 102, .external_lex_state = 5}, + [1081] = {.lex_state = 102, .external_lex_state = 5}, + [1082] = {.lex_state = 102, .external_lex_state = 5}, + [1083] = {.lex_state = 102, .external_lex_state = 5}, [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}, + [1086] = {.lex_state = 262, .external_lex_state = 5}, + [1087] = {.lex_state = 102, .external_lex_state = 4}, + [1088] = {.lex_state = 262, .external_lex_state = 5}, + [1089] = {.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}, + [1092] = {.lex_state = 102, .external_lex_state = 4}, [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 = 102, .external_lex_state = 5}, - [1097] = {.lex_state = 262, .external_lex_state = 5}, + [1097] = {.lex_state = 102, .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 = 4}, + [1100] = {.lex_state = 102, .external_lex_state = 5}, [1101] = {.lex_state = 102, .external_lex_state = 4}, - [1102] = {.lex_state = 102, .external_lex_state = 5}, + [1102] = {.lex_state = 262, .external_lex_state = 5}, [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}, + [1106] = {.lex_state = 102, .external_lex_state = 4}, + [1107] = {.lex_state = 102, .external_lex_state = 4}, [1108] = {.lex_state = 102, .external_lex_state = 5}, - [1109] = {.lex_state = 102, .external_lex_state = 5}, - [1110] = {.lex_state = 102, .external_lex_state = 5}, + [1109] = {.lex_state = 102, .external_lex_state = 4}, + [1110] = {.lex_state = 262, .external_lex_state = 5}, [1111] = {.lex_state = 102, .external_lex_state = 5}, - [1112] = {.lex_state = 102, .external_lex_state = 5}, + [1112] = {.lex_state = 262, .external_lex_state = 5}, [1113] = {.lex_state = 102, .external_lex_state = 5}, - [1114] = {.lex_state = 102, .external_lex_state = 5}, - [1115] = {.lex_state = 262, .external_lex_state = 5}, + [1114] = {.lex_state = 262, .external_lex_state = 5}, + [1115] = {.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}, + [1117] = {.lex_state = 102, .external_lex_state = 5}, + [1118] = {.lex_state = 102, .external_lex_state = 5}, + [1119] = {.lex_state = 102, .external_lex_state = 5}, [1120] = {.lex_state = 102, .external_lex_state = 5}, - [1121] = {.lex_state = 262, .external_lex_state = 5}, + [1121] = {.lex_state = 102, .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 = 5}, - [1125] = {.lex_state = 102, .external_lex_state = 5}, + [1125] = {.lex_state = 102, .external_lex_state = 4}, [1126] = {.lex_state = 262, .external_lex_state = 5}, - [1127] = {.lex_state = 102, .external_lex_state = 4}, + [1127] = {.lex_state = 262, .external_lex_state = 5}, [1128] = {.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 = 5}, - [1133] = {.lex_state = 102, .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 = 102, .external_lex_state = 5}, - [1142] = {.lex_state = 102, .external_lex_state = 5}, + [1130] = {.lex_state = 102, .external_lex_state = 5}, + [1131] = {.lex_state = 262, .external_lex_state = 5}, + [1132] = {.lex_state = 262, .external_lex_state = 5}, + [1133] = {.lex_state = 262, .external_lex_state = 5}, + [1134] = {.lex_state = 262, .external_lex_state = 5}, + [1135] = {.lex_state = 262, .external_lex_state = 5}, + [1136] = {.lex_state = 262, .external_lex_state = 5}, + [1137] = {.lex_state = 262, .external_lex_state = 5}, + [1138] = {.lex_state = 262, .external_lex_state = 5}, + [1139] = {.lex_state = 262, .external_lex_state = 5}, + [1140] = {.lex_state = 262, .external_lex_state = 5}, + [1141] = {.lex_state = 262, .external_lex_state = 5}, + [1142] = {.lex_state = 262, .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}, + [1145] = {.lex_state = 107, .external_lex_state = 5}, [1146] = {.lex_state = 102, .external_lex_state = 5}, [1147] = {.lex_state = 102, .external_lex_state = 5}, [1148] = {.lex_state = 102, .external_lex_state = 5}, - [1149] = {.lex_state = 262, .external_lex_state = 5}, + [1149] = {.lex_state = 102, .external_lex_state = 5}, [1150] = {.lex_state = 102, .external_lex_state = 5}, - [1151] = {.lex_state = 262, .external_lex_state = 5}, + [1151] = {.lex_state = 102, .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}, + [1153] = {.lex_state = 107, .external_lex_state = 5}, + [1154] = {.lex_state = 102, .external_lex_state = 5}, + [1155] = {.lex_state = 102, .external_lex_state = 5}, + [1156] = {.lex_state = 107, .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}, + [1158] = {.lex_state = 107, .external_lex_state = 5}, + [1159] = {.lex_state = 107, .external_lex_state = 5}, + [1160] = {.lex_state = 107, .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}, + [1162] = {.lex_state = 102, .external_lex_state = 5}, + [1163] = {.lex_state = 107, .external_lex_state = 5}, + [1164] = {.lex_state = 262, .external_lex_state = 5}, + [1165] = {.lex_state = 262, .external_lex_state = 5}, + [1166] = {.lex_state = 107, .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}, @@ -19057,560 +16419,560 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [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 = 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}, + [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 = 107, .external_lex_state = 5}, [1191] = {.lex_state = 107, .external_lex_state = 5}, - [1192] = {.lex_state = 262, .external_lex_state = 5}, + [1192] = {.lex_state = 107, .external_lex_state = 5}, [1193] = {.lex_state = 107, .external_lex_state = 5}, - [1194] = {.lex_state = 262, .external_lex_state = 5}, - [1195] = {.lex_state = 102, .external_lex_state = 5}, - [1196] = {.lex_state = 102, .external_lex_state = 5}, + [1194] = {.lex_state = 107, .external_lex_state = 5}, + [1195] = {.lex_state = 107, .external_lex_state = 5}, + [1196] = {.lex_state = 107, .external_lex_state = 5}, [1197] = {.lex_state = 107, .external_lex_state = 5}, - [1198] = {.lex_state = 107, .external_lex_state = 5}, + [1198] = {.lex_state = 102, .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}, + [1201] = {.lex_state = 102, .external_lex_state = 5}, + [1202] = {.lex_state = 102, .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}, + [1204] = {.lex_state = 107, .external_lex_state = 5}, + [1205] = {.lex_state = 107, .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}, + [1209] = {.lex_state = 102, .external_lex_state = 5}, [1210] = {.lex_state = 102, .external_lex_state = 5}, - [1211] = {.lex_state = 102, .external_lex_state = 5}, + [1211] = {.lex_state = 107, .external_lex_state = 5}, [1212] = {.lex_state = 102, .external_lex_state = 5}, - [1213] = {.lex_state = 107, .external_lex_state = 5}, - [1214] = {.lex_state = 107, .external_lex_state = 5}, + [1213] = {.lex_state = 102, .external_lex_state = 5}, + [1214] = {.lex_state = 102, .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 = 262, .external_lex_state = 5}, + [1219] = {.lex_state = 102, .external_lex_state = 5}, [1220] = {.lex_state = 102, .external_lex_state = 5}, - [1221] = {.lex_state = 102, .external_lex_state = 4}, + [1221] = {.lex_state = 262, .external_lex_state = 5}, [1222] = {.lex_state = 107, .external_lex_state = 5}, - [1223] = {.lex_state = 107, .external_lex_state = 5}, - [1224] = {.lex_state = 102, .external_lex_state = 5}, + [1223] = {.lex_state = 262, .external_lex_state = 5}, + [1224] = {.lex_state = 107, .external_lex_state = 5}, [1225] = {.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 = 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}, + [1228] = {.lex_state = 262, .external_lex_state = 5}, + [1229] = {.lex_state = 107, .external_lex_state = 5}, + [1230] = {.lex_state = 107, .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 = 262, .external_lex_state = 5}, [1235] = {.lex_state = 102, .external_lex_state = 5}, - [1236] = {.lex_state = 107, .external_lex_state = 5}, + [1236] = {.lex_state = 102, .external_lex_state = 5}, [1237] = {.lex_state = 262, .external_lex_state = 5}, [1238] = {.lex_state = 262, .external_lex_state = 5}, - [1239] = {.lex_state = 102, .external_lex_state = 5}, + [1239] = {.lex_state = 262, .external_lex_state = 5}, [1240] = {.lex_state = 102, .external_lex_state = 5}, - [1241] = {.lex_state = 102, .external_lex_state = 5}, + [1241] = {.lex_state = 107, .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 = 262, .external_lex_state = 5}, + [1247] = {.lex_state = 102, .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 = 107, .external_lex_state = 5}, - [1252] = {.lex_state = 107, .external_lex_state = 5}, + [1249] = {.lex_state = 107, .external_lex_state = 5}, + [1250] = {.lex_state = 107, .external_lex_state = 5}, + [1251] = {.lex_state = 102, .external_lex_state = 5}, + [1252] = {.lex_state = 102, .external_lex_state = 5}, [1253] = {.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 = 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}, + [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 = 5}, + [1261] = {.lex_state = 102, .external_lex_state = 5}, [1262] = {.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}, + [1265] = {.lex_state = 102, .external_lex_state = 5}, + [1266] = {.lex_state = 102, .external_lex_state = 5}, [1267] = {.lex_state = 102, .external_lex_state = 5}, - [1268] = {.lex_state = 107, .external_lex_state = 5}, + [1268] = {.lex_state = 102, .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 = 107, .external_lex_state = 5}, + [1270] = {.lex_state = 102, .external_lex_state = 5}, + [1271] = {.lex_state = 102, .external_lex_state = 5}, + [1272] = {.lex_state = 102, .external_lex_state = 5}, + [1273] = {.lex_state = 102, .external_lex_state = 5}, + [1274] = {.lex_state = 102, .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}, + [1277] = {.lex_state = 102, .external_lex_state = 5}, [1278] = {.lex_state = 102, .external_lex_state = 5}, - [1279] = {.lex_state = 102, .external_lex_state = 5}, + [1279] = {.lex_state = 107, .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}, + [1282] = {.lex_state = 102, .external_lex_state = 5}, + [1283] = {.lex_state = 102, .external_lex_state = 5}, + [1284] = {.lex_state = 102, .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}, + [1288] = {.lex_state = 102, .external_lex_state = 5}, + [1289] = {.lex_state = 102, .external_lex_state = 5}, + [1290] = {.lex_state = 102, .external_lex_state = 5}, + [1291] = {.lex_state = 102, .external_lex_state = 4}, + [1292] = {.lex_state = 102, .external_lex_state = 4}, + [1293] = {.lex_state = 107, .external_lex_state = 5}, + [1294] = {.lex_state = 102, .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}, + [1299] = {.lex_state = 262, .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}, + [1302] = {.lex_state = 262, .external_lex_state = 5}, + [1303] = {.lex_state = 262, .external_lex_state = 5}, + [1304] = {.lex_state = 102, .external_lex_state = 5}, + [1305] = {.lex_state = 262, .external_lex_state = 5}, + [1306] = {.lex_state = 102, .external_lex_state = 5}, [1307] = {.lex_state = 107, .external_lex_state = 5}, - [1308] = {.lex_state = 107, .external_lex_state = 5}, + [1308] = {.lex_state = 262, .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}, + [1310] = {.lex_state = 262, .external_lex_state = 5}, + [1311] = {.lex_state = 262, .external_lex_state = 5}, + [1312] = {.lex_state = 262, .external_lex_state = 5}, + [1313] = {.lex_state = 110, .external_lex_state = 5}, + [1314] = {.lex_state = 262, .external_lex_state = 5}, + [1315] = {.lex_state = 110, .external_lex_state = 5}, + [1316] = {.lex_state = 110, .external_lex_state = 5}, + [1317] = {.lex_state = 262, .external_lex_state = 5}, + [1318] = {.lex_state = 262, .external_lex_state = 4}, + [1319] = {.lex_state = 262, .external_lex_state = 4}, + [1320] = {.lex_state = 262, .external_lex_state = 5}, + [1321] = {.lex_state = 262, .external_lex_state = 4}, [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 = 110, .external_lex_state = 5}, + [1323] = {.lex_state = 110, .external_lex_state = 5}, + [1324] = {.lex_state = 110, .external_lex_state = 5}, + [1325] = {.lex_state = 262, .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 = 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 = 102, .external_lex_state = 5}, - [1339] = {.lex_state = 102, .external_lex_state = 4}, + [1328] = {.lex_state = 110, .external_lex_state = 5}, + [1329] = {.lex_state = 262, .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 = 110, .external_lex_state = 5}, + [1334] = {.lex_state = 110, .external_lex_state = 5}, + [1335] = {.lex_state = 110, .external_lex_state = 5}, + [1336] = {.lex_state = 102, .external_lex_state = 4}, + [1337] = {.lex_state = 102, .external_lex_state = 4}, + [1338] = {.lex_state = 102, .external_lex_state = 4}, + [1339] = {.lex_state = 102, .external_lex_state = 5}, [1340] = {.lex_state = 102, .external_lex_state = 4}, - [1341] = {.lex_state = 102, .external_lex_state = 5}, + [1341] = {.lex_state = 110, .external_lex_state = 5}, [1342] = {.lex_state = 110, .external_lex_state = 5}, - [1343] = {.lex_state = 102, .external_lex_state = 5}, + [1343] = {.lex_state = 110, .external_lex_state = 5}, [1344] = {.lex_state = 102, .external_lex_state = 5}, - [1345] = {.lex_state = 110, .external_lex_state = 5}, + [1345] = {.lex_state = 102, .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}, + [1349] = {.lex_state = 102, .external_lex_state = 4}, [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 = 4}, - [1359] = {.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 = 110, .external_lex_state = 5}, - [1363] = {.lex_state = 262, .external_lex_state = 5}, + [1353] = {.lex_state = 110, .external_lex_state = 5}, + [1354] = {.lex_state = 110, .external_lex_state = 5}, + [1355] = {.lex_state = 102, .external_lex_state = 4}, + [1356] = {.lex_state = 102, .external_lex_state = 4}, + [1357] = {.lex_state = 102, .external_lex_state = 4}, + [1358] = {.lex_state = 110, .external_lex_state = 5}, + [1359] = {.lex_state = 110, .external_lex_state = 5}, + [1360] = {.lex_state = 262, .external_lex_state = 5}, + [1361] = {.lex_state = 110, .external_lex_state = 5}, + [1362] = {.lex_state = 102, .external_lex_state = 4}, + [1363] = {.lex_state = 110, .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}, + [1365] = {.lex_state = 262, .external_lex_state = 5}, + [1366] = {.lex_state = 110, .external_lex_state = 5}, + [1367] = {.lex_state = 262, .external_lex_state = 5}, + [1368] = {.lex_state = 262, .external_lex_state = 5}, + [1369] = {.lex_state = 110, .external_lex_state = 5}, [1370] = {.lex_state = 262, .external_lex_state = 5}, [1371] = {.lex_state = 262, .external_lex_state = 5}, [1372] = {.lex_state = 262, .external_lex_state = 5}, - [1373] = {.lex_state = 262, .external_lex_state = 5}, + [1373] = {.lex_state = 110, .external_lex_state = 5}, [1374] = {.lex_state = 262, .external_lex_state = 5}, - [1375] = {.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}, + [1375] = {.lex_state = 110, .external_lex_state = 5}, + [1376] = {.lex_state = 262, .external_lex_state = 5}, + [1377] = {.lex_state = 262, .external_lex_state = 5}, + [1378] = {.lex_state = 110, .external_lex_state = 5}, [1379] = {.lex_state = 262, .external_lex_state = 5}, - [1380] = {.lex_state = 102, .external_lex_state = 4}, + [1380] = {.lex_state = 262, .external_lex_state = 5}, [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 = 262, .external_lex_state = 5}, - [1385] = {.lex_state = 262, .external_lex_state = 5}, + [1383] = {.lex_state = 110, .external_lex_state = 5}, + [1384] = {.lex_state = 110, .external_lex_state = 5}, + [1385] = {.lex_state = 110, .external_lex_state = 5}, [1386] = {.lex_state = 262, .external_lex_state = 5}, - [1387] = {.lex_state = 102, .external_lex_state = 4}, - [1388] = {.lex_state = 102, .external_lex_state = 4}, + [1387] = {.lex_state = 262, .external_lex_state = 5}, + [1388] = {.lex_state = 262, .external_lex_state = 5}, [1389] = {.lex_state = 262, .external_lex_state = 5}, [1390] = {.lex_state = 262, .external_lex_state = 5}, - [1391] = {.lex_state = 110, .external_lex_state = 5}, + [1391] = {.lex_state = 262, .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 = 262, .external_lex_state = 5}, - [1396] = {.lex_state = 262, .external_lex_state = 5}, + [1393] = {.lex_state = 110, .external_lex_state = 5}, + [1394] = {.lex_state = 262, .external_lex_state = 5}, + [1395] = {.lex_state = 102, .external_lex_state = 4}, + [1396] = {.lex_state = 110, .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 = 102, .external_lex_state = 4}, - [1401] = {.lex_state = 110, .external_lex_state = 5}, - [1402] = {.lex_state = 110, .external_lex_state = 5}, - [1403] = {.lex_state = 262, .external_lex_state = 5}, - [1404] = {.lex_state = 102, .external_lex_state = 5}, + [1398] = {.lex_state = 262, .external_lex_state = 5}, + [1399] = {.lex_state = 262, .external_lex_state = 5}, + [1400] = {.lex_state = 262, .external_lex_state = 5}, + [1401] = {.lex_state = 262, .external_lex_state = 5}, + [1402] = {.lex_state = 262, .external_lex_state = 5}, + [1403] = {.lex_state = 102, .external_lex_state = 4}, + [1404] = {.lex_state = 102, .external_lex_state = 4}, [1405] = {.lex_state = 262, .external_lex_state = 5}, [1406] = {.lex_state = 262, .external_lex_state = 5}, - [1407] = {.lex_state = 262, .external_lex_state = 5}, + [1407] = {.lex_state = 102, .external_lex_state = 4}, [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}, + [1410] = {.lex_state = 262, .external_lex_state = 5}, + [1411] = {.lex_state = 110, .external_lex_state = 5}, + [1412] = {.lex_state = 110, .external_lex_state = 5}, [1413] = {.lex_state = 262, .external_lex_state = 5}, - [1414] = {.lex_state = 262, .external_lex_state = 5}, + [1414] = {.lex_state = 110, .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 = 102, .external_lex_state = 5}, - [1419] = {.lex_state = 102, .external_lex_state = 5}, + [1416] = {.lex_state = 110, .external_lex_state = 5}, + [1417] = {.lex_state = 110, .external_lex_state = 5}, + [1418] = {.lex_state = 110, .external_lex_state = 5}, + [1419] = {.lex_state = 262, .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 = 102, .external_lex_state = 5}, - [1428] = {.lex_state = 102, .external_lex_state = 5}, + [1421] = {.lex_state = 110, .external_lex_state = 5}, + [1422] = {.lex_state = 110, .external_lex_state = 5}, + [1423] = {.lex_state = 262, .external_lex_state = 5}, + [1424] = {.lex_state = 262, .external_lex_state = 5}, + [1425] = {.lex_state = 102, .external_lex_state = 4}, + [1426] = {.lex_state = 102, .external_lex_state = 4}, + [1427] = {.lex_state = 262, .external_lex_state = 5}, + [1428] = {.lex_state = 262, .external_lex_state = 5}, [1429] = {.lex_state = 262, .external_lex_state = 5}, [1430] = {.lex_state = 262, .external_lex_state = 5}, - [1431] = {.lex_state = 102, .external_lex_state = 5}, + [1431] = {.lex_state = 262, .external_lex_state = 5}, [1432] = {.lex_state = 262, .external_lex_state = 5}, - [1433] = {.lex_state = 102, .external_lex_state = 5}, - [1434] = {.lex_state = 262, .external_lex_state = 5}, + [1433] = {.lex_state = 262, .external_lex_state = 5}, + [1434] = {.lex_state = 102, .external_lex_state = 4}, [1435] = {.lex_state = 262, .external_lex_state = 5}, [1436] = {.lex_state = 262, .external_lex_state = 5}, - [1437] = {.lex_state = 262, .external_lex_state = 5}, - [1438] = {.lex_state = 102, .external_lex_state = 5}, + [1437] = {.lex_state = 110, .external_lex_state = 5}, + [1438] = {.lex_state = 262, .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}, + [1442] = {.lex_state = 102, .external_lex_state = 5}, + [1443] = {.lex_state = 102, .external_lex_state = 5}, + [1444] = {.lex_state = 262, .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}, + [1446] = {.lex_state = 102, .external_lex_state = 4}, + [1447] = {.lex_state = 102, .external_lex_state = 4}, + [1448] = {.lex_state = 102, .external_lex_state = 5}, + [1449] = {.lex_state = 102, .external_lex_state = 5}, + [1450] = {.lex_state = 102, .external_lex_state = 5}, [1451] = {.lex_state = 262, .external_lex_state = 5}, - [1452] = {.lex_state = 110, .external_lex_state = 5}, + [1452] = {.lex_state = 262, .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}, + [1455] = {.lex_state = 102, .external_lex_state = 5}, + [1456] = {.lex_state = 262, .external_lex_state = 5}, + [1457] = {.lex_state = 102, .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}, + [1459] = {.lex_state = 102, .external_lex_state = 5}, + [1460] = {.lex_state = 102, .external_lex_state = 5}, + [1461] = {.lex_state = 262, .external_lex_state = 5}, + [1462] = {.lex_state = 102, .external_lex_state = 5}, + [1463] = {.lex_state = 102, .external_lex_state = 5}, + [1464] = {.lex_state = 262, .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 = 110, .external_lex_state = 5}, - [1470] = {.lex_state = 262, .external_lex_state = 5}, + [1466] = {.lex_state = 110, .external_lex_state = 5}, + [1467] = {.lex_state = 110, .external_lex_state = 5}, + [1468] = {.lex_state = 102, .external_lex_state = 5}, + [1469] = {.lex_state = 262, .external_lex_state = 5}, + [1470] = {.lex_state = 102, .external_lex_state = 4}, [1471] = {.lex_state = 262, .external_lex_state = 5}, [1472] = {.lex_state = 262, .external_lex_state = 5}, - [1473] = {.lex_state = 262, .external_lex_state = 5}, + [1473] = {.lex_state = 110, .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}, + [1475] = {.lex_state = 102, .external_lex_state = 5}, + [1476] = {.lex_state = 110, .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}, + [1479] = {.lex_state = 262, .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}, + [1482] = {.lex_state = 102, .external_lex_state = 5}, + [1483] = {.lex_state = 110, .external_lex_state = 5}, + [1484] = {.lex_state = 110, .external_lex_state = 5}, + [1485] = {.lex_state = 262, .external_lex_state = 5}, + [1486] = {.lex_state = 102, .external_lex_state = 5}, [1487] = {.lex_state = 262, .external_lex_state = 5}, - [1488] = {.lex_state = 262, .external_lex_state = 5}, + [1488] = {.lex_state = 102, .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}, + [1490] = {.lex_state = 262, .external_lex_state = 5}, + [1491] = {.lex_state = 102, .external_lex_state = 5}, + [1492] = {.lex_state = 262, .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 = 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}, + [1497] = {.lex_state = 262, .external_lex_state = 5}, + [1498] = {.lex_state = 102, .external_lex_state = 5}, + [1499] = {.lex_state = 262, .external_lex_state = 5}, + [1500] = {.lex_state = 262, .external_lex_state = 5}, [1501] = {.lex_state = 262, .external_lex_state = 5}, - [1502] = {.lex_state = 102, .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}, + [1502] = {.lex_state = 262, .external_lex_state = 5}, + [1503] = {.lex_state = 262, .external_lex_state = 5}, + [1504] = {.lex_state = 262, .external_lex_state = 5}, + [1505] = {.lex_state = 262, .external_lex_state = 5}, + [1506] = {.lex_state = 102, .external_lex_state = 4}, + [1507] = {.lex_state = 102, .external_lex_state = 4}, + [1508] = {.lex_state = 102, .external_lex_state = 4}, [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}, + [1510] = {.lex_state = 102, .external_lex_state = 4}, + [1511] = {.lex_state = 262, .external_lex_state = 5}, + [1512] = {.lex_state = 262, .external_lex_state = 5}, + [1513] = {.lex_state = 113, .external_lex_state = 4}, [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}, + [1515] = {.lex_state = 102, .external_lex_state = 4}, + [1516] = {.lex_state = 102, .external_lex_state = 4}, + [1517] = {.lex_state = 102, .external_lex_state = 4}, [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 = 102, .external_lex_state = 4}, - [1526] = {.lex_state = 262, .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}, + [1519] = {.lex_state = 113, .external_lex_state = 4}, + [1520] = {.lex_state = 113, .external_lex_state = 4}, + [1521] = {.lex_state = 113, .external_lex_state = 4}, + [1522] = {.lex_state = 113, .external_lex_state = 4}, + [1523] = {.lex_state = 113, .external_lex_state = 4}, + [1524] = {.lex_state = 113, .external_lex_state = 4}, + [1525] = {.lex_state = 113, .external_lex_state = 4}, + [1526] = {.lex_state = 102, .external_lex_state = 4}, + [1527] = {.lex_state = 102, .external_lex_state = 4}, + [1528] = {.lex_state = 113, .external_lex_state = 4}, + [1529] = {.lex_state = 113, .external_lex_state = 4}, [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}, + [1531] = {.lex_state = 113, .external_lex_state = 4}, + [1532] = {.lex_state = 113, .external_lex_state = 4}, + [1533] = {.lex_state = 113, .external_lex_state = 4}, [1534] = {.lex_state = 113, .external_lex_state = 4}, - [1535] = {.lex_state = 262, .external_lex_state = 5}, + [1535] = {.lex_state = 113, .external_lex_state = 4}, [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}, + [1537] = {.lex_state = 113, .external_lex_state = 4}, + [1538] = {.lex_state = 113, .external_lex_state = 4}, + [1539] = {.lex_state = 113, .external_lex_state = 4}, + [1540] = {.lex_state = 113, .external_lex_state = 4}, + [1541] = {.lex_state = 113, .external_lex_state = 4}, [1542] = {.lex_state = 113, .external_lex_state = 4}, [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}, + [1544] = {.lex_state = 113, .external_lex_state = 4}, + [1545] = {.lex_state = 113, .external_lex_state = 4}, + [1546] = {.lex_state = 113, .external_lex_state = 4}, [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 = 102, .external_lex_state = 4}, - [1551] = {.lex_state = 102, .external_lex_state = 4}, + [1549] = {.lex_state = 113, .external_lex_state = 4}, + [1550] = {.lex_state = 113, .external_lex_state = 4}, + [1551] = {.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}, + [1553] = {.lex_state = 113, .external_lex_state = 4}, + [1554] = {.lex_state = 113, .external_lex_state = 4}, + [1555] = {.lex_state = 102, .external_lex_state = 4}, + [1556] = {.lex_state = 113, .external_lex_state = 4}, + [1557] = {.lex_state = 113, .external_lex_state = 4}, [1558] = {.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 = 113, .external_lex_state = 4}, - [1565] = {.lex_state = 113, .external_lex_state = 4}, - [1566] = {.lex_state = 113, .external_lex_state = 4}, - [1567] = {.lex_state = 113, .external_lex_state = 4}, - [1568] = {.lex_state = 113, .external_lex_state = 4}, + [1559] = {.lex_state = 113, .external_lex_state = 4}, + [1560] = {.lex_state = 113, .external_lex_state = 4}, + [1561] = {.lex_state = 102, .external_lex_state = 4}, + [1562] = {.lex_state = 262, .external_lex_state = 5}, + [1563] = {.lex_state = 262, .external_lex_state = 5}, + [1564] = {.lex_state = 262, .external_lex_state = 4}, + [1565] = {.lex_state = 262, .external_lex_state = 5}, + [1566] = {.lex_state = 262, .external_lex_state = 5}, + [1567] = {.lex_state = 262, .external_lex_state = 5}, + [1568] = {.lex_state = 102, .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}, + [1570] = {.lex_state = 102, .external_lex_state = 4}, + [1571] = {.lex_state = 102, .external_lex_state = 4}, + [1572] = {.lex_state = 102, .external_lex_state = 4}, [1573] = {.lex_state = 102, .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}, + [1574] = {.lex_state = 102, .external_lex_state = 4}, + [1575] = {.lex_state = 102, .external_lex_state = 4}, + [1576] = {.lex_state = 102, .external_lex_state = 4}, + [1577] = {.lex_state = 102, .external_lex_state = 4}, + [1578] = {.lex_state = 262, .external_lex_state = 5}, [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}, + [1580] = {.lex_state = 102, .external_lex_state = 4}, + [1581] = {.lex_state = 102, .external_lex_state = 4}, + [1582] = {.lex_state = 102, .external_lex_state = 4}, + [1583] = {.lex_state = 113, .external_lex_state = 4}, [1584] = {.lex_state = 102, .external_lex_state = 4}, [1585] = {.lex_state = 102, .external_lex_state = 4}, [1586] = {.lex_state = 102, .external_lex_state = 4}, - [1587] = {.lex_state = 102, .external_lex_state = 4}, - [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 = 262, .external_lex_state = 5}, + [1587] = {.lex_state = 262, .external_lex_state = 5}, + [1588] = {.lex_state = 262, .external_lex_state = 5}, + [1589] = {.lex_state = 102, .external_lex_state = 4}, + [1590] = {.lex_state = 102, .external_lex_state = 4}, + [1591] = {.lex_state = 102, .external_lex_state = 4}, [1592] = {.lex_state = 102, .external_lex_state = 4}, - [1593] = {.lex_state = 262, .external_lex_state = 5}, + [1593] = {.lex_state = 102, .external_lex_state = 4}, [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}, + [1596] = {.lex_state = 262, .external_lex_state = 5}, + [1597] = {.lex_state = 102, .external_lex_state = 4}, + [1598] = {.lex_state = 113, .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}, + [1601] = {.lex_state = 102, .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}, + [1603] = {.lex_state = 262, .external_lex_state = 4}, + [1604] = {.lex_state = 262, .external_lex_state = 4}, [1605] = {.lex_state = 102, .external_lex_state = 4}, [1606] = {.lex_state = 102, .external_lex_state = 4}, - [1607] = {.lex_state = 102, .external_lex_state = 4}, + [1607] = {.lex_state = 262, .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}, + [1613] = {.lex_state = 113, .external_lex_state = 4}, + [1614] = {.lex_state = 113, .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}, + [1616] = {.lex_state = 113, .external_lex_state = 4}, + [1617] = {.lex_state = 262, .external_lex_state = 5}, [1618] = {.lex_state = 102, .external_lex_state = 4}, - [1619] = {.lex_state = 262, .external_lex_state = 5}, + [1619] = {.lex_state = 102, .external_lex_state = 4}, [1620] = {.lex_state = 102, .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}, + [1623] = {.lex_state = 102, .external_lex_state = 4}, [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}, + [1626] = {.lex_state = 102, .external_lex_state = 4}, + [1627] = {.lex_state = 102, .external_lex_state = 4}, + [1628] = {.lex_state = 102, .external_lex_state = 4}, + [1629] = {.lex_state = 102, .external_lex_state = 4}, + [1630] = {.lex_state = 262, .external_lex_state = 5}, + [1631] = {.lex_state = 262, .external_lex_state = 5}, + [1632] = {.lex_state = 262, .external_lex_state = 5}, [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 = 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}, + [1635] = {.lex_state = 262, .external_lex_state = 4}, + [1636] = {.lex_state = 262, .external_lex_state = 5}, + [1637] = {.lex_state = 262, .external_lex_state = 5}, + [1638] = {.lex_state = 262, .external_lex_state = 5}, + [1639] = {.lex_state = 262, .external_lex_state = 5}, + [1640] = {.lex_state = 262, .external_lex_state = 5}, + [1641] = {.lex_state = 262, .external_lex_state = 5}, [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}, + [1643] = {.lex_state = 262, .external_lex_state = 5}, + [1644] = {.lex_state = 262, .external_lex_state = 5}, + [1645] = {.lex_state = 262, .external_lex_state = 5}, + [1646] = {.lex_state = 262, .external_lex_state = 4}, [1647] = {.lex_state = 102, .external_lex_state = 4}, [1648] = {.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 = 5}, - [1652] = {.lex_state = 102, .external_lex_state = 4}, - [1653] = {.lex_state = 102, .external_lex_state = 4}, + [1649] = {.lex_state = 262, .external_lex_state = 4}, + [1650] = {.lex_state = 262, .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 = 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}, + [1655] = {.lex_state = 262, .external_lex_state = 4}, + [1656] = {.lex_state = 262, .external_lex_state = 4}, + [1657] = {.lex_state = 262, .external_lex_state = 4}, + [1658] = {.lex_state = 102, .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}, + [1661] = {.lex_state = 262, .external_lex_state = 5}, [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 = 113, .external_lex_state = 4}, + [1663] = {.lex_state = 102, .external_lex_state = 4}, + [1664] = {.lex_state = 102, .external_lex_state = 4}, + [1665] = {.lex_state = 102, .external_lex_state = 4}, [1666] = {.lex_state = 262, .external_lex_state = 4}, - [1667] = {.lex_state = 262, .external_lex_state = 4}, - [1668] = {.lex_state = 262, .external_lex_state = 4}, + [1667] = {.lex_state = 102, .external_lex_state = 4}, + [1668] = {.lex_state = 102, .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 = 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 = 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}, + [1670] = {.lex_state = 102, .external_lex_state = 4}, + [1671] = {.lex_state = 102, .external_lex_state = 4}, + [1672] = {.lex_state = 102, .external_lex_state = 4}, + [1673] = {.lex_state = 102, .external_lex_state = 4}, + [1674] = {.lex_state = 102, .external_lex_state = 4}, + [1675] = {.lex_state = 102, .external_lex_state = 4}, + [1676] = {.lex_state = 102, .external_lex_state = 4}, + [1677] = {.lex_state = 102, .external_lex_state = 4}, + [1678] = {.lex_state = 102, .external_lex_state = 4}, + [1679] = {.lex_state = 102, .external_lex_state = 4}, + [1680] = {.lex_state = 102, .external_lex_state = 4}, + [1681] = {.lex_state = 102, .external_lex_state = 4}, + [1682] = {.lex_state = 102, .external_lex_state = 4}, + [1683] = {.lex_state = 102, .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}, + [1685] = {.lex_state = 102, .external_lex_state = 4}, + [1686] = {.lex_state = 262, .external_lex_state = 5}, + [1687] = {.lex_state = 262, .external_lex_state = 5}, + [1688] = {.lex_state = 262, .external_lex_state = 4}, + [1689] = {.lex_state = 262, .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}, + [1692] = {.lex_state = 113, .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 = 262, .external_lex_state = 5}, + [1696] = {.lex_state = 113, .external_lex_state = 4}, + [1697] = {.lex_state = 113, .external_lex_state = 4}, [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 = 113, .external_lex_state = 4}, - [1702] = {.lex_state = 102, .external_lex_state = 4}, - [1703] = {.lex_state = 102, .external_lex_state = 4}, + [1699] = {.lex_state = 113, .external_lex_state = 4}, + [1700] = {.lex_state = 102, .external_lex_state = 4}, + [1701] = {.lex_state = 102, .external_lex_state = 4}, + [1702] = {.lex_state = 113, .external_lex_state = 4}, + [1703] = {.lex_state = 113, .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}, + [1705] = {.lex_state = 262, .external_lex_state = 5}, + [1706] = {.lex_state = 262, .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}, + [1709] = {.lex_state = 262, .external_lex_state = 4}, + [1710] = {.lex_state = 262, .external_lex_state = 4}, + [1711] = {.lex_state = 262, .external_lex_state = 4}, + [1712] = {.lex_state = 262, .external_lex_state = 5}, + [1713] = {.lex_state = 262, .external_lex_state = 5}, + [1714] = {.lex_state = 264, .external_lex_state = 5}, + [1715] = {.lex_state = 264, .external_lex_state = 5}, + [1716] = {.lex_state = 264, .external_lex_state = 5}, + [1717] = {.lex_state = 102, .external_lex_state = 4}, + [1718] = {.lex_state = 102, .external_lex_state = 4}, + [1719] = {.lex_state = 102, .external_lex_state = 4}, + [1720] = {.lex_state = 102, .external_lex_state = 4}, + [1721] = {.lex_state = 102, .external_lex_state = 4}, + [1722] = {.lex_state = 102, .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 = 102, .external_lex_state = 4}, - [1727] = {.lex_state = 262, .external_lex_state = 5}, - [1728] = {.lex_state = 264, .external_lex_state = 5}, + [1727] = {.lex_state = 102, .external_lex_state = 4}, + [1728] = {.lex_state = 102, .external_lex_state = 4}, [1729] = {.lex_state = 102, .external_lex_state = 4}, [1730] = {.lex_state = 102, .external_lex_state = 4}, [1731] = {.lex_state = 102, .external_lex_state = 4}, @@ -19625,99 +16987,99 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 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 = 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 = 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}, + [1743] = {.lex_state = 264, .external_lex_state = 5}, + [1744] = {.lex_state = 262, .external_lex_state = 4}, + [1745] = {.lex_state = 262, .external_lex_state = 4}, + [1746] = {.lex_state = 118, .external_lex_state = 4}, + [1747] = {.lex_state = 118, .external_lex_state = 4}, + [1748] = {.lex_state = 118, .external_lex_state = 4}, + [1749] = {.lex_state = 118, .external_lex_state = 4}, + [1750] = {.lex_state = 118, .external_lex_state = 4}, + [1751] = {.lex_state = 118, .external_lex_state = 4}, + [1752] = {.lex_state = 262, .external_lex_state = 4}, + [1753] = {.lex_state = 262, .external_lex_state = 4}, + [1754] = {.lex_state = 262, .external_lex_state = 4}, + [1755] = {.lex_state = 262, .external_lex_state = 4}, + [1756] = {.lex_state = 262, .external_lex_state = 4}, + [1757] = {.lex_state = 118, .external_lex_state = 4}, + [1758] = {.lex_state = 262, .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}, + [1760] = {.lex_state = 118, .external_lex_state = 4}, + [1761] = {.lex_state = 118, .external_lex_state = 4}, + [1762] = {.lex_state = 118, .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}, + [1765] = {.lex_state = 118, .external_lex_state = 4}, + [1766] = {.lex_state = 118, .external_lex_state = 4}, + [1767] = {.lex_state = 262, .external_lex_state = 4}, + [1768] = {.lex_state = 262, .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}, + [1770] = {.lex_state = 262, .external_lex_state = 5}, + [1771] = {.lex_state = 262, .external_lex_state = 5}, [1772] = {.lex_state = 118, .external_lex_state = 4}, [1773] = {.lex_state = 118, .external_lex_state = 4}, - [1774] = {.lex_state = 262, .external_lex_state = 4}, + [1774] = {.lex_state = 118, .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}, + [1776] = {.lex_state = 262, .external_lex_state = 4}, + [1777] = {.lex_state = 262, .external_lex_state = 4}, + [1778] = {.lex_state = 262, .external_lex_state = 4}, + [1779] = {.lex_state = 262, .external_lex_state = 4}, + [1780] = {.lex_state = 262, .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}, + [1783] = {.lex_state = 118, .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}, + [1785] = {.lex_state = 118, .external_lex_state = 4}, + [1786] = {.lex_state = 118, .external_lex_state = 4}, + [1787] = {.lex_state = 118, .external_lex_state = 4}, [1788] = {.lex_state = 118, .external_lex_state = 4}, - [1789] = {.lex_state = 262, .external_lex_state = 4}, + [1789] = {.lex_state = 118, .external_lex_state = 4}, [1790] = {.lex_state = 118, .external_lex_state = 4}, - [1791] = {.lex_state = 262, .external_lex_state = 4}, + [1791] = {.lex_state = 118, .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}, + [1798] = {.lex_state = 262, .external_lex_state = 5}, [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}, + [1803] = {.lex_state = 262, .external_lex_state = 5}, + [1804] = {.lex_state = 262, .external_lex_state = 5}, + [1805] = {.lex_state = 262, .external_lex_state = 4}, + [1806] = {.lex_state = 262, .external_lex_state = 5}, + [1807] = {.lex_state = 262, .external_lex_state = 5}, + [1808] = {.lex_state = 262, .external_lex_state = 5}, + [1809] = {.lex_state = 262, .external_lex_state = 5}, + [1810] = {.lex_state = 262, .external_lex_state = 4}, + [1811] = {.lex_state = 262, .external_lex_state = 5}, + [1812] = {.lex_state = 262, .external_lex_state = 5}, + [1813] = {.lex_state = 264, .external_lex_state = 5}, + [1814] = {.lex_state = 262, .external_lex_state = 4}, + [1815] = {.lex_state = 262, .external_lex_state = 4}, + [1816] = {.lex_state = 264, .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}, + [1818] = {.lex_state = 262, .external_lex_state = 4}, + [1819] = {.lex_state = 264, .external_lex_state = 5}, + [1820] = {.lex_state = 264, .external_lex_state = 5}, + [1821] = {.lex_state = 118, .external_lex_state = 4}, + [1822] = {.lex_state = 118, .external_lex_state = 4}, + [1823] = {.lex_state = 262, .external_lex_state = 4}, + [1824] = {.lex_state = 118, .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 = 262, .external_lex_state = 4}, - [1833] = {.lex_state = 262, .external_lex_state = 4}, + [1826] = {.lex_state = 262, .external_lex_state = 4}, + [1827] = {.lex_state = 118, .external_lex_state = 4}, + [1828] = {.lex_state = 118, .external_lex_state = 4}, + [1829] = {.lex_state = 118, .external_lex_state = 4}, + [1830] = {.lex_state = 118, .external_lex_state = 4}, + [1831] = {.lex_state = 118, .external_lex_state = 4}, + [1832] = {.lex_state = 118, .external_lex_state = 4}, + [1833] = {.lex_state = 118, .external_lex_state = 4}, [1834] = {.lex_state = 118, .external_lex_state = 4}, - [1835] = {.lex_state = 264, .external_lex_state = 5}, + [1835] = {.lex_state = 118, .external_lex_state = 4}, [1836] = {.lex_state = 118, .external_lex_state = 4}, [1837] = {.lex_state = 118, .external_lex_state = 4}, [1838] = {.lex_state = 118, .external_lex_state = 4}, @@ -19726,83 +17088,83 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1844] = {.lex_state = 264, .external_lex_state = 5}, + [1845] = {.lex_state = 264, .external_lex_state = 5}, + [1846] = {.lex_state = 264, .external_lex_state = 5}, + [1847] = {.lex_state = 262, .external_lex_state = 4}, + [1848] = {.lex_state = 262, .external_lex_state = 4}, + [1849] = {.lex_state = 262, .external_lex_state = 4}, + [1850] = {.lex_state = 102, .external_lex_state = 4}, + [1851] = {.lex_state = 264, .external_lex_state = 5}, + [1852] = {.lex_state = 264, .external_lex_state = 5}, + [1853] = {.lex_state = 262, .external_lex_state = 4}, + [1854] = {.lex_state = 264, .external_lex_state = 5}, + [1855] = {.lex_state = 264, .external_lex_state = 5}, + [1856] = {.lex_state = 264, .external_lex_state = 5}, + [1857] = {.lex_state = 262, .external_lex_state = 5}, + [1858] = {.lex_state = 262, .external_lex_state = 4}, + [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 = 262, .external_lex_state = 5}, + [1863] = {.lex_state = 264, .external_lex_state = 5}, + [1864] = {.lex_state = 102, .external_lex_state = 4}, [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}, + [1866] = {.lex_state = 102, .external_lex_state = 4}, + [1867] = {.lex_state = 102, .external_lex_state = 4}, + [1868] = {.lex_state = 102, .external_lex_state = 4}, [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 = 262, .external_lex_state = 5}, - [1875] = {.lex_state = 264, .external_lex_state = 5}, - [1876] = {.lex_state = 264, .external_lex_state = 5}, + [1870] = {.lex_state = 262, .external_lex_state = 4}, + [1871] = {.lex_state = 102, .external_lex_state = 4}, + [1872] = {.lex_state = 102, .external_lex_state = 4}, + [1873] = {.lex_state = 262, .external_lex_state = 4}, + [1874] = {.lex_state = 262, .external_lex_state = 4}, + [1875] = {.lex_state = 102, .external_lex_state = 4}, + [1876] = {.lex_state = 262, .external_lex_state = 4}, [1877] = {.lex_state = 262, .external_lex_state = 4}, - [1878] = {.lex_state = 102, .external_lex_state = 4}, - [1879] = {.lex_state = 262, .external_lex_state = 4}, + [1878] = {.lex_state = 262, .external_lex_state = 4}, + [1879] = {.lex_state = 102, .external_lex_state = 4}, [1880] = {.lex_state = 262, .external_lex_state = 4}, [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}, + [1882] = {.lex_state = 262, .external_lex_state = 4}, + [1883] = {.lex_state = 264, .external_lex_state = 5}, + [1884] = {.lex_state = 102, .external_lex_state = 4}, + [1885] = {.lex_state = 102, .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}, + [1887] = {.lex_state = 102, .external_lex_state = 4}, + [1888] = {.lex_state = 102, .external_lex_state = 4}, + [1889] = {.lex_state = 102, .external_lex_state = 4}, + [1890] = {.lex_state = 102, .external_lex_state = 4}, [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}, + [1894] = {.lex_state = 262, .external_lex_state = 4}, + [1895] = {.lex_state = 262, .external_lex_state = 4}, + [1896] = {.lex_state = 262, .external_lex_state = 4}, + [1897] = {.lex_state = 262, .external_lex_state = 4}, + [1898] = {.lex_state = 262, .external_lex_state = 4}, + [1899] = {.lex_state = 262, .external_lex_state = 4}, + [1900] = {.lex_state = 262, .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 = 4}, - [1906] = {.lex_state = 262, .external_lex_state = 4}, - [1907] = {.lex_state = 262, .external_lex_state = 4}, - [1908] = {.lex_state = 262, .external_lex_state = 4}, + [1904] = {.lex_state = 262, .external_lex_state = 5}, + [1905] = {.lex_state = 264, .external_lex_state = 5}, + [1906] = {.lex_state = 264, .external_lex_state = 5}, + [1907] = {.lex_state = 264, .external_lex_state = 5}, + [1908] = {.lex_state = 262, .external_lex_state = 5}, [1909] = {.lex_state = 262, .external_lex_state = 4}, - [1910] = {.lex_state = 262, .external_lex_state = 4}, + [1910] = {.lex_state = 264, .external_lex_state = 5}, [1911] = {.lex_state = 102, .external_lex_state = 4}, - [1912] = {.lex_state = 102, .external_lex_state = 4}, + [1912] = {.lex_state = 262, .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}, + [1914] = {.lex_state = 262, .external_lex_state = 4}, + [1915] = {.lex_state = 262, .external_lex_state = 4}, + [1916] = {.lex_state = 262, .external_lex_state = 4}, + [1917] = {.lex_state = 262, .external_lex_state = 4}, [1918] = {.lex_state = 262, .external_lex_state = 4}, - [1919] = {.lex_state = 264, .external_lex_state = 5}, - [1920] = {.lex_state = 262, .external_lex_state = 5}, + [1919] = {.lex_state = 262, .external_lex_state = 4}, + [1920] = {.lex_state = 262, .external_lex_state = 4}, [1921] = {.lex_state = 262, .external_lex_state = 4}, [1922] = {.lex_state = 262, .external_lex_state = 4}, [1923] = {.lex_state = 262, .external_lex_state = 4}, @@ -19811,64 +17173,64 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1929] = {.lex_state = 264, .external_lex_state = 5}, [1930] = {.lex_state = 262, .external_lex_state = 4}, [1931] = {.lex_state = 262, .external_lex_state = 4}, - [1932] = {.lex_state = 262, .external_lex_state = 4}, + [1932] = {.lex_state = 102, .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}, + [1935] = {.lex_state = 102, .external_lex_state = 4}, + [1936] = {.lex_state = 262, .external_lex_state = 4}, + [1937] = {.lex_state = 262, .external_lex_state = 4}, [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 = 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}, + [1939] = {.lex_state = 264, .external_lex_state = 5}, + [1940] = {.lex_state = 102, .external_lex_state = 4}, + [1941] = {.lex_state = 264, .external_lex_state = 5}, + [1942] = {.lex_state = 102, .external_lex_state = 4}, + [1943] = {.lex_state = 102, .external_lex_state = 4}, + [1944] = {.lex_state = 102, .external_lex_state = 4}, + [1945] = {.lex_state = 264, .external_lex_state = 5}, + [1946] = {.lex_state = 264, .external_lex_state = 5}, + [1947] = {.lex_state = 262, .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}, + [1951] = {.lex_state = 102, .external_lex_state = 4}, + [1952] = {.lex_state = 262, .external_lex_state = 5}, [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}, + [1954] = {.lex_state = 264, .external_lex_state = 5}, + [1955] = {.lex_state = 262, .external_lex_state = 4}, + [1956] = {.lex_state = 262, .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 = 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}, + [1958] = {.lex_state = 262, .external_lex_state = 4}, + [1959] = {.lex_state = 264, .external_lex_state = 5}, + [1960] = {.lex_state = 118, .external_lex_state = 4}, + [1961] = {.lex_state = 118, .external_lex_state = 4}, + [1962] = {.lex_state = 118, .external_lex_state = 4}, + [1963] = {.lex_state = 264, .external_lex_state = 5}, + [1964] = {.lex_state = 264, .external_lex_state = 5}, + [1965] = {.lex_state = 264, .external_lex_state = 5}, + [1966] = {.lex_state = 264, .external_lex_state = 5}, + [1967] = {.lex_state = 264, .external_lex_state = 5}, + [1968] = {.lex_state = 118, .external_lex_state = 4}, + [1969] = {.lex_state = 262, .external_lex_state = 5}, + [1970] = {.lex_state = 262, .external_lex_state = 5}, + [1971] = {.lex_state = 262, .external_lex_state = 5}, + [1972] = {.lex_state = 262, .external_lex_state = 5}, + [1973] = {.lex_state = 264, .external_lex_state = 5}, + [1974] = {.lex_state = 262, .external_lex_state = 5}, [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 = 262, .external_lex_state = 5}, + [1980] = {.lex_state = 264, .external_lex_state = 5}, + [1981] = {.lex_state = 264, .external_lex_state = 5}, + [1982] = {.lex_state = 264, .external_lex_state = 5}, + [1983] = {.lex_state = 264, .external_lex_state = 5}, + [1984] = {.lex_state = 264, .external_lex_state = 5}, [1985] = {.lex_state = 264, .external_lex_state = 5}, - [1986] = {.lex_state = 262, .external_lex_state = 5}, + [1986] = {.lex_state = 264, .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}, @@ -19878,20 +17240,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [1996] = {.lex_state = 262, .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}, + [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 = 262, .external_lex_state = 5}, + [2005] = {.lex_state = 262, .external_lex_state = 5}, + [2006] = {.lex_state = 262, .external_lex_state = 5}, + [2007] = {.lex_state = 262, .external_lex_state = 5}, [2008] = {.lex_state = 262, .external_lex_state = 5}, - [2009] = {.lex_state = 264, .external_lex_state = 5}, + [2009] = {.lex_state = 262, .external_lex_state = 5}, [2010] = {.lex_state = 262, .external_lex_state = 5}, [2011] = {.lex_state = 262, .external_lex_state = 5}, [2012] = {.lex_state = 262, .external_lex_state = 5}, @@ -19906,9 +17268,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [2024] = {.lex_state = 121, .external_lex_state = 5}, + [2025] = {.lex_state = 102, .external_lex_state = 5}, + [2026] = {.lex_state = 102, .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}, @@ -19918,24 +17280,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 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 = 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}, + [2036] = {.lex_state = 262, .external_lex_state = 5}, + [2037] = {.lex_state = 262, .external_lex_state = 5}, + [2038] = {.lex_state = 262, .external_lex_state = 5}, + [2039] = {.lex_state = 102, .external_lex_state = 5}, + [2040] = {.lex_state = 121, .external_lex_state = 5}, + [2041] = {.lex_state = 102, .external_lex_state = 5}, + [2042] = {.lex_state = 102, .external_lex_state = 5}, + [2043] = {.lex_state = 102, .external_lex_state = 5}, + [2044] = {.lex_state = 121, .external_lex_state = 5}, + [2045] = {.lex_state = 121, .external_lex_state = 5}, + [2046] = {.lex_state = 121, .external_lex_state = 5}, + [2047] = {.lex_state = 121, .external_lex_state = 5}, + [2048] = {.lex_state = 121, .external_lex_state = 5}, + [2049] = {.lex_state = 121, .external_lex_state = 5}, + [2050] = {.lex_state = 121, .external_lex_state = 5}, + [2051] = {.lex_state = 121, .external_lex_state = 5}, [2052] = {.lex_state = 121, .external_lex_state = 5}, - [2053] = {.lex_state = 102, .external_lex_state = 5}, + [2053] = {.lex_state = 121, .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}, @@ -19948,104 +17310,104 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2063] = {.lex_state = 121, .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 = 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 = 121, .external_lex_state = 5}, + [2066] = {.lex_state = 262, .external_lex_state = 5}, + [2067] = {.lex_state = 262, .external_lex_state = 5}, + [2068] = {.lex_state = 262, .external_lex_state = 5}, + [2069] = {.lex_state = 102, .external_lex_state = 5}, + [2070] = {.lex_state = 262, .external_lex_state = 5}, + [2071] = {.lex_state = 262, .external_lex_state = 5}, + [2072] = {.lex_state = 262, .external_lex_state = 5}, + [2073] = {.lex_state = 262, .external_lex_state = 5}, + [2074] = {.lex_state = 262, .external_lex_state = 5}, + [2075] = {.lex_state = 262, .external_lex_state = 5}, + [2076] = {.lex_state = 262, .external_lex_state = 5}, + [2077] = {.lex_state = 262, .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}, + [2081] = {.lex_state = 262, .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}, + [2086] = {.lex_state = 262, .external_lex_state = 4}, [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}, + [2091] = {.lex_state = 102, .external_lex_state = 5}, + [2092] = {.lex_state = 102, .external_lex_state = 5}, [2093] = {.lex_state = 262, .external_lex_state = 5}, - [2094] = {.lex_state = 262, .external_lex_state = 5}, + [2094] = {.lex_state = 102, .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}, + [2097] = {.lex_state = 262, .external_lex_state = 5}, [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 = 262, .external_lex_state = 5}, + [2100] = {.lex_state = 102, .external_lex_state = 5}, + [2101] = {.lex_state = 262, .external_lex_state = 4}, + [2102] = {.lex_state = 262, .external_lex_state = 4}, + [2103] = {.lex_state = 262, .external_lex_state = 4}, + [2104] = {.lex_state = 262, .external_lex_state = 4}, [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 = 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}, + [2106] = {.lex_state = 121, .external_lex_state = 5}, + [2107] = {.lex_state = 121, .external_lex_state = 5}, + [2108] = {.lex_state = 121, .external_lex_state = 5}, + [2109] = {.lex_state = 121, .external_lex_state = 5}, + [2110] = {.lex_state = 121, .external_lex_state = 5}, + [2111] = {.lex_state = 121, .external_lex_state = 5}, [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}, + [2114] = {.lex_state = 262, .external_lex_state = 4}, + [2115] = {.lex_state = 262, .external_lex_state = 4}, + [2116] = {.lex_state = 262, .external_lex_state = 5}, + [2117] = {.lex_state = 262, .external_lex_state = 5}, + [2118] = {.lex_state = 262, .external_lex_state = 5}, + [2119] = {.lex_state = 262, .external_lex_state = 5}, + [2120] = {.lex_state = 262, .external_lex_state = 4}, [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 = 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}, + [2122] = {.lex_state = 121, .external_lex_state = 5}, + [2123] = {.lex_state = 121, .external_lex_state = 5}, + [2124] = {.lex_state = 121, .external_lex_state = 5}, + [2125] = {.lex_state = 121, .external_lex_state = 5}, + [2126] = {.lex_state = 121, .external_lex_state = 5}, + [2127] = {.lex_state = 121, .external_lex_state = 5}, + [2128] = {.lex_state = 121, .external_lex_state = 5}, + [2129] = {.lex_state = 121, .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}, + [2132] = {.lex_state = 262, .external_lex_state = 5}, + [2133] = {.lex_state = 262, .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}, + [2136] = {.lex_state = 262, .external_lex_state = 5}, + [2137] = {.lex_state = 262, .external_lex_state = 5}, + [2138] = {.lex_state = 262, .external_lex_state = 5}, + [2139] = {.lex_state = 262, .external_lex_state = 4}, + [2140] = {.lex_state = 262, .external_lex_state = 4}, [2141] = {.lex_state = 262, .external_lex_state = 5}, - [2142] = {.lex_state = 262, .external_lex_state = 5}, + [2142] = {.lex_state = 262, .external_lex_state = 4}, [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 = 5}, - [2150] = {.lex_state = 262, .external_lex_state = 5}, + [2145] = {.lex_state = 262, .external_lex_state = 5}, + [2146] = {.lex_state = 262, .external_lex_state = 4}, + [2147] = {.lex_state = 262, .external_lex_state = 4}, + [2148] = {.lex_state = 262, .external_lex_state = 4}, + [2149] = {.lex_state = 262, .external_lex_state = 4}, + [2150] = {.lex_state = 262, .external_lex_state = 4}, [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}, + [2152] = {.lex_state = 121, .external_lex_state = 5}, + [2153] = {.lex_state = 262, .external_lex_state = 5}, + [2154] = {.lex_state = 121, .external_lex_state = 5}, + [2155] = {.lex_state = 262, .external_lex_state = 4}, + [2156] = {.lex_state = 262, .external_lex_state = 5}, + [2157] = {.lex_state = 121, .external_lex_state = 5}, + [2158] = {.lex_state = 121, .external_lex_state = 5}, + [2159] = {.lex_state = 121, .external_lex_state = 5}, + [2160] = {.lex_state = 121, .external_lex_state = 5}, + [2161] = {.lex_state = 121, .external_lex_state = 5}, + [2162] = {.lex_state = 121, .external_lex_state = 5}, + [2163] = {.lex_state = 121, .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}, @@ -20055,222 +17417,222 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [2173] = {.lex_state = 262, .external_lex_state = 5}, + [2174] = {.lex_state = 262, .external_lex_state = 5}, + [2175] = {.lex_state = 262, .external_lex_state = 5}, + [2176] = {.lex_state = 102, .external_lex_state = 5}, + [2177] = {.lex_state = 262, .external_lex_state = 4}, + [2178] = {.lex_state = 262, .external_lex_state = 5}, + [2179] = {.lex_state = 262, .external_lex_state = 5}, + [2180] = {.lex_state = 262, .external_lex_state = 4}, [2181] = {.lex_state = 262, .external_lex_state = 5}, - [2182] = {.lex_state = 121, .external_lex_state = 5}, - [2183] = {.lex_state = 102, .external_lex_state = 5}, + [2182] = {.lex_state = 262, .external_lex_state = 5}, + [2183] = {.lex_state = 262, .external_lex_state = 4}, [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 = 262, .external_lex_state = 4}, - [2189] = {.lex_state = 262, .external_lex_state = 4}, + [2188] = {.lex_state = 262, .external_lex_state = 5}, + [2189] = {.lex_state = 262, .external_lex_state = 5}, [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}, + [2193] = {.lex_state = 262, .external_lex_state = 5}, [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 = 262, .external_lex_state = 5}, - [2200] = {.lex_state = 262, .external_lex_state = 5}, + [2199] = {.lex_state = 102, .external_lex_state = 5}, + [2200] = {.lex_state = 102, .external_lex_state = 5}, [2201] = {.lex_state = 262, .external_lex_state = 5}, - [2202] = {.lex_state = 262, .external_lex_state = 5}, + [2202] = {.lex_state = 102, .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}, + [2204] = {.lex_state = 264, .external_lex_state = 5}, + [2205] = {.lex_state = 264, .external_lex_state = 5}, + [2206] = {.lex_state = 264, .external_lex_state = 5}, + [2207] = {.lex_state = 264, .external_lex_state = 5}, [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 = 102, .external_lex_state = 5}, - [2212] = {.lex_state = 102, .external_lex_state = 5}, + [2209] = {.lex_state = 262, .external_lex_state = 4}, + [2210] = {.lex_state = 124, .external_lex_state = 5}, + [2211] = {.lex_state = 124, .external_lex_state = 5}, + [2212] = {.lex_state = 262, .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}, + [2214] = {.lex_state = 124, .external_lex_state = 5}, + [2215] = {.lex_state = 262, .external_lex_state = 5}, [2216] = {.lex_state = 102, .external_lex_state = 5}, - [2217] = {.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}, + [2217] = {.lex_state = 102, .external_lex_state = 5}, + [2218] = {.lex_state = 262, .external_lex_state = 5}, + [2219] = {.lex_state = 262, .external_lex_state = 5}, + [2220] = {.lex_state = 262, .external_lex_state = 5}, + [2221] = {.lex_state = 262, .external_lex_state = 5}, + [2222] = {.lex_state = 262, .external_lex_state = 5}, [2223] = {.lex_state = 262, .external_lex_state = 5}, - [2224] = {.lex_state = 124, .external_lex_state = 5}, - [2225] = {.lex_state = 124, .external_lex_state = 5}, + [2224] = {.lex_state = 264, .external_lex_state = 5}, + [2225] = {.lex_state = 262, .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 = 124, .external_lex_state = 5}, - [2233] = {.lex_state = 262, .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}, + [2230] = {.lex_state = 264, .external_lex_state = 5}, + [2231] = {.lex_state = 124, .external_lex_state = 5}, + [2232] = {.lex_state = 266, .external_lex_state = 4}, + [2233] = {.lex_state = 266, .external_lex_state = 4}, [2234] = {.lex_state = 264, .external_lex_state = 5}, - [2235] = {.lex_state = 262, .external_lex_state = 5}, - [2236] = {.lex_state = 262, .external_lex_state = 5}, - [2237] = {.lex_state = 264, .external_lex_state = 5}, - [2238] = {.lex_state = 264, .external_lex_state = 5}, + [2235] = {.lex_state = 264, .external_lex_state = 5}, + [2236] = {.lex_state = 264, .external_lex_state = 5}, + [2237] = {.lex_state = 266, .external_lex_state = 4}, + [2238] = {.lex_state = 266, .external_lex_state = 4}, [2239] = {.lex_state = 264, .external_lex_state = 5}, - [2240] = {.lex_state = 262, .external_lex_state = 5}, - [2241] = {.lex_state = 262, .external_lex_state = 5}, + [2240] = {.lex_state = 264, .external_lex_state = 5}, + [2241] = {.lex_state = 264, .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}, + [2243] = {.lex_state = 262, .external_lex_state = 5}, + [2244] = {.lex_state = 262, .external_lex_state = 5}, + [2245] = {.lex_state = 262, .external_lex_state = 5}, [2246] = {.lex_state = 264, .external_lex_state = 5}, - [2247] = {.lex_state = 266, .external_lex_state = 4}, - [2248] = {.lex_state = 266, .external_lex_state = 4}, + [2247] = {.lex_state = 264, .external_lex_state = 5}, + [2248] = {.lex_state = 264, .external_lex_state = 5}, [2249] = {.lex_state = 264, .external_lex_state = 5}, [2250] = {.lex_state = 264, .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}, + [2252] = {.lex_state = 264, .external_lex_state = 5}, + [2253] = {.lex_state = 264, .external_lex_state = 5}, + [2254] = {.lex_state = 262, .external_lex_state = 5}, + [2255] = {.lex_state = 262, .external_lex_state = 5}, + [2256] = {.lex_state = 262, .external_lex_state = 5}, + [2257] = {.lex_state = 262, .external_lex_state = 5}, + [2258] = {.lex_state = 121, .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}, + [2261] = {.lex_state = 262, .external_lex_state = 4}, + [2262] = {.lex_state = 262, .external_lex_state = 4}, [2263] = {.lex_state = 262, .external_lex_state = 5}, - [2264] = {.lex_state = 264, .external_lex_state = 5}, + [2264] = {.lex_state = 121, .external_lex_state = 5}, [2265] = {.lex_state = 262, .external_lex_state = 5}, - [2266] = {.lex_state = 262, .external_lex_state = 5}, - [2267] = {.lex_state = 262, .external_lex_state = 5}, + [2266] = {.lex_state = 264, .external_lex_state = 5}, + [2267] = {.lex_state = 264, .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 = 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 = 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}, + [2270] = {.lex_state = 121, .external_lex_state = 5}, + [2271] = {.lex_state = 264, .external_lex_state = 5}, + [2272] = {.lex_state = 264, .external_lex_state = 5}, + [2273] = {.lex_state = 264, .external_lex_state = 5}, + [2274] = {.lex_state = 264, .external_lex_state = 5}, + [2275] = {.lex_state = 264, .external_lex_state = 5}, + [2276] = {.lex_state = 264, .external_lex_state = 5}, + [2277] = {.lex_state = 264, .external_lex_state = 5}, + [2278] = {.lex_state = 102, .external_lex_state = 5}, + [2279] = {.lex_state = 102, .external_lex_state = 5}, + [2280] = {.lex_state = 102, .external_lex_state = 5}, + [2281] = {.lex_state = 102, .external_lex_state = 5}, + [2282] = {.lex_state = 102, .external_lex_state = 5}, + [2283] = {.lex_state = 102, .external_lex_state = 5}, + [2284] = {.lex_state = 102, .external_lex_state = 5}, + [2285] = {.lex_state = 102, .external_lex_state = 5}, + [2286] = {.lex_state = 262, .external_lex_state = 5}, + [2287] = {.lex_state = 262, .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 = 102, .external_lex_state = 5}, + [2289] = {.lex_state = 102, .external_lex_state = 5}, + [2290] = {.lex_state = 262, .external_lex_state = 5}, + [2291] = {.lex_state = 262, .external_lex_state = 5}, + [2292] = {.lex_state = 262, .external_lex_state = 5}, + [2293] = {.lex_state = 262, .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}, + [2298] = {.lex_state = 262, .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}, + [2303] = {.lex_state = 262, .external_lex_state = 5}, [2304] = {.lex_state = 262, .external_lex_state = 5}, - [2305] = {.lex_state = 262, .external_lex_state = 5}, - [2306] = {.lex_state = 262, .external_lex_state = 5}, + [2305] = {.lex_state = 102, .external_lex_state = 5}, + [2306] = {.lex_state = 102, .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 = 262, .external_lex_state = 5}, - [2311] = {.lex_state = 262, .external_lex_state = 5}, - [2312] = {.lex_state = 262, .external_lex_state = 5}, + [2308] = {.lex_state = 102, .external_lex_state = 5}, + [2309] = {.lex_state = 102, .external_lex_state = 5}, + [2310] = {.lex_state = 102, .external_lex_state = 5}, + [2311] = {.lex_state = 102, .external_lex_state = 5}, + [2312] = {.lex_state = 102, .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 = 102, .external_lex_state = 5}, - [2319] = {.lex_state = 102, .external_lex_state = 5}, - [2320] = {.lex_state = 102, .external_lex_state = 5}, + [2317] = {.lex_state = 264, .external_lex_state = 5}, + [2318] = {.lex_state = 264, .external_lex_state = 5}, + [2319] = {.lex_state = 264, .external_lex_state = 5}, + [2320] = {.lex_state = 264, .external_lex_state = 5}, [2321] = {.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}, + [2322] = {.lex_state = 264, .external_lex_state = 5}, + [2323] = {.lex_state = 264, .external_lex_state = 5}, + [2324] = {.lex_state = 264, .external_lex_state = 5}, [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 = 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 = 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}, + [2326] = {.lex_state = 102, .external_lex_state = 5}, + [2327] = {.lex_state = 262, .external_lex_state = 5}, + [2328] = {.lex_state = 262, .external_lex_state = 5}, + [2329] = {.lex_state = 262, .external_lex_state = 5}, + [2330] = {.lex_state = 262, .external_lex_state = 5}, + [2331] = {.lex_state = 262, .external_lex_state = 5}, + [2332] = {.lex_state = 102, .external_lex_state = 5}, + [2333] = {.lex_state = 262, .external_lex_state = 5}, + [2334] = {.lex_state = 124, .external_lex_state = 5}, + [2335] = {.lex_state = 262, .external_lex_state = 5}, + [2336] = {.lex_state = 262, .external_lex_state = 5}, + [2337] = {.lex_state = 262, .external_lex_state = 5}, + [2338] = {.lex_state = 124, .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}, + [2341] = {.lex_state = 124, .external_lex_state = 5}, + [2342] = {.lex_state = 124, .external_lex_state = 5}, + [2343] = {.lex_state = 124, .external_lex_state = 5}, + [2344] = {.lex_state = 124, .external_lex_state = 5}, + [2345] = {.lex_state = 124, .external_lex_state = 5}, + [2346] = {.lex_state = 102, .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}, + [2350] = {.lex_state = 124, .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 = 262, .external_lex_state = 5}, - [2357] = {.lex_state = 262, .external_lex_state = 5}, - [2358] = {.lex_state = 262, .external_lex_state = 5}, + [2354] = {.lex_state = 264, .external_lex_state = 5}, + [2355] = {.lex_state = 264, .external_lex_state = 5}, + [2356] = {.lex_state = 264, .external_lex_state = 5}, + [2357] = {.lex_state = 264, .external_lex_state = 5}, + [2358] = {.lex_state = 264, .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}, + [2360] = {.lex_state = 264, .external_lex_state = 5}, + [2361] = {.lex_state = 264, .external_lex_state = 5}, + [2362] = {.lex_state = 264, .external_lex_state = 5}, + [2363] = {.lex_state = 102, .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}, + [2365] = {.lex_state = 102, .external_lex_state = 5}, + [2366] = {.lex_state = 102, .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}, + [2371] = {.lex_state = 264, .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 = 264, .external_lex_state = 5}, - [2377] = {.lex_state = 102, .external_lex_state = 5}, + [2375] = {.lex_state = 262, .external_lex_state = 5}, + [2376] = {.lex_state = 124, .external_lex_state = 5}, + [2377] = {.lex_state = 124, .external_lex_state = 5}, [2378] = {.lex_state = 264, .external_lex_state = 5}, - [2379] = {.lex_state = 102, .external_lex_state = 5}, - [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}, + [2379] = {.lex_state = 264, .external_lex_state = 5}, + [2380] = {.lex_state = 124, .external_lex_state = 5}, + [2381] = {.lex_state = 124, .external_lex_state = 5}, + [2382] = {.lex_state = 124, .external_lex_state = 5}, + [2383] = {.lex_state = 124, .external_lex_state = 5}, + [2384] = {.lex_state = 124, .external_lex_state = 5}, + [2385] = {.lex_state = 124, .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}, + [2388] = {.lex_state = 124, .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}, @@ -20283,7 +17645,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [2401] = {.lex_state = 262, .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}, @@ -20292,68 +17654,68 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [2410] = {.lex_state = 129, .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}, + [2413] = {.lex_state = 129, .external_lex_state = 5}, [2414] = {.lex_state = 124, .external_lex_state = 5}, - [2415] = {.lex_state = 124, .external_lex_state = 5}, + [2415] = {.lex_state = 129, .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}, + [2419] = {.lex_state = 121, .external_lex_state = 5}, + [2420] = {.lex_state = 124, .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}, + [2423] = {.lex_state = 266, .external_lex_state = 4}, + [2424] = {.lex_state = 266, .external_lex_state = 4}, + [2425] = {.lex_state = 266, .external_lex_state = 4}, + [2426] = {.lex_state = 266, .external_lex_state = 4}, + [2427] = {.lex_state = 264, .external_lex_state = 5}, + [2428] = {.lex_state = 264, .external_lex_state = 5}, + [2429] = {.lex_state = 264, .external_lex_state = 5}, + [2430] = {.lex_state = 264, .external_lex_state = 5}, + [2431] = {.lex_state = 264, .external_lex_state = 5}, + [2432] = {.lex_state = 264, .external_lex_state = 5}, + [2433] = {.lex_state = 264, .external_lex_state = 5}, + [2434] = {.lex_state = 264, .external_lex_state = 5}, + [2435] = {.lex_state = 264, .external_lex_state = 5}, + [2436] = {.lex_state = 264, .external_lex_state = 5}, + [2437] = {.lex_state = 264, .external_lex_state = 5}, [2438] = {.lex_state = 264, .external_lex_state = 5}, - [2439] = {.lex_state = 264, .external_lex_state = 5}, - [2440] = {.lex_state = 264, .external_lex_state = 5}, + [2439] = {.lex_state = 102, .external_lex_state = 5}, + [2440] = {.lex_state = 102, .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}, + [2442] = {.lex_state = 121, .external_lex_state = 5}, + [2443] = {.lex_state = 121, .external_lex_state = 5}, + [2444] = {.lex_state = 121, .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}, + [2449] = {.lex_state = 124, .external_lex_state = 5}, + [2450] = {.lex_state = 124, .external_lex_state = 5}, + [2451] = {.lex_state = 124, .external_lex_state = 5}, + [2452] = {.lex_state = 124, .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}, + [2454] = {.lex_state = 264, .external_lex_state = 5}, + [2455] = {.lex_state = 264, .external_lex_state = 5}, + [2456] = {.lex_state = 129, .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}, + [2461] = {.lex_state = 129, .external_lex_state = 5}, + [2462] = {.lex_state = 264, .external_lex_state = 5}, + [2463] = {.lex_state = 264, .external_lex_state = 5}, + [2464] = {.lex_state = 264, .external_lex_state = 5}, [2465] = {.lex_state = 264, .external_lex_state = 5}, - [2466] = {.lex_state = 129, .external_lex_state = 5}, + [2466] = {.lex_state = 264, .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}, + [2471] = {.lex_state = 264, .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}, @@ -20378,24 +17740,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [2496] = {.lex_state = 262, .external_lex_state = 4}, + [2497] = {.lex_state = 262, .external_lex_state = 4}, [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}, + [2500] = {.lex_state = 262, .external_lex_state = 4}, + [2501] = {.lex_state = 262, .external_lex_state = 4}, + [2502] = {.lex_state = 262, .external_lex_state = 4}, + [2503] = {.lex_state = 266, .external_lex_state = 4}, + [2504] = {.lex_state = 266, .external_lex_state = 4}, + [2505] = {.lex_state = 266, .external_lex_state = 4}, + [2506] = {.lex_state = 266, .external_lex_state = 4}, + [2507] = {.lex_state = 266, .external_lex_state = 4}, + [2508] = {.lex_state = 266, .external_lex_state = 4}, + [2509] = {.lex_state = 266, .external_lex_state = 4}, + [2510] = {.lex_state = 266, .external_lex_state = 4}, + [2511] = {.lex_state = 266, .external_lex_state = 4}, + [2512] = {.lex_state = 266, .external_lex_state = 4}, + [2513] = {.lex_state = 266, .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}, @@ -20403,91 +17765,91 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [2521] = {.lex_state = 262, .external_lex_state = 5}, + [2522] = {.lex_state = 262, .external_lex_state = 5}, [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}, + [2525] = {.lex_state = 262, .external_lex_state = 4}, + [2526] = {.lex_state = 262, .external_lex_state = 4}, + [2527] = {.lex_state = 262, .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 = 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}, + [2532] = {.lex_state = 266, .external_lex_state = 4}, + [2533] = {.lex_state = 266, .external_lex_state = 4}, + [2534] = {.lex_state = 121, .external_lex_state = 5}, + [2535] = {.lex_state = 121, .external_lex_state = 5}, + [2536] = {.lex_state = 121, .external_lex_state = 5}, + [2537] = {.lex_state = 121, .external_lex_state = 5}, + [2538] = {.lex_state = 121, .external_lex_state = 5}, + [2539] = {.lex_state = 121, .external_lex_state = 5}, + [2540] = {.lex_state = 121, .external_lex_state = 5}, + [2541] = {.lex_state = 121, .external_lex_state = 5}, + [2542] = {.lex_state = 121, .external_lex_state = 5}, + [2543] = {.lex_state = 121, .external_lex_state = 5}, + [2544] = {.lex_state = 121, .external_lex_state = 5}, [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}, + [2550] = {.lex_state = 266, .external_lex_state = 4}, + [2551] = {.lex_state = 266, .external_lex_state = 4}, + [2552] = {.lex_state = 266, .external_lex_state = 4}, + [2553] = {.lex_state = 266, .external_lex_state = 4}, + [2554] = {.lex_state = 266, .external_lex_state = 4}, + [2555] = {.lex_state = 266, .external_lex_state = 4}, + [2556] = {.lex_state = 266, .external_lex_state = 4}, + [2557] = {.lex_state = 266, .external_lex_state = 4}, + [2558] = {.lex_state = 266, .external_lex_state = 4}, + [2559] = {.lex_state = 266, .external_lex_state = 4}, [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}, + [2561] = {.lex_state = 121, .external_lex_state = 5}, + [2562] = {.lex_state = 121, .external_lex_state = 5}, + [2563] = {.lex_state = 121, .external_lex_state = 5}, + [2564] = {.lex_state = 121, .external_lex_state = 5}, + [2565] = {.lex_state = 121, .external_lex_state = 5}, + [2566] = {.lex_state = 121, .external_lex_state = 5}, + [2567] = {.lex_state = 121, .external_lex_state = 5}, + [2568] = {.lex_state = 121, .external_lex_state = 5}, + [2569] = {.lex_state = 121, .external_lex_state = 5}, + [2570] = {.lex_state = 262, .external_lex_state = 4}, + [2571] = {.lex_state = 262, .external_lex_state = 4}, + [2572] = {.lex_state = 262, .external_lex_state = 4}, [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 = 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}, + [2579] = {.lex_state = 266, .external_lex_state = 4}, + [2580] = {.lex_state = 266, .external_lex_state = 4}, + [2581] = {.lex_state = 266, .external_lex_state = 4}, + [2582] = {.lex_state = 266, .external_lex_state = 4}, + [2583] = {.lex_state = 266, .external_lex_state = 4}, + [2584] = {.lex_state = 266, .external_lex_state = 4}, + [2585] = {.lex_state = 266, .external_lex_state = 4}, + [2586] = {.lex_state = 266, .external_lex_state = 4}, + [2587] = {.lex_state = 266, .external_lex_state = 4}, + [2588] = {.lex_state = 266, .external_lex_state = 4}, + [2589] = {.lex_state = 266, .external_lex_state = 4}, [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}, + [2595] = {.lex_state = 121, .external_lex_state = 5}, + [2596] = {.lex_state = 121, .external_lex_state = 5}, + [2597] = {.lex_state = 121, .external_lex_state = 5}, + [2598] = {.lex_state = 121, .external_lex_state = 5}, + [2599] = {.lex_state = 121, .external_lex_state = 5}, + [2600] = {.lex_state = 121, .external_lex_state = 5}, + [2601] = {.lex_state = 121, .external_lex_state = 5}, + [2602] = {.lex_state = 121, .external_lex_state = 5}, + [2603] = {.lex_state = 121, .external_lex_state = 5}, + [2604] = {.lex_state = 121, .external_lex_state = 5}, + [2605] = {.lex_state = 121, .external_lex_state = 5}, [2606] = {.lex_state = 121, .external_lex_state = 5}, [2607] = {.lex_state = 121, .external_lex_state = 5}, [2608] = {.lex_state = 121, .external_lex_state = 5}, @@ -20497,33 +17859,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [2615] = {.lex_state = 262, .external_lex_state = 4}, + [2616] = {.lex_state = 102, .external_lex_state = 5}, + [2617] = {.lex_state = 102, .external_lex_state = 5}, + [2618] = {.lex_state = 262, .external_lex_state = 4}, + [2619] = {.lex_state = 262, .external_lex_state = 4}, + [2620] = {.lex_state = 262, .external_lex_state = 4}, + [2621] = {.lex_state = 129, .external_lex_state = 5}, + [2622] = {.lex_state = 262, .external_lex_state = 4}, + [2623] = {.lex_state = 262, .external_lex_state = 4}, + [2624] = {.lex_state = 129, .external_lex_state = 5}, + [2625] = {.lex_state = 102, .external_lex_state = 5}, + [2626] = {.lex_state = 102, .external_lex_state = 5}, [2627] = {.lex_state = 102, .external_lex_state = 5}, - [2628] = {.lex_state = 102, .external_lex_state = 5}, + [2628] = {.lex_state = 262, .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}, + [2630] = {.lex_state = 262, .external_lex_state = 5}, + [2631] = {.lex_state = 102, .external_lex_state = 5}, + [2632] = {.lex_state = 102, .external_lex_state = 5}, + [2633] = {.lex_state = 102, .external_lex_state = 5}, + [2634] = {.lex_state = 102, .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 = 4}, - [2640] = {.lex_state = 262, .external_lex_state = 5}, - [2641] = {.lex_state = 102, .external_lex_state = 5}, + [2638] = {.lex_state = 102, .external_lex_state = 5}, + [2639] = {.lex_state = 102, .external_lex_state = 5}, + [2640] = {.lex_state = 102, .external_lex_state = 5}, + [2641] = {.lex_state = 262, .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}, @@ -20531,147 +17893,147 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [2649] = {.lex_state = 262, .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 = 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}, + [2656] = {.lex_state = 132, .external_lex_state = 5}, + [2657] = {.lex_state = 262, .external_lex_state = 5}, [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}, + [2661] = {.lex_state = 102, .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 = 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}, + [2663] = {.lex_state = 102, .external_lex_state = 5}, + [2664] = {.lex_state = 102, .external_lex_state = 5}, + [2665] = {.lex_state = 132, .external_lex_state = 5}, + [2666] = {.lex_state = 262, .external_lex_state = 5}, + [2667] = {.lex_state = 262, .external_lex_state = 5}, + [2668] = {.lex_state = 262, .external_lex_state = 4}, + [2669] = {.lex_state = 262, .external_lex_state = 5}, + [2670] = {.lex_state = 262, .external_lex_state = 4}, + [2671] = {.lex_state = 262, .external_lex_state = 4}, + [2672] = {.lex_state = 262, .external_lex_state = 5}, + [2673] = {.lex_state = 262, .external_lex_state = 4}, + [2674] = {.lex_state = 132, .external_lex_state = 5}, + [2675] = {.lex_state = 129, .external_lex_state = 5}, + [2676] = {.lex_state = 262, .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 = 4}, + [2678] = {.lex_state = 102, .external_lex_state = 5}, + [2679] = {.lex_state = 262, .external_lex_state = 5}, [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 = 129, .external_lex_state = 5}, + [2681] = {.lex_state = 102, .external_lex_state = 5}, + [2682] = {.lex_state = 102, .external_lex_state = 5}, + [2683] = {.lex_state = 102, .external_lex_state = 5}, + [2684] = {.lex_state = 102, .external_lex_state = 5}, + [2685] = {.lex_state = 102, .external_lex_state = 5}, + [2686] = {.lex_state = 102, .external_lex_state = 5}, + [2687] = {.lex_state = 132, .external_lex_state = 5}, [2688] = {.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 = 102, .external_lex_state = 5}, + [2689] = {.lex_state = 129, .external_lex_state = 5}, + [2690] = {.lex_state = 129, .external_lex_state = 5}, + [2691] = {.lex_state = 262, .external_lex_state = 4}, + [2692] = {.lex_state = 132, .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}, + [2695] = {.lex_state = 262, .external_lex_state = 5}, + [2696] = {.lex_state = 262, .external_lex_state = 5}, + [2697] = {.lex_state = 102, .external_lex_state = 4}, [2698] = {.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}, + [2699] = {.lex_state = 262, .external_lex_state = 5}, + [2700] = {.lex_state = 262, .external_lex_state = 5}, + [2701] = {.lex_state = 262, .external_lex_state = 4}, + [2702] = {.lex_state = 262, .external_lex_state = 5}, [2703] = {.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}, + [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 = 4}, + [2710] = {.lex_state = 262, .external_lex_state = 5}, [2711] = {.lex_state = 262, .external_lex_state = 5}, - [2712] = {.lex_state = 262, .external_lex_state = 5}, + [2712] = {.lex_state = 102, .external_lex_state = 4}, [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 = 5}, - [2718] = {.lex_state = 262, .external_lex_state = 5}, - [2719] = {.lex_state = 262, .external_lex_state = 4}, + [2714] = {.lex_state = 102, .external_lex_state = 5}, + [2715] = {.lex_state = 102, .external_lex_state = 5}, + [2716] = {.lex_state = 102, .external_lex_state = 5}, + [2717] = {.lex_state = 102, .external_lex_state = 5}, + [2718] = {.lex_state = 102, .external_lex_state = 5}, + [2719] = {.lex_state = 262, .external_lex_state = 5}, [2720] = {.lex_state = 262, .external_lex_state = 5}, - [2721] = {.lex_state = 102, .external_lex_state = 4}, + [2721] = {.lex_state = 102, .external_lex_state = 5}, [2722] = {.lex_state = 262, .external_lex_state = 5}, - [2723] = {.lex_state = 102, .external_lex_state = 5}, + [2723] = {.lex_state = 262, .external_lex_state = 5}, [2724] = {.lex_state = 262, .external_lex_state = 5}, - [2725] = {.lex_state = 262, .external_lex_state = 5}, + [2725] = {.lex_state = 262, .external_lex_state = 4}, [2726] = {.lex_state = 102, .external_lex_state = 5}, - [2727] = {.lex_state = 102, .external_lex_state = 5}, + [2727] = {.lex_state = 262, .external_lex_state = 4}, [2728] = {.lex_state = 102, .external_lex_state = 5}, - [2729] = {.lex_state = 102, .external_lex_state = 5}, - [2730] = {.lex_state = 102, .external_lex_state = 5}, + [2729] = {.lex_state = 129, .external_lex_state = 5}, + [2730] = {.lex_state = 262, .external_lex_state = 4}, [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}, + [2732] = {.lex_state = 262, .external_lex_state = 5}, + [2733] = {.lex_state = 129, .external_lex_state = 5}, + [2734] = {.lex_state = 129, .external_lex_state = 5}, + [2735] = {.lex_state = 262, .external_lex_state = 4}, + [2736] = {.lex_state = 102, .external_lex_state = 4}, [2737] = {.lex_state = 102, .external_lex_state = 5}, - [2738] = {.lex_state = 262, .external_lex_state = 5}, + [2738] = {.lex_state = 102, .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 = 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}, + [2740] = {.lex_state = 262, .external_lex_state = 5}, + [2741] = {.lex_state = 102, .external_lex_state = 5}, + [2742] = {.lex_state = 102, .external_lex_state = 5}, + [2743] = {.lex_state = 102, .external_lex_state = 4}, + [2744] = {.lex_state = 102, .external_lex_state = 5}, + [2745] = {.lex_state = 102, .external_lex_state = 5}, + [2746] = {.lex_state = 102, .external_lex_state = 5}, + [2747] = {.lex_state = 135, .external_lex_state = 4}, [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 = 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 = 102, .external_lex_state = 5}, - [2758] = {.lex_state = 102, .external_lex_state = 5}, + [2750] = {.lex_state = 102, .external_lex_state = 5}, + [2751] = {.lex_state = 102, .external_lex_state = 4}, + [2752] = {.lex_state = 135, .external_lex_state = 4}, + [2753] = {.lex_state = 135, .external_lex_state = 4}, + [2754] = {.lex_state = 135, .external_lex_state = 4}, + [2755] = {.lex_state = 135, .external_lex_state = 4}, + [2756] = {.lex_state = 135, .external_lex_state = 4}, + [2757] = {.lex_state = 135, .external_lex_state = 4}, + [2758] = {.lex_state = 135, .external_lex_state = 4}, [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 = 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}, + [2762] = {.lex_state = 102, .external_lex_state = 5}, + [2763] = {.lex_state = 102, .external_lex_state = 5}, + [2764] = {.lex_state = 102, .external_lex_state = 5}, + [2765] = {.lex_state = 102, .external_lex_state = 5}, + [2766] = {.lex_state = 102, .external_lex_state = 5}, + [2767] = {.lex_state = 102, .external_lex_state = 5}, + [2768] = {.lex_state = 102, .external_lex_state = 5}, + [2769] = {.lex_state = 135, .external_lex_state = 4}, + [2770] = {.lex_state = 135, .external_lex_state = 4}, + [2771] = {.lex_state = 135, .external_lex_state = 4}, + [2772] = {.lex_state = 135, .external_lex_state = 4}, + [2773] = {.lex_state = 135, .external_lex_state = 4}, + [2774] = {.lex_state = 135, .external_lex_state = 4}, + [2775] = {.lex_state = 135, .external_lex_state = 4}, + [2776] = {.lex_state = 135, .external_lex_state = 4}, + [2777] = {.lex_state = 135, .external_lex_state = 4}, + [2778] = {.lex_state = 135, .external_lex_state = 4}, [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}, + [2780] = {.lex_state = 102, .external_lex_state = 5}, + [2781] = {.lex_state = 102, .external_lex_state = 5}, + [2782] = {.lex_state = 102, .external_lex_state = 5}, + [2783] = {.lex_state = 102, .external_lex_state = 5}, + [2784] = {.lex_state = 102, .external_lex_state = 5}, + [2785] = {.lex_state = 102, .external_lex_state = 5}, + [2786] = {.lex_state = 102, .external_lex_state = 5}, + [2787] = {.lex_state = 102, .external_lex_state = 5}, + [2788] = {.lex_state = 102, .external_lex_state = 5}, + [2789] = {.lex_state = 102, .external_lex_state = 5}, [2790] = {.lex_state = 102, .external_lex_state = 5}, [2791] = {.lex_state = 102, .external_lex_state = 5}, [2792] = {.lex_state = 102, .external_lex_state = 5}, @@ -20679,415 +18041,415 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [2797] = {.lex_state = 262, .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}, + [2804] = {.lex_state = 262, .external_lex_state = 5}, + [2805] = {.lex_state = 262, .external_lex_state = 5}, + [2806] = {.lex_state = 262, .external_lex_state = 5}, + [2807] = {.lex_state = 262, .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}, + [2809] = {.lex_state = 262, .external_lex_state = 5}, + [2810] = {.lex_state = 262, .external_lex_state = 5}, + [2811] = {.lex_state = 262, .external_lex_state = 5}, + [2812] = {.lex_state = 262, .external_lex_state = 5}, + [2813] = {.lex_state = 262, .external_lex_state = 5}, + [2814] = {.lex_state = 262, .external_lex_state = 5}, + [2815] = {.lex_state = 262, .external_lex_state = 5}, + [2816] = {.lex_state = 262, .external_lex_state = 5}, + [2817] = {.lex_state = 262, .external_lex_state = 5}, + [2818] = {.lex_state = 262, .external_lex_state = 5}, + [2819] = {.lex_state = 262, .external_lex_state = 5}, + [2820] = {.lex_state = 102, .external_lex_state = 5}, + [2821] = {.lex_state = 102, .external_lex_state = 5}, [2822] = {.lex_state = 262, .external_lex_state = 5}, - [2823] = {.lex_state = 262, .external_lex_state = 5}, + [2823] = {.lex_state = 102, .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}, + [2826] = {.lex_state = 102, .external_lex_state = 5}, [2827] = {.lex_state = 262, .external_lex_state = 5}, - [2828] = {.lex_state = 262, .external_lex_state = 5}, + [2828] = {.lex_state = 262, .external_lex_state = 4}, [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}, + [2831] = {.lex_state = 262, .external_lex_state = 5}, + [2832] = {.lex_state = 262, .external_lex_state = 5}, + [2833] = {.lex_state = 129, .external_lex_state = 5}, + [2834] = {.lex_state = 262, .external_lex_state = 5}, [2835] = {.lex_state = 262, .external_lex_state = 5}, - [2836] = {.lex_state = 102, .external_lex_state = 5}, + [2836] = {.lex_state = 262, .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}, + [2839] = {.lex_state = 262, .external_lex_state = 5}, + [2840] = {.lex_state = 262, .external_lex_state = 5}, + [2841] = {.lex_state = 102, .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}, + [2845] = {.lex_state = 262, .external_lex_state = 5}, + [2846] = {.lex_state = 102, .external_lex_state = 4}, [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 = 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}, + [2853] = {.lex_state = 262, .external_lex_state = 5}, + [2854] = {.lex_state = 102, .external_lex_state = 5}, + [2855] = {.lex_state = 129, .external_lex_state = 5}, [2856] = {.lex_state = 262, .external_lex_state = 5}, - [2857] = {.lex_state = 262, .external_lex_state = 5}, + [2857] = {.lex_state = 102, .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}, + [2859] = {.lex_state = 102, .external_lex_state = 5}, + [2860] = {.lex_state = 102, .external_lex_state = 5}, + [2861] = {.lex_state = 129, .external_lex_state = 5}, + [2862] = {.lex_state = 102, .external_lex_state = 5}, + [2863] = {.lex_state = 102, .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}, + [2867] = {.lex_state = 262, .external_lex_state = 5}, + [2868] = {.lex_state = 135, .external_lex_state = 4}, + [2869] = {.lex_state = 135, .external_lex_state = 4}, + [2870] = {.lex_state = 262, .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}, + [2873] = {.lex_state = 262, .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}, + [2875] = {.lex_state = 135, .external_lex_state = 4}, + [2876] = {.lex_state = 135, .external_lex_state = 4}, + [2877] = {.lex_state = 102, .external_lex_state = 5}, + [2878] = {.lex_state = 129, .external_lex_state = 5}, + [2879] = {.lex_state = 129, .external_lex_state = 5}, + [2880] = {.lex_state = 129, .external_lex_state = 5}, + [2881] = {.lex_state = 129, .external_lex_state = 5}, + [2882] = {.lex_state = 129, .external_lex_state = 5}, + [2883] = {.lex_state = 129, .external_lex_state = 5}, + [2884] = {.lex_state = 129, .external_lex_state = 5}, + [2885] = {.lex_state = 135, .external_lex_state = 4}, + [2886] = {.lex_state = 129, .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}, + [2888] = {.lex_state = 135, .external_lex_state = 4}, + [2889] = {.lex_state = 135, .external_lex_state = 4}, + [2890] = {.lex_state = 262, .external_lex_state = 5}, + [2891] = {.lex_state = 135, .external_lex_state = 4}, + [2892] = {.lex_state = 135, .external_lex_state = 4}, + [2893] = {.lex_state = 262, .external_lex_state = 5}, + [2894] = {.lex_state = 135, .external_lex_state = 4}, + [2895] = {.lex_state = 135, .external_lex_state = 4}, + [2896] = {.lex_state = 262, .external_lex_state = 4}, + [2897] = {.lex_state = 135, .external_lex_state = 4}, + [2898] = {.lex_state = 102, .external_lex_state = 5}, + [2899] = {.lex_state = 262, .external_lex_state = 5}, + [2900] = {.lex_state = 102, .external_lex_state = 5}, + [2901] = {.lex_state = 102, .external_lex_state = 5}, [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}, + [2903] = {.lex_state = 262, .external_lex_state = 4}, + [2904] = {.lex_state = 102, .external_lex_state = 5}, + [2905] = {.lex_state = 262, .external_lex_state = 5}, + [2906] = {.lex_state = 102, .external_lex_state = 5}, + [2907] = {.lex_state = 102, .external_lex_state = 5}, [2908] = {.lex_state = 262, .external_lex_state = 5}, - [2909] = {.lex_state = 262, .external_lex_state = 4}, - [2910] = {.lex_state = 102, .external_lex_state = 5}, - [2911] = {.lex_state = 262, .external_lex_state = 5}, + [2909] = {.lex_state = 262, .external_lex_state = 5}, + [2910] = {.lex_state = 262, .external_lex_state = 5}, + [2911] = {.lex_state = 102, .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}, + [2913] = {.lex_state = 262, .external_lex_state = 5}, + [2914] = {.lex_state = 129, .external_lex_state = 5}, + [2915] = {.lex_state = 129, .external_lex_state = 5}, + [2916] = {.lex_state = 129, .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}, + [2918] = {.lex_state = 129, .external_lex_state = 5}, + [2919] = {.lex_state = 132, .external_lex_state = 5}, + [2920] = {.lex_state = 262, .external_lex_state = 5}, + [2921] = {.lex_state = 132, .external_lex_state = 5}, + [2922] = {.lex_state = 132, .external_lex_state = 5}, + [2923] = {.lex_state = 132, .external_lex_state = 5}, + [2924] = {.lex_state = 132, .external_lex_state = 5}, + [2925] = {.lex_state = 132, .external_lex_state = 5}, + [2926] = {.lex_state = 132, .external_lex_state = 5}, + [2927] = {.lex_state = 132, .external_lex_state = 5}, + [2928] = {.lex_state = 132, .external_lex_state = 5}, + [2929] = {.lex_state = 132, .external_lex_state = 5}, + [2930] = {.lex_state = 262, .external_lex_state = 4}, + [2931] = {.lex_state = 262, .external_lex_state = 4}, + [2932] = {.lex_state = 132, .external_lex_state = 5}, + [2933] = {.lex_state = 102, .external_lex_state = 5}, + [2934] = {.lex_state = 102, .external_lex_state = 5}, + [2935] = {.lex_state = 102, .external_lex_state = 5}, + [2936] = {.lex_state = 132, .external_lex_state = 5}, + [2937] = {.lex_state = 102, .external_lex_state = 5}, + [2938] = {.lex_state = 102, .external_lex_state = 5}, + [2939] = {.lex_state = 102, .external_lex_state = 5}, + [2940] = {.lex_state = 102, .external_lex_state = 5}, + [2941] = {.lex_state = 132, .external_lex_state = 5}, + [2942] = {.lex_state = 102, .external_lex_state = 5}, + [2943] = {.lex_state = 102, .external_lex_state = 5}, + [2944] = {.lex_state = 102, .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}, + [2948] = {.lex_state = 102, .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}, + [2952] = {.lex_state = 262, .external_lex_state = 5}, + [2953] = {.lex_state = 132, .external_lex_state = 5}, + [2954] = {.lex_state = 132, .external_lex_state = 5}, + [2955] = {.lex_state = 132, .external_lex_state = 5}, + [2956] = {.lex_state = 132, .external_lex_state = 5}, + [2957] = {.lex_state = 262, .external_lex_state = 5}, + [2958] = {.lex_state = 262, .external_lex_state = 5}, + [2959] = {.lex_state = 129, .external_lex_state = 5}, + [2960] = {.lex_state = 132, .external_lex_state = 5}, + [2961] = {.lex_state = 129, .external_lex_state = 5}, + [2962] = {.lex_state = 262, .external_lex_state = 5}, + [2963] = {.lex_state = 262, .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}, + [2965] = {.lex_state = 129, .external_lex_state = 5}, + [2966] = {.lex_state = 262, .external_lex_state = 4}, + [2967] = {.lex_state = 262, .external_lex_state = 5}, + [2968] = {.lex_state = 129, .external_lex_state = 5}, + [2969] = {.lex_state = 262, .external_lex_state = 5}, + [2970] = {.lex_state = 262, .external_lex_state = 5}, + [2971] = {.lex_state = 262, .external_lex_state = 5}, + [2972] = {.lex_state = 262, .external_lex_state = 5}, + [2973] = {.lex_state = 262, .external_lex_state = 5}, + [2974] = {.lex_state = 262, .external_lex_state = 4}, + [2975] = {.lex_state = 262, .external_lex_state = 4}, [2976] = {.lex_state = 262, .external_lex_state = 5}, - [2977] = {.lex_state = 262, .external_lex_state = 5}, + [2977] = {.lex_state = 262, .external_lex_state = 4}, [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}, + [2979] = {.lex_state = 262, .external_lex_state = 4}, + [2980] = {.lex_state = 262, .external_lex_state = 5}, + [2981] = {.lex_state = 262, .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}, + [2986] = {.lex_state = 262, .external_lex_state = 5}, + [2987] = {.lex_state = 262, .external_lex_state = 5}, [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}, + [2989] = {.lex_state = 262, .external_lex_state = 5}, + [2990] = {.lex_state = 262, .external_lex_state = 5}, + [2991] = {.lex_state = 132, .external_lex_state = 5}, [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}, + [2993] = {.lex_state = 132, .external_lex_state = 5}, + [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 = 262, .external_lex_state = 4}, + [2998] = {.lex_state = 262, .external_lex_state = 4}, + [2999] = {.lex_state = 262, .external_lex_state = 4}, + [3000] = {.lex_state = 262, .external_lex_state = 4}, + [3001] = {.lex_state = 262, .external_lex_state = 4}, + [3002] = {.lex_state = 262, .external_lex_state = 4}, + [3003] = {.lex_state = 262, .external_lex_state = 4}, + [3004] = {.lex_state = 262, .external_lex_state = 4}, + [3005] = {.lex_state = 262, .external_lex_state = 4}, [3006] = {.lex_state = 262, .external_lex_state = 4}, [3007] = {.lex_state = 262, .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 = 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}, + [3009] = {.lex_state = 262, .external_lex_state = 5}, + [3010] = {.lex_state = 132, .external_lex_state = 5}, + [3011] = {.lex_state = 132, .external_lex_state = 5}, + [3012] = {.lex_state = 132, .external_lex_state = 5}, + [3013] = {.lex_state = 132, .external_lex_state = 5}, + [3014] = {.lex_state = 132, .external_lex_state = 5}, + [3015] = {.lex_state = 132, .external_lex_state = 5}, + [3016] = {.lex_state = 262, .external_lex_state = 5}, + [3017] = {.lex_state = 262, .external_lex_state = 5}, + [3018] = {.lex_state = 262, .external_lex_state = 5}, + [3019] = {.lex_state = 262, .external_lex_state = 5}, [3020] = {.lex_state = 262, .external_lex_state = 5}, [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}, + [3022] = {.lex_state = 262, .external_lex_state = 5}, + [3023] = {.lex_state = 262, .external_lex_state = 5}, + [3024] = {.lex_state = 262, .external_lex_state = 5}, + [3025] = {.lex_state = 262, .external_lex_state = 5}, + [3026] = {.lex_state = 132, .external_lex_state = 5}, + [3027] = {.lex_state = 132, .external_lex_state = 5}, + [3028] = {.lex_state = 132, .external_lex_state = 5}, + [3029] = {.lex_state = 132, .external_lex_state = 5}, + [3030] = {.lex_state = 132, .external_lex_state = 5}, + [3031] = {.lex_state = 132, .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 = 262, .external_lex_state = 4}, - [3048] = {.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 = 262, .external_lex_state = 4}, + [3036] = {.lex_state = 262, .external_lex_state = 4}, + [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 = 129, .external_lex_state = 5}, + [3046] = {.lex_state = 129, .external_lex_state = 5}, + [3047] = {.lex_state = 262, .external_lex_state = 5}, + [3048] = {.lex_state = 129, .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}, + [3050] = {.lex_state = 135, .external_lex_state = 4}, + [3051] = {.lex_state = 135, .external_lex_state = 4}, + [3052] = {.lex_state = 132, .external_lex_state = 5}, + [3053] = {.lex_state = 135, .external_lex_state = 4}, + [3054] = {.lex_state = 135, .external_lex_state = 4}, + [3055] = {.lex_state = 262, .external_lex_state = 5}, + [3056] = {.lex_state = 135, .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}, + [3058] = {.lex_state = 262, .external_lex_state = 4}, + [3059] = {.lex_state = 262, .external_lex_state = 4}, + [3060] = {.lex_state = 135, .external_lex_state = 4}, + [3061] = {.lex_state = 262, .external_lex_state = 4}, + [3062] = {.lex_state = 262, .external_lex_state = 4}, + [3063] = {.lex_state = 262, .external_lex_state = 4}, + [3064] = {.lex_state = 262, .external_lex_state = 4}, + [3065] = {.lex_state = 262, .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 = 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}, + [3072] = {.lex_state = 135, .external_lex_state = 4}, + [3073] = {.lex_state = 135, .external_lex_state = 4}, + [3074] = {.lex_state = 135, .external_lex_state = 4}, + [3075] = {.lex_state = 135, .external_lex_state = 4}, + [3076] = {.lex_state = 135, .external_lex_state = 4}, + [3077] = {.lex_state = 135, .external_lex_state = 4}, + [3078] = {.lex_state = 135, .external_lex_state = 4}, + [3079] = {.lex_state = 135, .external_lex_state = 4}, + [3080] = {.lex_state = 135, .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 = 262, .external_lex_state = 5}, + [3085] = {.lex_state = 262, .external_lex_state = 4}, + [3086] = {.lex_state = 135, .external_lex_state = 4}, + [3087] = {.lex_state = 135, .external_lex_state = 4}, + [3088] = {.lex_state = 135, .external_lex_state = 4}, + [3089] = {.lex_state = 135, .external_lex_state = 4}, + [3090] = {.lex_state = 262, .external_lex_state = 4}, + [3091] = {.lex_state = 262, .external_lex_state = 4}, + [3092] = {.lex_state = 262, .external_lex_state = 4}, + [3093] = {.lex_state = 262, .external_lex_state = 4}, + [3094] = {.lex_state = 262, .external_lex_state = 4}, + [3095] = {.lex_state = 262, .external_lex_state = 4}, + [3096] = {.lex_state = 262, .external_lex_state = 4}, [3097] = {.lex_state = 262, .external_lex_state = 4}, - [3098] = {.lex_state = 132, .external_lex_state = 4}, + [3098] = {.lex_state = 129, .external_lex_state = 5}, [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}, + [3100] = {.lex_state = 262, .external_lex_state = 4}, + [3101] = {.lex_state = 262, .external_lex_state = 5}, + [3102] = {.lex_state = 129, .external_lex_state = 5}, + [3103] = {.lex_state = 129, .external_lex_state = 5}, + [3104] = {.lex_state = 129, .external_lex_state = 5}, + [3105] = {.lex_state = 129, .external_lex_state = 5}, + [3106] = {.lex_state = 129, .external_lex_state = 5}, + [3107] = {.lex_state = 102, .external_lex_state = 5}, + [3108] = {.lex_state = 262, .external_lex_state = 5}, + [3109] = {.lex_state = 129, .external_lex_state = 5}, [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}, + [3111] = {.lex_state = 129, .external_lex_state = 5}, + [3112] = {.lex_state = 262, .external_lex_state = 5}, + [3113] = {.lex_state = 262, .external_lex_state = 5}, + [3114] = {.lex_state = 262, .external_lex_state = 5}, + [3115] = {.lex_state = 262, .external_lex_state = 5}, + [3116] = {.lex_state = 132, .external_lex_state = 5}, + [3117] = {.lex_state = 262, .external_lex_state = 5}, [3118] = {.lex_state = 262, .external_lex_state = 5}, [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 = 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}, + [3123] = {.lex_state = 262, .external_lex_state = 5}, + [3124] = {.lex_state = 262, .external_lex_state = 5}, + [3125] = {.lex_state = 262, .external_lex_state = 5}, [3126] = {.lex_state = 262, .external_lex_state = 5}, - [3127] = {.lex_state = 129, .external_lex_state = 5}, - [3128] = {.lex_state = 129, .external_lex_state = 5}, + [3127] = {.lex_state = 262, .external_lex_state = 5}, + [3128] = {.lex_state = 262, .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 = 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 = 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}, + [3133] = {.lex_state = 132, .external_lex_state = 5}, + [3134] = {.lex_state = 132, .external_lex_state = 5}, + [3135] = {.lex_state = 132, .external_lex_state = 5}, + [3136] = {.lex_state = 262, .external_lex_state = 4}, + [3137] = {.lex_state = 262, .external_lex_state = 4}, + [3138] = {.lex_state = 262, .external_lex_state = 4}, + [3139] = {.lex_state = 262, .external_lex_state = 4}, + [3140] = {.lex_state = 129, .external_lex_state = 5}, + [3141] = {.lex_state = 132, .external_lex_state = 5}, + [3142] = {.lex_state = 132, .external_lex_state = 5}, + [3143] = {.lex_state = 132, .external_lex_state = 5}, + [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 = 262, .external_lex_state = 4}, - [3149] = {.lex_state = 262, .external_lex_state = 4}, - [3150] = {.lex_state = 262, .external_lex_state = 4}, + [3149] = {.lex_state = 132, .external_lex_state = 5}, + [3150] = {.lex_state = 132, .external_lex_state = 5}, [3151] = {.lex_state = 262, .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 = 135, .external_lex_state = 5}, - [3162] = {.lex_state = 102, .external_lex_state = 5}, + [3152] = {.lex_state = 132, .external_lex_state = 5}, + [3153] = {.lex_state = 132, .external_lex_state = 5}, + [3154] = {.lex_state = 132, .external_lex_state = 5}, + [3155] = {.lex_state = 262, .external_lex_state = 4}, + [3156] = {.lex_state = 132, .external_lex_state = 5}, + [3157] = {.lex_state = 132, .external_lex_state = 5}, + [3158] = {.lex_state = 135, .external_lex_state = 4}, + [3159] = {.lex_state = 135, .external_lex_state = 4}, + [3160] = {.lex_state = 132, .external_lex_state = 5}, + [3161] = {.lex_state = 262, .external_lex_state = 4}, + [3162] = {.lex_state = 262, .external_lex_state = 4}, [3163] = {.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}, + [3164] = {.lex_state = 132, .external_lex_state = 5}, + [3165] = {.lex_state = 262, .external_lex_state = 4}, + [3166] = {.lex_state = 262, .external_lex_state = 4}, [3167] = {.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}, + [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 = 132, .external_lex_state = 5}, + [3172] = {.lex_state = 132, .external_lex_state = 5}, + [3173] = {.lex_state = 132, .external_lex_state = 5}, [3174] = {.lex_state = 262, .external_lex_state = 4}, [3175] = {.lex_state = 262, .external_lex_state = 4}, - [3176] = {.lex_state = 135, .external_lex_state = 5}, - [3177] = {.lex_state = 262, .external_lex_state = 4}, + [3176] = {.lex_state = 262, .external_lex_state = 4}, + [3177] = {.lex_state = 132, .external_lex_state = 5}, [3178] = {.lex_state = 262, .external_lex_state = 4}, - [3179] = {.lex_state = 262, .external_lex_state = 4}, - [3180] = {.lex_state = 262, .external_lex_state = 4}, + [3179] = {.lex_state = 135, .external_lex_state = 4}, + [3180] = {.lex_state = 135, .external_lex_state = 4}, [3181] = {.lex_state = 262, .external_lex_state = 4}, - [3182] = {.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}, + [3182] = {.lex_state = 132, .external_lex_state = 5}, + [3183] = {.lex_state = 132, .external_lex_state = 5}, + [3184] = {.lex_state = 135, .external_lex_state = 4}, + [3185] = {.lex_state = 138, .external_lex_state = 4}, + [3186] = {.lex_state = 138, .external_lex_state = 4}, + [3187] = {.lex_state = 266, .external_lex_state = 4}, [3188] = {.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 = 132, .external_lex_state = 4}, - [3193] = {.lex_state = 132, .external_lex_state = 4}, - [3194] = {.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}, + [3189] = {.lex_state = 262, .external_lex_state = 4}, + [3190] = {.lex_state = 138, .external_lex_state = 4}, + [3191] = {.lex_state = 138, .external_lex_state = 4}, + [3192] = {.lex_state = 129, .external_lex_state = 5}, + [3193] = {.lex_state = 129, .external_lex_state = 5}, + [3194] = {.lex_state = 135, .external_lex_state = 4}, + [3195] = {.lex_state = 129, .external_lex_state = 5}, + [3196] = {.lex_state = 135, .external_lex_state = 4}, + [3197] = {.lex_state = 266, .external_lex_state = 4}, + [3198] = {.lex_state = 129, .external_lex_state = 5}, + [3199] = {.lex_state = 129, .external_lex_state = 5}, [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 = 132, .external_lex_state = 4}, - [3204] = {.lex_state = 132, .external_lex_state = 4}, - [3205] = {.lex_state = 132, .external_lex_state = 4}, + [3202] = {.lex_state = 129, .external_lex_state = 5}, + [3203] = {.lex_state = 266, .external_lex_state = 4}, + [3204] = {.lex_state = 266, .external_lex_state = 4}, + [3205] = {.lex_state = 129, .external_lex_state = 5}, [3206] = {.lex_state = 129, .external_lex_state = 5}, [3207] = {.lex_state = 129, .external_lex_state = 5}, [3208] = {.lex_state = 129, .external_lex_state = 5}, @@ -21103,94 +18465,94 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [3221] = {.lex_state = 262, .external_lex_state = 4}, + [3222] = {.lex_state = 266, .external_lex_state = 4}, + [3223] = {.lex_state = 266, .external_lex_state = 4}, + [3224] = {.lex_state = 135, .external_lex_state = 4}, + [3225] = {.lex_state = 135, .external_lex_state = 4}, [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 = 266, .external_lex_state = 4}, - [3232] = {.lex_state = 266, .external_lex_state = 4}, - [3233] = {.lex_state = 266, .external_lex_state = 4}, + [3229] = {.lex_state = 129, .external_lex_state = 5}, + [3230] = {.lex_state = 129, .external_lex_state = 5}, + [3231] = {.lex_state = 129, .external_lex_state = 5}, + [3232] = {.lex_state = 262, .external_lex_state = 4}, + [3233] = {.lex_state = 129, .external_lex_state = 5}, [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}, + [3237] = {.lex_state = 129, .external_lex_state = 5}, [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}, + [3239] = {.lex_state = 135, .external_lex_state = 4}, + [3240] = {.lex_state = 135, .external_lex_state = 4}, + [3241] = {.lex_state = 266, .external_lex_state = 4}, + [3242] = {.lex_state = 102, .external_lex_state = 4}, + [3243] = {.lex_state = 102, .external_lex_state = 4}, [3244] = {.lex_state = 129, .external_lex_state = 5}, - [3245] = {.lex_state = 266, .external_lex_state = 4}, - [3246] = {.lex_state = 266, .external_lex_state = 4}, + [3245] = {.lex_state = 129, .external_lex_state = 5}, + [3246] = {.lex_state = 129, .external_lex_state = 5}, [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}, + [3248] = {.lex_state = 129, .external_lex_state = 5}, + [3249] = {.lex_state = 129, .external_lex_state = 5}, + [3250] = {.lex_state = 129, .external_lex_state = 5}, [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 = 132, .external_lex_state = 4}, + [3254] = {.lex_state = 266, .external_lex_state = 4}, + [3255] = {.lex_state = 266, .external_lex_state = 4}, + [3256] = {.lex_state = 266, .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}, + [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 = 262, .external_lex_state = 4}, [3263] = {.lex_state = 129, .external_lex_state = 5}, - [3264] = {.lex_state = 129, .external_lex_state = 5}, + [3264] = {.lex_state = 262, .external_lex_state = 4}, [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}, + [3266] = {.lex_state = 102, .external_lex_state = 4}, + [3267] = {.lex_state = 262, .external_lex_state = 4}, + [3268] = {.lex_state = 262, .external_lex_state = 4}, [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 = 262, .external_lex_state = 4}, [3273] = {.lex_state = 262, .external_lex_state = 4}, [3274] = {.lex_state = 262, .external_lex_state = 4}, - [3275] = {.lex_state = 129, .external_lex_state = 5}, + [3275] = {.lex_state = 262, .external_lex_state = 4}, [3276] = {.lex_state = 262, .external_lex_state = 4}, - [3277] = {.lex_state = 266, .external_lex_state = 4}, - [3278] = {.lex_state = 102, .external_lex_state = 4}, + [3277] = {.lex_state = 262, .external_lex_state = 4}, + [3278] = {.lex_state = 129, .external_lex_state = 5}, [3279] = {.lex_state = 262, .external_lex_state = 4}, - [3280] = {.lex_state = 262, .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 = 262, .external_lex_state = 4}, - [3286] = {.lex_state = 262, .external_lex_state = 4}, + [3280] = {.lex_state = 266, .external_lex_state = 4}, + [3281] = {.lex_state = 266, .external_lex_state = 4}, + [3282] = {.lex_state = 102, .external_lex_state = 4}, + [3283] = {.lex_state = 129, .external_lex_state = 5}, + [3284] = {.lex_state = 266, .external_lex_state = 4}, + [3285] = {.lex_state = 266, .external_lex_state = 4}, + [3286] = {.lex_state = 129, .external_lex_state = 5}, [3287] = {.lex_state = 262, .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}, + [3288] = {.lex_state = 262, .external_lex_state = 4}, + [3289] = {.lex_state = 262, .external_lex_state = 4}, + [3290] = {.lex_state = 129, .external_lex_state = 5}, + [3291] = {.lex_state = 129, .external_lex_state = 5}, [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}, + [3294] = {.lex_state = 135, .external_lex_state = 4}, + [3295] = {.lex_state = 129, .external_lex_state = 5}, + [3296] = {.lex_state = 129, .external_lex_state = 5}, + [3297] = {.lex_state = 129, .external_lex_state = 5}, [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 = 262, .external_lex_state = 4}, + [3299] = {.lex_state = 129, .external_lex_state = 5}, + [3300] = {.lex_state = 129, .external_lex_state = 5}, + [3301] = {.lex_state = 129, .external_lex_state = 5}, + [3302] = {.lex_state = 129, .external_lex_state = 5}, [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}, + [3306] = {.lex_state = 129, .external_lex_state = 5}, [3307] = {.lex_state = 129, .external_lex_state = 5}, - [3308] = {.lex_state = 129, .external_lex_state = 5}, + [3308] = {.lex_state = 135, .external_lex_state = 4}, [3309] = {.lex_state = 129, .external_lex_state = 5}, [3310] = {.lex_state = 129, .external_lex_state = 5}, [3311] = {.lex_state = 129, .external_lex_state = 5}, @@ -21202,390 +18564,390 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [3320] = {.lex_state = 129, .external_lex_state = 5}, + [3321] = {.lex_state = 102, .external_lex_state = 4}, [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}, + [3328] = {.lex_state = 102, .external_lex_state = 4}, [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}, + [3333] = {.lex_state = 266, .external_lex_state = 4}, + [3334] = {.lex_state = 266, .external_lex_state = 4}, [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}, + [3338] = {.lex_state = 129, .external_lex_state = 5}, + [3339] = {.lex_state = 129, .external_lex_state = 5}, [3340] = {.lex_state = 129, .external_lex_state = 5}, [3341] = {.lex_state = 129, .external_lex_state = 5}, - [3342] = {.lex_state = 132, .external_lex_state = 4}, + [3342] = {.lex_state = 102, .external_lex_state = 4}, [3343] = {.lex_state = 129, .external_lex_state = 5}, - [3344] = {.lex_state = 129, .external_lex_state = 5}, + [3344] = {.lex_state = 102, .external_lex_state = 4}, [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}, + [3349] = {.lex_state = 266, .external_lex_state = 4}, [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 = 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}, + [3353] = {.lex_state = 135, .external_lex_state = 4}, + [3354] = {.lex_state = 135, .external_lex_state = 4}, + [3355] = {.lex_state = 135, .external_lex_state = 4}, + [3356] = {.lex_state = 266, .external_lex_state = 4}, + [3357] = {.lex_state = 135, .external_lex_state = 4}, + [3358] = {.lex_state = 102, .external_lex_state = 4}, + [3359] = {.lex_state = 266, .external_lex_state = 4}, + [3360] = {.lex_state = 266, .external_lex_state = 4}, + [3361] = {.lex_state = 129, .external_lex_state = 4}, + [3362] = {.lex_state = 129, .external_lex_state = 4}, + [3363] = {.lex_state = 129, .external_lex_state = 4}, + [3364] = {.lex_state = 102, .external_lex_state = 4}, + [3365] = {.lex_state = 102, .external_lex_state = 4}, + [3366] = {.lex_state = 129, .external_lex_state = 5}, + [3367] = {.lex_state = 266, .external_lex_state = 4}, + [3368] = {.lex_state = 266, .external_lex_state = 4}, + [3369] = {.lex_state = 266, .external_lex_state = 4}, + [3370] = {.lex_state = 266, .external_lex_state = 4}, + [3371] = {.lex_state = 262, .external_lex_state = 4}, + [3372] = {.lex_state = 266, .external_lex_state = 4}, + [3373] = {.lex_state = 102, .external_lex_state = 4}, + [3374] = {.lex_state = 102, .external_lex_state = 4}, + [3375] = {.lex_state = 102, .external_lex_state = 4}, [3376] = {.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}, + [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}, [3385] = {.lex_state = 102, .external_lex_state = 4}, [3386] = {.lex_state = 102, .external_lex_state = 4}, [3387] = {.lex_state = 102, .external_lex_state = 4}, [3388] = {.lex_state = 102, .external_lex_state = 4}, - [3389] = {.lex_state = 102, .external_lex_state = 4}, + [3389] = {.lex_state = 266, .external_lex_state = 4}, [3390] = {.lex_state = 102, .external_lex_state = 4}, - [3391] = {.lex_state = 102, .external_lex_state = 4}, - [3392] = {.lex_state = 102, .external_lex_state = 4}, - [3393] = {.lex_state = 102, .external_lex_state = 4}, - [3394] = {.lex_state = 102, .external_lex_state = 4}, - [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 = 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}, + [3391] = {.lex_state = 266, .external_lex_state = 4}, + [3392] = {.lex_state = 266, .external_lex_state = 4}, + [3393] = {.lex_state = 266, .external_lex_state = 4}, + [3394] = {.lex_state = 266, .external_lex_state = 4}, + [3395] = {.lex_state = 266, .external_lex_state = 4}, + [3396] = {.lex_state = 266, .external_lex_state = 4}, + [3397] = {.lex_state = 266, .external_lex_state = 4}, + [3398] = {.lex_state = 266, .external_lex_state = 4}, + [3399] = {.lex_state = 266, .external_lex_state = 4}, + [3400] = {.lex_state = 266, .external_lex_state = 4}, + [3401] = {.lex_state = 266, .external_lex_state = 4}, [3402] = {.lex_state = 266, .external_lex_state = 4}, - [3403] = {.lex_state = 132, .external_lex_state = 4}, + [3403] = {.lex_state = 266, .external_lex_state = 4}, [3404] = {.lex_state = 266, .external_lex_state = 4}, - [3405] = {.lex_state = 138, .external_lex_state = 4}, + [3405] = {.lex_state = 266, .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}, + [3410] = {.lex_state = 262, .external_lex_state = 5}, + [3411] = {.lex_state = 102, .external_lex_state = 4}, + [3412] = {.lex_state = 262, .external_lex_state = 5}, + [3413] = {.lex_state = 129, .external_lex_state = 5}, + [3414] = {.lex_state = 262, .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}, + [3417] = {.lex_state = 129, .external_lex_state = 5}, + [3418] = {.lex_state = 262, .external_lex_state = 5}, + [3419] = {.lex_state = 262, .external_lex_state = 5}, + [3420] = {.lex_state = 262, .external_lex_state = 5}, + [3421] = {.lex_state = 262, .external_lex_state = 5}, + [3422] = {.lex_state = 262, .external_lex_state = 5}, + [3423] = {.lex_state = 262, .external_lex_state = 5}, + [3424] = {.lex_state = 262, .external_lex_state = 5}, + [3425] = {.lex_state = 262, .external_lex_state = 5}, + [3426] = {.lex_state = 262, .external_lex_state = 5}, [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}, + [3429] = {.lex_state = 262, .external_lex_state = 5}, + [3430] = {.lex_state = 266, .external_lex_state = 4}, + [3431] = {.lex_state = 262, .external_lex_state = 5}, + [3432] = {.lex_state = 262, .external_lex_state = 5}, [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}, + [3435] = {.lex_state = 135, .external_lex_state = 4}, + [3436] = {.lex_state = 129, .external_lex_state = 5}, + [3437] = {.lex_state = 266, .external_lex_state = 4}, + [3438] = {.lex_state = 129, .external_lex_state = 5}, + [3439] = {.lex_state = 266, .external_lex_state = 4}, + [3440] = {.lex_state = 135, .external_lex_state = 4}, + [3441] = {.lex_state = 135, .external_lex_state = 4}, + [3442] = {.lex_state = 135, .external_lex_state = 4}, + [3443] = {.lex_state = 138, .external_lex_state = 4}, + [3444] = {.lex_state = 138, .external_lex_state = 4}, + [3445] = {.lex_state = 138, .external_lex_state = 4}, + [3446] = {.lex_state = 135, .external_lex_state = 4}, + [3447] = {.lex_state = 262, .external_lex_state = 4}, + [3448] = {.lex_state = 138, .external_lex_state = 4}, + [3449] = {.lex_state = 138, .external_lex_state = 4}, + [3450] = {.lex_state = 138, .external_lex_state = 4}, + [3451] = {.lex_state = 138, .external_lex_state = 4}, + [3452] = {.lex_state = 138, .external_lex_state = 4}, + [3453] = {.lex_state = 138, .external_lex_state = 4}, + [3454] = {.lex_state = 138, .external_lex_state = 4}, + [3455] = {.lex_state = 138, .external_lex_state = 4}, + [3456] = {.lex_state = 138, .external_lex_state = 4}, + [3457] = {.lex_state = 138, .external_lex_state = 4}, + [3458] = {.lex_state = 138, .external_lex_state = 4}, + [3459] = {.lex_state = 138, .external_lex_state = 4}, + [3460] = {.lex_state = 138, .external_lex_state = 4}, + [3461] = {.lex_state = 262, .external_lex_state = 4}, + [3462] = {.lex_state = 266, .external_lex_state = 4}, [3463] = {.lex_state = 138, .external_lex_state = 4}, - [3464] = {.lex_state = 262, .external_lex_state = 4}, + [3464] = {.lex_state = 138, .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}, + [3471] = {.lex_state = 135, .external_lex_state = 4}, + [3472] = {.lex_state = 135, .external_lex_state = 4}, + [3473] = {.lex_state = 138, .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 = 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}, + [3480] = {.lex_state = 138, .external_lex_state = 4}, + [3481] = {.lex_state = 262, .external_lex_state = 5}, + [3482] = {.lex_state = 262, .external_lex_state = 4}, + [3483] = {.lex_state = 135, .external_lex_state = 4}, + [3484] = {.lex_state = 102, .external_lex_state = 4}, + [3485] = {.lex_state = 135, .external_lex_state = 4}, + [3486] = {.lex_state = 102, .external_lex_state = 4}, + [3487] = {.lex_state = 102, .external_lex_state = 4}, + [3488] = {.lex_state = 266, .external_lex_state = 4}, + [3489] = {.lex_state = 266, .external_lex_state = 4}, + [3490] = {.lex_state = 102, .external_lex_state = 4}, + [3491] = {.lex_state = 102, .external_lex_state = 4}, + [3492] = {.lex_state = 266, .external_lex_state = 4}, + [3493] = {.lex_state = 135, .external_lex_state = 4}, + [3494] = {.lex_state = 135, .external_lex_state = 4}, + [3495] = {.lex_state = 266, .external_lex_state = 4}, + [3496] = {.lex_state = 262, .external_lex_state = 4}, + [3497] = {.lex_state = 266, .external_lex_state = 4}, + [3498] = {.lex_state = 262, .external_lex_state = 4}, + [3499] = {.lex_state = 266, .external_lex_state = 4}, + [3500] = {.lex_state = 266, .external_lex_state = 4}, + [3501] = {.lex_state = 129, .external_lex_state = 5}, + [3502] = {.lex_state = 102, .external_lex_state = 4}, + [3503] = {.lex_state = 262, .external_lex_state = 4}, + [3504] = {.lex_state = 266, .external_lex_state = 4}, + [3505] = {.lex_state = 102, .external_lex_state = 4}, + [3506] = {.lex_state = 266, .external_lex_state = 4}, + [3507] = {.lex_state = 266, .external_lex_state = 4}, + [3508] = {.lex_state = 266, .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}, + [3510] = {.lex_state = 266, .external_lex_state = 4}, + [3511] = {.lex_state = 266, .external_lex_state = 4}, + [3512] = {.lex_state = 102, .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}, + [3514] = {.lex_state = 266, .external_lex_state = 4}, + [3515] = {.lex_state = 266, .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}, + [3520] = {.lex_state = 135, .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}, + [3523] = {.lex_state = 262, .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}, + [3525] = {.lex_state = 135, .external_lex_state = 4}, + [3526] = {.lex_state = 262, .external_lex_state = 4}, + [3527] = {.lex_state = 138, .external_lex_state = 4}, + [3528] = {.lex_state = 138, .external_lex_state = 4}, + [3529] = {.lex_state = 138, .external_lex_state = 4}, + [3530] = {.lex_state = 262, .external_lex_state = 4}, + [3531] = {.lex_state = 262, .external_lex_state = 4}, + [3532] = {.lex_state = 138, .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}, + [3535] = {.lex_state = 266, .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 = 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 = 138, .external_lex_state = 4}, + [3537] = {.lex_state = 266, .external_lex_state = 4}, + [3538] = {.lex_state = 266, .external_lex_state = 4}, + [3539] = {.lex_state = 266, .external_lex_state = 4}, + [3540] = {.lex_state = 135, .external_lex_state = 4}, + [3541] = {.lex_state = 266, .external_lex_state = 4}, + [3542] = {.lex_state = 266, .external_lex_state = 4}, + [3543] = {.lex_state = 266, .external_lex_state = 4}, + [3544] = {.lex_state = 266, .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}, + [3548] = {.lex_state = 266, .external_lex_state = 4}, + [3549] = {.lex_state = 135, .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}, + [3552] = {.lex_state = 262, .external_lex_state = 4}, + [3553] = {.lex_state = 135, .external_lex_state = 4}, + [3554] = {.lex_state = 135, .external_lex_state = 4}, + [3555] = {.lex_state = 138, .external_lex_state = 4}, + [3556] = {.lex_state = 135, .external_lex_state = 4}, + [3557] = {.lex_state = 262, .external_lex_state = 4}, + [3558] = {.lex_state = 135, .external_lex_state = 4}, + [3559] = {.lex_state = 135, .external_lex_state = 4}, + [3560] = {.lex_state = 135, .external_lex_state = 4}, + [3561] = {.lex_state = 262, .external_lex_state = 4}, + [3562] = {.lex_state = 135, .external_lex_state = 4}, + [3563] = {.lex_state = 135, .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}, + [3565] = {.lex_state = 135, .external_lex_state = 4}, + [3566] = {.lex_state = 135, .external_lex_state = 4}, + [3567] = {.lex_state = 135, .external_lex_state = 4}, + [3568] = {.lex_state = 135, .external_lex_state = 4}, + [3569] = {.lex_state = 266, .external_lex_state = 4}, + [3570] = {.lex_state = 266, .external_lex_state = 4}, + [3571] = {.lex_state = 266, .external_lex_state = 4}, + [3572] = {.lex_state = 135, .external_lex_state = 4}, + [3573] = {.lex_state = 135, .external_lex_state = 4}, + [3574] = {.lex_state = 138, .external_lex_state = 4}, + [3575] = {.lex_state = 138, .external_lex_state = 4}, + [3576] = {.lex_state = 266, .external_lex_state = 4}, + [3577] = {.lex_state = 266, .external_lex_state = 4}, + [3578] = {.lex_state = 266, .external_lex_state = 4}, + [3579] = {.lex_state = 266, .external_lex_state = 4}, + [3580] = {.lex_state = 266, .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}, + [3584] = {.lex_state = 266, .external_lex_state = 4}, + [3585] = {.lex_state = 266, .external_lex_state = 4}, + [3586] = {.lex_state = 266, .external_lex_state = 4}, + [3587] = {.lex_state = 266, .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}, + [3593] = {.lex_state = 135, .external_lex_state = 4}, + [3594] = {.lex_state = 138, .external_lex_state = 4}, + [3595] = {.lex_state = 138, .external_lex_state = 4}, + [3596] = {.lex_state = 138, .external_lex_state = 4}, + [3597] = {.lex_state = 135, .external_lex_state = 4}, + [3598] = {.lex_state = 135, .external_lex_state = 4}, + [3599] = {.lex_state = 135, .external_lex_state = 4}, + [3600] = {.lex_state = 138, .external_lex_state = 4}, + [3601] = {.lex_state = 138, .external_lex_state = 4}, + [3602] = {.lex_state = 138, .external_lex_state = 4}, + [3603] = {.lex_state = 262, .external_lex_state = 5}, + [3604] = {.lex_state = 262, .external_lex_state = 5}, + [3605] = {.lex_state = 135, .external_lex_state = 4}, + [3606] = {.lex_state = 135, .external_lex_state = 4}, + [3607] = {.lex_state = 262, .external_lex_state = 4}, + [3608] = {.lex_state = 262, .external_lex_state = 4}, + [3609] = {.lex_state = 262, .external_lex_state = 5}, [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}, + [3613] = {.lex_state = 262, .external_lex_state = 4}, + [3614] = {.lex_state = 262, .external_lex_state = 4}, + [3615] = {.lex_state = 262, .external_lex_state = 4}, + [3616] = {.lex_state = 135, .external_lex_state = 4}, + [3617] = {.lex_state = 138, .external_lex_state = 4}, + [3618] = {.lex_state = 138, .external_lex_state = 4}, + [3619] = {.lex_state = 138, .external_lex_state = 4}, + [3620] = {.lex_state = 135, .external_lex_state = 4}, + [3621] = {.lex_state = 135, .external_lex_state = 4}, [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}, + [3623] = {.lex_state = 135, .external_lex_state = 4}, + [3624] = {.lex_state = 102, .external_lex_state = 4}, + [3625] = {.lex_state = 135, .external_lex_state = 4}, + [3626] = {.lex_state = 138, .external_lex_state = 4}, + [3627] = {.lex_state = 135, .external_lex_state = 4}, + [3628] = {.lex_state = 138, .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}, + [3630] = {.lex_state = 138, .external_lex_state = 4}, + [3631] = {.lex_state = 129, .external_lex_state = 5}, + [3632] = {.lex_state = 129, .external_lex_state = 5}, + [3633] = {.lex_state = 102, .external_lex_state = 4}, + [3634] = {.lex_state = 266, .external_lex_state = 4}, + [3635] = {.lex_state = 262, .external_lex_state = 4}, + [3636] = {.lex_state = 262, .external_lex_state = 4}, + [3637] = {.lex_state = 262, .external_lex_state = 4}, + [3638] = {.lex_state = 102, .external_lex_state = 4}, + [3639] = {.lex_state = 102, .external_lex_state = 4}, + [3640] = {.lex_state = 102, .external_lex_state = 4}, + [3641] = {.lex_state = 135, .external_lex_state = 4}, + [3642] = {.lex_state = 135, .external_lex_state = 4}, + [3643] = {.lex_state = 135, .external_lex_state = 4}, + [3644] = {.lex_state = 135, .external_lex_state = 4}, + [3645] = {.lex_state = 135, .external_lex_state = 4}, + [3646] = {.lex_state = 135, .external_lex_state = 4}, + [3647] = {.lex_state = 102, .external_lex_state = 4}, + [3648] = {.lex_state = 102, .external_lex_state = 4}, + [3649] = {.lex_state = 141, .external_lex_state = 4}, + [3650] = {.lex_state = 262, .external_lex_state = 4}, + [3651] = {.lex_state = 262, .external_lex_state = 4}, + [3652] = {.lex_state = 262, .external_lex_state = 4}, + [3653] = {.lex_state = 141, .external_lex_state = 4}, + [3654] = {.lex_state = 141, .external_lex_state = 4}, + [3655] = {.lex_state = 141, .external_lex_state = 4}, + [3656] = {.lex_state = 141, .external_lex_state = 4}, + [3657] = {.lex_state = 262, .external_lex_state = 4}, + [3658] = {.lex_state = 102, .external_lex_state = 4}, + [3659] = {.lex_state = 262, .external_lex_state = 4}, + [3660] = {.lex_state = 262, .external_lex_state = 4}, + [3661] = {.lex_state = 129, .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}, + [3665] = {.lex_state = 262, .external_lex_state = 4}, + [3666] = {.lex_state = 262, .external_lex_state = 4}, + [3667] = {.lex_state = 262, .external_lex_state = 4}, + [3668] = {.lex_state = 262, .external_lex_state = 4}, [3669] = {.lex_state = 262, .external_lex_state = 4}, - [3670] = {.lex_state = 102, .external_lex_state = 4}, + [3670] = {.lex_state = 262, .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}, + [3672] = {.lex_state = 262, .external_lex_state = 4}, + [3673] = {.lex_state = 262, .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}, + [3679] = {.lex_state = 141, .external_lex_state = 4}, + [3680] = {.lex_state = 141, .external_lex_state = 4}, + [3681] = {.lex_state = 129, .external_lex_state = 4}, + [3682] = {.lex_state = 129, .external_lex_state = 4}, + [3683] = {.lex_state = 141, .external_lex_state = 4}, + [3684] = {.lex_state = 141, .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}, + [3688] = {.lex_state = 129, .external_lex_state = 4}, + [3689] = {.lex_state = 129, .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}, + [3691] = {.lex_state = 102, .external_lex_state = 4}, + [3692] = {.lex_state = 262, .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}, + [3694] = {.lex_state = 262, .external_lex_state = 4}, + [3695] = {.lex_state = 262, .external_lex_state = 4}, + [3696] = {.lex_state = 262, .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}, + [3700] = {.lex_state = 262, .external_lex_state = 4}, + [3701] = {.lex_state = 262, .external_lex_state = 4}, [3702] = {.lex_state = 262, .external_lex_state = 4}, - [3703] = {.lex_state = 102, .external_lex_state = 4}, + [3703] = {.lex_state = 262, .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}, @@ -21598,21 +18960,21 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [3716] = {.lex_state = 102, .external_lex_state = 4}, + [3717] = {.lex_state = 129, .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}, + [3719] = {.lex_state = 102, .external_lex_state = 4}, + [3720] = {.lex_state = 102, .external_lex_state = 4}, + [3721] = {.lex_state = 102, .external_lex_state = 4}, + [3722] = {.lex_state = 102, .external_lex_state = 4}, + [3723] = {.lex_state = 102, .external_lex_state = 4}, + [3724] = {.lex_state = 102, .external_lex_state = 4}, + [3725] = {.lex_state = 102, .external_lex_state = 4}, + [3726] = {.lex_state = 102, .external_lex_state = 4}, + [3727] = {.lex_state = 102, .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}, + [3729] = {.lex_state = 102, .external_lex_state = 4}, + [3730] = {.lex_state = 102, .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}, @@ -21635,7 +18997,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [3753] = {.lex_state = 262, .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}, @@ -21647,7 +19009,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [3765] = {.lex_state = 102, .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}, @@ -21677,137 +19039,137 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [3795] = {.lex_state = 262, .external_lex_state = 4}, + [3796] = {.lex_state = 262, .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}, + [3798] = {.lex_state = 262, .external_lex_state = 4}, + [3799] = {.lex_state = 262, .external_lex_state = 4}, + [3800] = {.lex_state = 262, .external_lex_state = 4}, + [3801] = {.lex_state = 262, .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}, + [3805] = {.lex_state = 262, .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}, + [3807] = {.lex_state = 102, .external_lex_state = 4}, + [3808] = {.lex_state = 102, .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}, + [3814] = {.lex_state = 129, .external_lex_state = 4}, + [3815] = {.lex_state = 262, .external_lex_state = 4}, + [3816] = {.lex_state = 262, .external_lex_state = 4}, + [3817] = {.lex_state = 129, .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}, + [3819] = {.lex_state = 262, .external_lex_state = 4}, + [3820] = {.lex_state = 262, .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}, + [3823] = {.lex_state = 102, .external_lex_state = 4}, + [3824] = {.lex_state = 102, .external_lex_state = 4}, + [3825] = {.lex_state = 102, .external_lex_state = 4}, + [3826] = {.lex_state = 262, .external_lex_state = 4}, + [3827] = {.lex_state = 102, .external_lex_state = 4}, [3828] = {.lex_state = 262, .external_lex_state = 4}, - [3829] = {.lex_state = 129, .external_lex_state = 4}, + [3829] = {.lex_state = 102, .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}, + [3831] = {.lex_state = 102, .external_lex_state = 4}, + [3832] = {.lex_state = 102, .external_lex_state = 4}, + [3833] = {.lex_state = 262, .external_lex_state = 4}, + [3834] = {.lex_state = 102, .external_lex_state = 4}, + [3835] = {.lex_state = 262, .external_lex_state = 4}, + [3836] = {.lex_state = 262, .external_lex_state = 4}, + [3837] = {.lex_state = 262, .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}, + [3839] = {.lex_state = 262, .external_lex_state = 4}, + [3840] = {.lex_state = 102, .external_lex_state = 4}, + [3841] = {.lex_state = 262, .external_lex_state = 4}, + [3842] = {.lex_state = 262, .external_lex_state = 4}, + [3843] = {.lex_state = 262, .external_lex_state = 4}, + [3844] = {.lex_state = 262, .external_lex_state = 4}, [3845] = {.lex_state = 262, .external_lex_state = 4}, - [3846] = {.lex_state = 102, .external_lex_state = 4}, + [3846] = {.lex_state = 262, .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}, + [3851] = {.lex_state = 129, .external_lex_state = 4}, + [3852] = {.lex_state = 129, .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}, + [3855] = {.lex_state = 102, .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}, + [3858] = {.lex_state = 102, .external_lex_state = 4}, + [3859] = {.lex_state = 102, .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}, + [3863] = {.lex_state = 102, .external_lex_state = 4}, + [3864] = {.lex_state = 102, .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}, + [3867] = {.lex_state = 262, .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}, + [3870] = {.lex_state = 262, .external_lex_state = 4}, + [3871] = {.lex_state = 262, .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}, + [3875] = {.lex_state = 262, .external_lex_state = 4}, + [3876] = {.lex_state = 262, .external_lex_state = 4}, + [3877] = {.lex_state = 102, .external_lex_state = 4}, [3878] = {.lex_state = 262, .external_lex_state = 4}, - [3879] = {.lex_state = 262, .external_lex_state = 4}, + [3879] = {.lex_state = 102, .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}, + [3882] = {.lex_state = 129, .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}, + [3887] = {.lex_state = 129, .external_lex_state = 4}, [3888] = {.lex_state = 262, .external_lex_state = 4}, - [3889] = {.lex_state = 102, .external_lex_state = 4}, + [3889] = {.lex_state = 262, .external_lex_state = 4}, [3890] = {.lex_state = 262, .external_lex_state = 4}, - [3891] = {.lex_state = 102, .external_lex_state = 4}, + [3891] = {.lex_state = 262, .external_lex_state = 4}, [3892] = {.lex_state = 262, .external_lex_state = 4}, - [3893] = {.lex_state = 262, .external_lex_state = 4}, + [3893] = {.lex_state = 129, .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}, + [3895] = {.lex_state = 141, .external_lex_state = 4}, + [3896] = {.lex_state = 141, .external_lex_state = 4}, + [3897] = {.lex_state = 141, .external_lex_state = 4}, [3898] = {.lex_state = 262, .external_lex_state = 4}, - [3899] = {.lex_state = 129, .external_lex_state = 4}, + [3899] = {.lex_state = 141, .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}, + [3903] = {.lex_state = 129, .external_lex_state = 4}, + [3904] = {.lex_state = 141, .external_lex_state = 4}, + [3905] = {.lex_state = 141, .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}, + [3910] = {.lex_state = 141, .external_lex_state = 4}, + [3911] = {.lex_state = 129, .external_lex_state = 4}, + [3912] = {.lex_state = 141, .external_lex_state = 4}, + [3913] = {.lex_state = 141, .external_lex_state = 4}, + [3914] = {.lex_state = 141, .external_lex_state = 4}, + [3915] = {.lex_state = 141, .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}, + [3918] = {.lex_state = 141, .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}, + [3923] = {.lex_state = 141, .external_lex_state = 4}, [3924] = {.lex_state = 141, .external_lex_state = 4}, - [3925] = {.lex_state = 141, .external_lex_state = 4}, + [3925] = {.lex_state = 262, .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}, @@ -21820,27 +19182,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [3938] = {.lex_state = 262, .external_lex_state = 4}, + [3939] = {.lex_state = 262, .external_lex_state = 4}, + [3940] = {.lex_state = 129, .external_lex_state = 4}, + [3941] = {.lex_state = 262, .external_lex_state = 4}, + [3942] = {.lex_state = 262, .external_lex_state = 4}, + [3943] = {.lex_state = 262, .external_lex_state = 4}, + [3944] = {.lex_state = 129, .external_lex_state = 4}, + [3945] = {.lex_state = 129, .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}, + [3947] = {.lex_state = 262, .external_lex_state = 4}, + [3948] = {.lex_state = 262, .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}, + [3952] = {.lex_state = 262, .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}, + [3956] = {.lex_state = 262, .external_lex_state = 4}, + [3957] = {.lex_state = 262, .external_lex_state = 4}, + [3958] = {.lex_state = 262, .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}, @@ -21850,41 +19212,41 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [3968] = {.lex_state = 141, .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}, + [3970] = {.lex_state = 129, .external_lex_state = 4}, + [3971] = {.lex_state = 129, .external_lex_state = 4}, + [3972] = {.lex_state = 129, .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}, + [3974] = {.lex_state = 141, .external_lex_state = 4}, + [3975] = {.lex_state = 141, .external_lex_state = 4}, + [3976] = {.lex_state = 141, .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}, + [3978] = {.lex_state = 141, .external_lex_state = 4}, + [3979] = {.lex_state = 141, .external_lex_state = 4}, + [3980] = {.lex_state = 141, .external_lex_state = 4}, + [3981] = {.lex_state = 141, .external_lex_state = 4}, + [3982] = {.lex_state = 141, .external_lex_state = 4}, + [3983] = {.lex_state = 141, .external_lex_state = 4}, + [3984] = {.lex_state = 141, .external_lex_state = 4}, + [3985] = {.lex_state = 141, .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}, + [3989] = {.lex_state = 129, .external_lex_state = 4}, + [3990] = {.lex_state = 262, .external_lex_state = 4}, + [3991] = {.lex_state = 129, .external_lex_state = 4}, + [3992] = {.lex_state = 129, .external_lex_state = 4}, + [3993] = {.lex_state = 129, .external_lex_state = 4}, + [3994] = {.lex_state = 129, .external_lex_state = 4}, + [3995] = {.lex_state = 129, .external_lex_state = 4}, + [3996] = {.lex_state = 129, .external_lex_state = 4}, + [3997] = {.lex_state = 129, .external_lex_state = 4}, + [3998] = {.lex_state = 129, .external_lex_state = 4}, + [3999] = {.lex_state = 129, .external_lex_state = 4}, + [4000] = {.lex_state = 129, .external_lex_state = 4}, [4001] = {.lex_state = 129, .external_lex_state = 4}, - [4002] = {.lex_state = 262, .external_lex_state = 4}, + [4002] = {.lex_state = 129, .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}, @@ -21901,34 +19263,34 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [4019] = {.lex_state = 262, .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}, + [4024] = {.lex_state = 102, .external_lex_state = 4}, + [4025] = {.lex_state = 102, .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}, + [4031] = {.lex_state = 129, .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}, + [4034] = {.lex_state = 262, .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}, + [4036] = {.lex_state = 129, .external_lex_state = 4}, + [4037] = {.lex_state = 262, .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}, + [4043] = {.lex_state = 262, .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}, + [4045] = {.lex_state = 262, .external_lex_state = 4}, + [4046] = {.lex_state = 129, .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}, @@ -21940,59 +19302,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [4058] = {.lex_state = 129, .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}, + [4061] = {.lex_state = 129, .external_lex_state = 4}, + [4062] = {.lex_state = 262, .external_lex_state = 4}, + [4063] = {.lex_state = 262, .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}, + [4066] = {.lex_state = 262, .external_lex_state = 4}, + [4067] = {.lex_state = 262, .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}, + [4069] = {.lex_state = 129, .external_lex_state = 4}, + [4070] = {.lex_state = 262, .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}, + [4072] = {.lex_state = 262, .external_lex_state = 4}, + [4073] = {.lex_state = 262, .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}, + [4076] = {.lex_state = 262, .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}, + [4078] = {.lex_state = 129, .external_lex_state = 4}, + [4079] = {.lex_state = 129, .external_lex_state = 4}, [4080] = {.lex_state = 129, .external_lex_state = 4}, - [4081] = {.lex_state = 129, .external_lex_state = 4}, + [4081] = {.lex_state = 262, .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}, + [4084] = {.lex_state = 129, .external_lex_state = 4}, + [4085] = {.lex_state = 129, .external_lex_state = 4}, + [4086] = {.lex_state = 129, .external_lex_state = 4}, [4087] = {.lex_state = 262, .external_lex_state = 4}, - [4088] = {.lex_state = 262, .external_lex_state = 4}, + [4088] = {.lex_state = 129, .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}, + [4092] = {.lex_state = 262, .external_lex_state = 4}, + [4093] = {.lex_state = 129, .external_lex_state = 4}, + [4094] = {.lex_state = 129, .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}, + [4099] = {.lex_state = 129, .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}, + [4104] = {.lex_state = 129, .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}, + [4110] = {.lex_state = 102, .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}, @@ -22001,20 +19363,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [4119] = {.lex_state = 262, .external_lex_state = 4}, + [4120] = {.lex_state = 262, .external_lex_state = 4}, + [4121] = {.lex_state = 262, .external_lex_state = 4}, + [4122] = {.lex_state = 262, .external_lex_state = 4}, + [4123] = {.lex_state = 262, .external_lex_state = 4}, + [4124] = {.lex_state = 262, .external_lex_state = 4}, + [4125] = {.lex_state = 262, .external_lex_state = 4}, + [4126] = {.lex_state = 262, .external_lex_state = 4}, + [4127] = {.lex_state = 262, .external_lex_state = 4}, + [4128] = {.lex_state = 102, .external_lex_state = 4}, + [4129] = {.lex_state = 262, .external_lex_state = 4}, + [4130] = {.lex_state = 262, .external_lex_state = 4}, [4131] = {.lex_state = 262, .external_lex_state = 4}, - [4132] = {.lex_state = 262, .external_lex_state = 4}, + [4132] = {.lex_state = 102, .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}, @@ -22022,26 +19384,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [4140] = {.lex_state = 262, .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}, + [4144] = {.lex_state = 262, .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}, + [4148] = {.lex_state = 50, .external_lex_state = 6}, + [4149] = {.lex_state = 50, .external_lex_state = 6}, + [4150] = {.lex_state = 50, .external_lex_state = 6}, + [4151] = {.lex_state = 50, .external_lex_state = 6}, + [4152] = {.lex_state = 50, .external_lex_state = 6}, + [4153] = {.lex_state = 50, .external_lex_state = 6}, + [4154] = {.lex_state = 50, .external_lex_state = 6}, + [4155] = {.lex_state = 50, .external_lex_state = 6}, + [4156] = {.lex_state = 50, .external_lex_state = 6}, + [4157] = {.lex_state = 50, .external_lex_state = 6}, + [4158] = {.lex_state = 50, .external_lex_state = 6}, + [4159] = {.lex_state = 50, .external_lex_state = 6}, [4160] = {.lex_state = 50, .external_lex_state = 6}, [4161] = {.lex_state = 50, .external_lex_state = 6}, [4162] = {.lex_state = 50, .external_lex_state = 6}, @@ -22066,18 +19428,18 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [4184] = {.lex_state = 102, .external_lex_state = 6}, + [4185] = {.lex_state = 102, .external_lex_state = 6}, + [4186] = {.lex_state = 102, .external_lex_state = 6}, + [4187] = {.lex_state = 102, .external_lex_state = 6}, + [4188] = {.lex_state = 102, .external_lex_state = 6}, + [4189] = {.lex_state = 102, .external_lex_state = 6}, + [4190] = {.lex_state = 102, .external_lex_state = 6}, + [4191] = {.lex_state = 102, .external_lex_state = 6}, + [4192] = {.lex_state = 102, .external_lex_state = 6}, + [4193] = {.lex_state = 102, .external_lex_state = 6}, + [4194] = {.lex_state = 102, .external_lex_state = 6}, + [4195] = {.lex_state = 102, .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}, @@ -22138,8 +19500,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [4256] = {.lex_state = 144, .external_lex_state = 6}, + [4257] = {.lex_state = 144, .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}, @@ -22150,8 +19512,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [4268] = {.lex_state = 102, .external_lex_state = 6}, + [4269] = {.lex_state = 102, .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}, @@ -22220,616 +19582,616 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [4338] = {.lex_state = 144, .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 = 102, .external_lex_state = 6}, [4344] = {.lex_state = 102, .external_lex_state = 6}, - [4345] = {.lex_state = 102, .external_lex_state = 6}, + [4345] = {.lex_state = 144, .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 = 144, .external_lex_state = 6}, - [4351] = {.lex_state = 102, .external_lex_state = 6}, - [4352] = {.lex_state = 102, .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 = 144, .external_lex_state = 6}, - [4358] = {.lex_state = 102, .external_lex_state = 6}, - [4359] = {.lex_state = 102, .external_lex_state = 6}, - [4360] = {.lex_state = 102, .external_lex_state = 6}, - [4361] = {.lex_state = 102, .external_lex_state = 6}, - [4362] = {.lex_state = 144, .external_lex_state = 6}, + [4351] = {.lex_state = 144, .external_lex_state = 6}, + [4352] = {.lex_state = 50, .external_lex_state = 6}, + [4353] = {.lex_state = 50, .external_lex_state = 6}, + [4354] = {.lex_state = 50, .external_lex_state = 6}, + [4355] = {.lex_state = 144, .external_lex_state = 6}, + [4356] = {.lex_state = 50, .external_lex_state = 6}, + [4357] = {.lex_state = 50, .external_lex_state = 6}, + [4358] = {.lex_state = 144, .external_lex_state = 6}, + [4359] = {.lex_state = 144, .external_lex_state = 6}, + [4360] = {.lex_state = 144, .external_lex_state = 6}, + [4361] = {.lex_state = 144, .external_lex_state = 6}, + [4362] = {.lex_state = 50, .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}, + [4366] = {.lex_state = 144, .external_lex_state = 6}, + [4367] = {.lex_state = 50, .external_lex_state = 6}, + [4368] = {.lex_state = 144, .external_lex_state = 6}, + [4369] = {.lex_state = 144, .external_lex_state = 6}, + [4370] = {.lex_state = 50, .external_lex_state = 6}, + [4371] = {.lex_state = 50, .external_lex_state = 6}, + [4372] = {.lex_state = 50, .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}, + [4377] = {.lex_state = 144, .external_lex_state = 6}, [4378] = {.lex_state = 144, .external_lex_state = 6}, - [4379] = {.lex_state = 50, .external_lex_state = 6}, + [4379] = {.lex_state = 144, .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}, + [4382] = {.lex_state = 144, .external_lex_state = 6}, + [4383] = {.lex_state = 144, .external_lex_state = 6}, + [4384] = {.lex_state = 144, .external_lex_state = 6}, + [4385] = {.lex_state = 50, .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 = 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}, + [4390] = {.lex_state = 50, .external_lex_state = 6}, + [4391] = {.lex_state = 50, .external_lex_state = 6}, + [4392] = {.lex_state = 50, .external_lex_state = 6}, + [4393] = {.lex_state = 51, .external_lex_state = 6}, + [4394] = {.lex_state = 102, .external_lex_state = 6}, + [4395] = {.lex_state = 102, .external_lex_state = 6}, + [4396] = {.lex_state = 102, .external_lex_state = 6}, + [4397] = {.lex_state = 64, .external_lex_state = 7}, + [4398] = {.lex_state = 64, .external_lex_state = 8}, + [4399] = {.lex_state = 64, .external_lex_state = 9}, + [4400] = {.lex_state = 62, .external_lex_state = 10}, + [4401] = {.lex_state = 64, .external_lex_state = 11}, + [4402] = {.lex_state = 62, .external_lex_state = 12}, + [4403] = {.lex_state = 64, .external_lex_state = 8}, + [4404] = {.lex_state = 64, .external_lex_state = 9}, + [4405] = {.lex_state = 62, .external_lex_state = 10}, + [4406] = {.lex_state = 64, .external_lex_state = 13}, + [4407] = {.lex_state = 64, .external_lex_state = 14}, + [4408] = {.lex_state = 64, .external_lex_state = 15}, + [4409] = {.lex_state = 64, .external_lex_state = 16}, + [4410] = {.lex_state = 64, .external_lex_state = 7}, + [4411] = {.lex_state = 64, .external_lex_state = 15}, + [4412] = {.lex_state = 64, .external_lex_state = 14}, + [4413] = {.lex_state = 64, .external_lex_state = 13}, + [4414] = {.lex_state = 64, .external_lex_state = 8}, + [4415] = {.lex_state = 64, .external_lex_state = 11}, + [4416] = {.lex_state = 62, .external_lex_state = 12}, + [4417] = {.lex_state = 64, .external_lex_state = 9}, + [4418] = {.lex_state = 64, .external_lex_state = 7}, + [4419] = {.lex_state = 64, .external_lex_state = 16}, + [4420] = {.lex_state = 64, .external_lex_state = 8}, + [4421] = {.lex_state = 62, .external_lex_state = 10}, + [4422] = {.lex_state = 64, .external_lex_state = 11}, + [4423] = {.lex_state = 62, .external_lex_state = 12}, + [4424] = {.lex_state = 62, .external_lex_state = 10}, + [4425] = {.lex_state = 64, .external_lex_state = 9}, + [4426] = {.lex_state = 64, .external_lex_state = 11}, + [4427] = {.lex_state = 64, .external_lex_state = 13}, + [4428] = {.lex_state = 64, .external_lex_state = 14}, [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}, + [4430] = {.lex_state = 64, .external_lex_state = 16}, + [4431] = {.lex_state = 64, .external_lex_state = 11}, + [4432] = {.lex_state = 62, .external_lex_state = 10}, + [4433] = {.lex_state = 62, .external_lex_state = 12}, + [4434] = {.lex_state = 62, .external_lex_state = 12}, + [4435] = {.lex_state = 64, .external_lex_state = 9}, + [4436] = {.lex_state = 64, .external_lex_state = 11}, + [4437] = {.lex_state = 62, .external_lex_state = 10}, + [4438] = {.lex_state = 64, .external_lex_state = 9}, + [4439] = {.lex_state = 64, .external_lex_state = 16}, + [4440] = {.lex_state = 64, .external_lex_state = 7}, + [4441] = {.lex_state = 64, .external_lex_state = 16}, + [4442] = {.lex_state = 64, .external_lex_state = 7}, + [4443] = {.lex_state = 64, .external_lex_state = 15}, + [4444] = {.lex_state = 64, .external_lex_state = 14}, + [4445] = {.lex_state = 64, .external_lex_state = 13}, + [4446] = {.lex_state = 64, .external_lex_state = 8}, + [4447] = {.lex_state = 64, .external_lex_state = 15}, + [4448] = {.lex_state = 64, .external_lex_state = 14}, + [4449] = {.lex_state = 64, .external_lex_state = 16}, + [4450] = {.lex_state = 64, .external_lex_state = 13}, + [4451] = {.lex_state = 64, .external_lex_state = 9}, [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}, + [4453] = {.lex_state = 64, .external_lex_state = 15}, + [4454] = {.lex_state = 64, .external_lex_state = 14}, + [4455] = {.lex_state = 64, .external_lex_state = 13}, + [4456] = {.lex_state = 64, .external_lex_state = 8}, + [4457] = {.lex_state = 62, .external_lex_state = 12}, + [4458] = {.lex_state = 64, .external_lex_state = 11}, + [4459] = {.lex_state = 62, .external_lex_state = 12}, + [4460] = {.lex_state = 64, .external_lex_state = 11}, + [4461] = {.lex_state = 62, .external_lex_state = 10}, + [4462] = {.lex_state = 62, .external_lex_state = 10}, + [4463] = {.lex_state = 64, .external_lex_state = 8}, + [4464] = {.lex_state = 64, .external_lex_state = 15}, + [4465] = {.lex_state = 64, .external_lex_state = 7}, + [4466] = {.lex_state = 64, .external_lex_state = 16}, + [4467] = {.lex_state = 64, .external_lex_state = 7}, + [4468] = {.lex_state = 64, .external_lex_state = 15}, + [4469] = {.lex_state = 64, .external_lex_state = 11}, + [4470] = {.lex_state = 62, .external_lex_state = 12}, + [4471] = {.lex_state = 64, .external_lex_state = 9}, + [4472] = {.lex_state = 64, .external_lex_state = 14}, + [4473] = {.lex_state = 64, .external_lex_state = 16}, + [4474] = {.lex_state = 64, .external_lex_state = 16}, + [4475] = {.lex_state = 64, .external_lex_state = 7}, [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}, + [4477] = {.lex_state = 64, .external_lex_state = 13}, + [4478] = {.lex_state = 64, .external_lex_state = 14}, + [4479] = {.lex_state = 62, .external_lex_state = 10}, + [4480] = {.lex_state = 64, .external_lex_state = 11}, + [4481] = {.lex_state = 62, .external_lex_state = 12}, + [4482] = {.lex_state = 64, .external_lex_state = 9}, + [4483] = {.lex_state = 64, .external_lex_state = 13}, + [4484] = {.lex_state = 64, .external_lex_state = 8}, + [4485] = {.lex_state = 64, .external_lex_state = 13}, + [4486] = {.lex_state = 64, .external_lex_state = 8}, + [4487] = {.lex_state = 64, .external_lex_state = 14}, + [4488] = {.lex_state = 64, .external_lex_state = 9}, + [4489] = {.lex_state = 64, .external_lex_state = 8}, + [4490] = {.lex_state = 62, .external_lex_state = 12}, [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}, + [4495] = {.lex_state = 62, .external_lex_state = 10}, + [4496] = {.lex_state = 64, .external_lex_state = 11}, + [4497] = {.lex_state = 64, .external_lex_state = 15}, + [4498] = {.lex_state = 64, .external_lex_state = 7}, + [4499] = {.lex_state = 62, .external_lex_state = 10}, + [4500] = {.lex_state = 64, .external_lex_state = 11}, + [4501] = {.lex_state = 64, .external_lex_state = 11}, + [4502] = {.lex_state = 62, .external_lex_state = 10}, + [4503] = {.lex_state = 64, .external_lex_state = 11}, + [4504] = {.lex_state = 62, .external_lex_state = 10}, + [4505] = {.lex_state = 64, .external_lex_state = 11}, + [4506] = {.lex_state = 62, .external_lex_state = 10}, [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}, + [4508] = {.lex_state = 62, .external_lex_state = 10}, + [4509] = {.lex_state = 64, .external_lex_state = 11}, + [4510] = {.lex_state = 64, .external_lex_state = 11}, + [4511] = {.lex_state = 62, .external_lex_state = 12}, + [4512] = {.lex_state = 64, .external_lex_state = 9}, + [4513] = {.lex_state = 62, .external_lex_state = 10}, + [4514] = {.lex_state = 64, .external_lex_state = 16}, + [4515] = {.lex_state = 64, .external_lex_state = 7}, + [4516] = {.lex_state = 64, .external_lex_state = 15}, + [4517] = {.lex_state = 64, .external_lex_state = 14}, + [4518] = {.lex_state = 64, .external_lex_state = 13}, + [4519] = {.lex_state = 64, .external_lex_state = 8}, [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}, + [4522] = {.lex_state = 62, .external_lex_state = 10}, + [4523] = {.lex_state = 64, .external_lex_state = 11}, + [4524] = {.lex_state = 62, .external_lex_state = 10}, + [4525] = {.lex_state = 64, .external_lex_state = 11}, + [4526] = {.lex_state = 62, .external_lex_state = 10}, + [4527] = {.lex_state = 64, .external_lex_state = 11}, + [4528] = {.lex_state = 62, .external_lex_state = 10}, + [4529] = {.lex_state = 64, .external_lex_state = 11}, + [4530] = {.lex_state = 62, .external_lex_state = 10}, + [4531] = {.lex_state = 64, .external_lex_state = 11}, [4532] = {.lex_state = 62, .external_lex_state = 10}, [4533] = {.lex_state = 64, .external_lex_state = 11}, - [4534] = {.lex_state = 62, .external_lex_state = 10}, + [4534] = {.lex_state = 64, .external_lex_state = 8}, [4535] = {.lex_state = 64, .external_lex_state = 11}, - [4536] = {.lex_state = 62, .external_lex_state = 10}, - [4537] = {.lex_state = 64, .external_lex_state = 11}, + [4536] = {.lex_state = 64, .external_lex_state = 8}, + [4537] = {.lex_state = 64, .external_lex_state = 13}, [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}, + [4540] = {.lex_state = 64, .external_lex_state = 14}, + [4541] = {.lex_state = 62, .external_lex_state = 10}, + [4542] = {.lex_state = 64, .external_lex_state = 11}, + [4543] = {.lex_state = 62, .external_lex_state = 10}, + [4544] = {.lex_state = 64, .external_lex_state = 9}, + [4545] = {.lex_state = 62, .external_lex_state = 12}, + [4546] = {.lex_state = 64, .external_lex_state = 11}, + [4547] = {.lex_state = 62, .external_lex_state = 10}, + [4548] = {.lex_state = 64, .external_lex_state = 9}, + [4549] = {.lex_state = 64, .external_lex_state = 15}, + [4550] = {.lex_state = 64, .external_lex_state = 13}, + [4551] = {.lex_state = 64, .external_lex_state = 14}, + [4552] = {.lex_state = 64, .external_lex_state = 16}, + [4553] = {.lex_state = 64, .external_lex_state = 7}, + [4554] = {.lex_state = 64, .external_lex_state = 15}, + [4555] = {.lex_state = 64, .external_lex_state = 14}, + [4556] = {.lex_state = 64, .external_lex_state = 13}, + [4557] = {.lex_state = 64, .external_lex_state = 8}, + [4558] = {.lex_state = 62, .external_lex_state = 12}, + [4559] = {.lex_state = 64, .external_lex_state = 11}, + [4560] = {.lex_state = 62, .external_lex_state = 10}, + [4561] = {.lex_state = 64, .external_lex_state = 9}, + [4562] = {.lex_state = 62, .external_lex_state = 12}, + [4563] = {.lex_state = 64, .external_lex_state = 11}, + [4564] = {.lex_state = 62, .external_lex_state = 10}, + [4565] = {.lex_state = 64, .external_lex_state = 9}, + [4566] = {.lex_state = 62, .external_lex_state = 12}, + [4567] = {.lex_state = 64, .external_lex_state = 11}, + [4568] = {.lex_state = 62, .external_lex_state = 10}, + [4569] = {.lex_state = 64, .external_lex_state = 15}, + [4570] = {.lex_state = 64, .external_lex_state = 7}, + [4571] = {.lex_state = 64, .external_lex_state = 9}, + [4572] = {.lex_state = 62, .external_lex_state = 12}, + [4573] = {.lex_state = 64, .external_lex_state = 16}, + [4574] = {.lex_state = 64, .external_lex_state = 11}, + [4575] = {.lex_state = 62, .external_lex_state = 10}, + [4576] = {.lex_state = 64, .external_lex_state = 9}, + [4577] = {.lex_state = 62, .external_lex_state = 12}, + [4578] = {.lex_state = 64, .external_lex_state = 11}, + [4579] = {.lex_state = 64, .external_lex_state = 7}, [4580] = {.lex_state = 62, .external_lex_state = 10}, - [4581] = {.lex_state = 64, .external_lex_state = 15}, - [4582] = {.lex_state = 64, .external_lex_state = 7}, + [4581] = {.lex_state = 64, .external_lex_state = 16}, + [4582] = {.lex_state = 62, .external_lex_state = 12}, [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}, + [4585] = {.lex_state = 64, .external_lex_state = 11}, + [4586] = {.lex_state = 62, .external_lex_state = 10}, + [4587] = {.lex_state = 64, .external_lex_state = 9}, + [4588] = {.lex_state = 62, .external_lex_state = 12}, + [4589] = {.lex_state = 64, .external_lex_state = 11}, + [4590] = {.lex_state = 62, .external_lex_state = 10}, + [4591] = {.lex_state = 64, .external_lex_state = 11}, + [4592] = {.lex_state = 62, .external_lex_state = 12}, + [4593] = {.lex_state = 64, .external_lex_state = 9}, + [4594] = {.lex_state = 62, .external_lex_state = 10}, [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}, + [4601] = {.lex_state = 64, .external_lex_state = 9}, [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}, + [4606] = {.lex_state = 64, .external_lex_state = 11}, + [4607] = {.lex_state = 62, .external_lex_state = 10}, + [4608] = {.lex_state = 64, .external_lex_state = 9}, + [4609] = {.lex_state = 62, .external_lex_state = 12}, + [4610] = {.lex_state = 64, .external_lex_state = 11}, + [4611] = {.lex_state = 62, .external_lex_state = 10}, [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}, + [4614] = {.lex_state = 64, .external_lex_state = 8}, + [4615] = {.lex_state = 62, .external_lex_state = 12}, + [4616] = {.lex_state = 64, .external_lex_state = 13}, + [4617] = {.lex_state = 64, .external_lex_state = 14}, + [4618] = {.lex_state = 64, .external_lex_state = 16}, + [4619] = {.lex_state = 64, .external_lex_state = 15}, + [4620] = {.lex_state = 64, .external_lex_state = 7}, + [4621] = {.lex_state = 64, .external_lex_state = 7}, + [4622] = {.lex_state = 64, .external_lex_state = 15}, + [4623] = {.lex_state = 64, .external_lex_state = 16}, + [4624] = {.lex_state = 64, .external_lex_state = 16}, + [4625] = {.lex_state = 64, .external_lex_state = 7}, + [4626] = {.lex_state = 64, .external_lex_state = 15}, + [4627] = {.lex_state = 64, .external_lex_state = 14}, [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}, + [4629] = {.lex_state = 64, .external_lex_state = 8}, + [4630] = {.lex_state = 64, .external_lex_state = 11}, + [4631] = {.lex_state = 62, .external_lex_state = 10}, + [4632] = {.lex_state = 64, .external_lex_state = 9}, + [4633] = {.lex_state = 62, .external_lex_state = 12}, + [4634] = {.lex_state = 64, .external_lex_state = 11}, + [4635] = {.lex_state = 62, .external_lex_state = 10}, + [4636] = {.lex_state = 64, .external_lex_state = 9}, + [4637] = {.lex_state = 62, .external_lex_state = 12}, + [4638] = {.lex_state = 64, .external_lex_state = 11}, + [4639] = {.lex_state = 62, .external_lex_state = 10}, + [4640] = {.lex_state = 64, .external_lex_state = 9}, + [4641] = {.lex_state = 64, .external_lex_state = 14}, + [4642] = {.lex_state = 64, .external_lex_state = 13}, + [4643] = {.lex_state = 64, .external_lex_state = 8}, + [4644] = {.lex_state = 64, .external_lex_state = 16}, + [4645] = {.lex_state = 64, .external_lex_state = 7}, + [4646] = {.lex_state = 64, .external_lex_state = 15}, + [4647] = {.lex_state = 62, .external_lex_state = 12}, + [4648] = {.lex_state = 64, .external_lex_state = 11}, + [4649] = {.lex_state = 64, .external_lex_state = 14}, + [4650] = {.lex_state = 62, .external_lex_state = 10}, + [4651] = {.lex_state = 64, .external_lex_state = 9}, + [4652] = {.lex_state = 62, .external_lex_state = 12}, + [4653] = {.lex_state = 64, .external_lex_state = 13}, + [4654] = {.lex_state = 64, .external_lex_state = 8}, + [4655] = {.lex_state = 64, .external_lex_state = 16}, + [4656] = {.lex_state = 64, .external_lex_state = 7}, + [4657] = {.lex_state = 64, .external_lex_state = 15}, + [4658] = {.lex_state = 64, .external_lex_state = 14}, + [4659] = {.lex_state = 64, .external_lex_state = 13}, + [4660] = {.lex_state = 64, .external_lex_state = 8}, + [4661] = {.lex_state = 64, .external_lex_state = 11}, + [4662] = {.lex_state = 62, .external_lex_state = 10}, + [4663] = {.lex_state = 64, .external_lex_state = 9}, + [4664] = {.lex_state = 62, .external_lex_state = 12}, + [4665] = {.lex_state = 64, .external_lex_state = 11}, + [4666] = {.lex_state = 62, .external_lex_state = 10}, + [4667] = {.lex_state = 64, .external_lex_state = 9}, + [4668] = {.lex_state = 62, .external_lex_state = 12}, + [4669] = {.lex_state = 64, .external_lex_state = 11}, + [4670] = {.lex_state = 62, .external_lex_state = 10}, + [4671] = {.lex_state = 64, .external_lex_state = 9}, + [4672] = {.lex_state = 64, .external_lex_state = 9}, + [4673] = {.lex_state = 62, .external_lex_state = 12}, + [4674] = {.lex_state = 64, .external_lex_state = 11}, [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}, + [4676] = {.lex_state = 62, .external_lex_state = 10}, + [4677] = {.lex_state = 62, .external_lex_state = 12}, + [4678] = {.lex_state = 64, .external_lex_state = 11}, + [4679] = {.lex_state = 62, .external_lex_state = 10}, + [4680] = {.lex_state = 64, .external_lex_state = 11}, + [4681] = {.lex_state = 62, .external_lex_state = 10}, + [4682] = {.lex_state = 64, .external_lex_state = 9}, [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}, + [4684] = {.lex_state = 62, .external_lex_state = 12}, + [4685] = {.lex_state = 64, .external_lex_state = 11}, + [4686] = {.lex_state = 62, .external_lex_state = 10}, + [4687] = {.lex_state = 62, .external_lex_state = 12}, + [4688] = {.lex_state = 64, .external_lex_state = 8}, + [4689] = {.lex_state = 64, .external_lex_state = 11}, + [4690] = {.lex_state = 62, .external_lex_state = 10}, + [4691] = {.lex_state = 64, .external_lex_state = 9}, + [4692] = {.lex_state = 62, .external_lex_state = 12}, [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}, + [4694] = {.lex_state = 64, .external_lex_state = 11}, + [4695] = {.lex_state = 62, .external_lex_state = 12}, + [4696] = {.lex_state = 64, .external_lex_state = 9}, [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}, + [4699] = {.lex_state = 64, .external_lex_state = 9}, + [4700] = {.lex_state = 62, .external_lex_state = 12}, [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}, + [4703] = {.lex_state = 64, .external_lex_state = 7}, + [4704] = {.lex_state = 64, .external_lex_state = 13}, [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}, + [4709] = {.lex_state = 64, .external_lex_state = 9}, + [4710] = {.lex_state = 62, .external_lex_state = 12}, + [4711] = {.lex_state = 64, .external_lex_state = 11}, [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}, + [4713] = {.lex_state = 62, .external_lex_state = 10}, + [4714] = {.lex_state = 64, .external_lex_state = 14}, + [4715] = {.lex_state = 64, .external_lex_state = 15}, [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}, + [4717] = {.lex_state = 64, .external_lex_state = 9}, + [4718] = {.lex_state = 62, .external_lex_state = 12}, + [4719] = {.lex_state = 64, .external_lex_state = 11}, + [4720] = {.lex_state = 62, .external_lex_state = 10}, + [4721] = {.lex_state = 64, .external_lex_state = 7}, + [4722] = {.lex_state = 64, .external_lex_state = 15}, + [4723] = {.lex_state = 64, .external_lex_state = 16}, + [4724] = {.lex_state = 64, .external_lex_state = 14}, + [4725] = {.lex_state = 62, .external_lex_state = 12}, + [4726] = {.lex_state = 64, .external_lex_state = 15}, + [4727] = {.lex_state = 64, .external_lex_state = 16}, + [4728] = {.lex_state = 64, .external_lex_state = 7}, + [4729] = {.lex_state = 64, .external_lex_state = 15}, + [4730] = {.lex_state = 64, .external_lex_state = 14}, + [4731] = {.lex_state = 64, .external_lex_state = 13}, + [4732] = {.lex_state = 64, .external_lex_state = 8}, + [4733] = {.lex_state = 64, .external_lex_state = 8}, + [4734] = {.lex_state = 64, .external_lex_state = 13}, + [4735] = {.lex_state = 64, .external_lex_state = 14}, + [4736] = {.lex_state = 64, .external_lex_state = 15}, + [4737] = {.lex_state = 64, .external_lex_state = 7}, + [4738] = {.lex_state = 64, .external_lex_state = 16}, + [4739] = {.lex_state = 64, .external_lex_state = 8}, + [4740] = {.lex_state = 64, .external_lex_state = 13}, + [4741] = {.lex_state = 64, .external_lex_state = 14}, + [4742] = {.lex_state = 64, .external_lex_state = 15}, + [4743] = {.lex_state = 64, .external_lex_state = 7}, + [4744] = {.lex_state = 64, .external_lex_state = 16}, + [4745] = {.lex_state = 64, .external_lex_state = 14}, + [4746] = {.lex_state = 64, .external_lex_state = 9}, + [4747] = {.lex_state = 62, .external_lex_state = 10}, + [4748] = {.lex_state = 64, .external_lex_state = 7}, + [4749] = {.lex_state = 64, .external_lex_state = 13}, + [4750] = {.lex_state = 64, .external_lex_state = 8}, + [4751] = {.lex_state = 64, .external_lex_state = 16}, + [4752] = {.lex_state = 64, .external_lex_state = 11}, + [4753] = {.lex_state = 64, .external_lex_state = 9}, + [4754] = {.lex_state = 62, .external_lex_state = 12}, + [4755] = {.lex_state = 64, .external_lex_state = 11}, + [4756] = {.lex_state = 62, .external_lex_state = 12}, + [4757] = {.lex_state = 64, .external_lex_state = 9}, + [4758] = {.lex_state = 64, .external_lex_state = 16}, + [4759] = {.lex_state = 64, .external_lex_state = 7}, + [4760] = {.lex_state = 64, .external_lex_state = 15}, + [4761] = {.lex_state = 64, .external_lex_state = 14}, + [4762] = {.lex_state = 64, .external_lex_state = 13}, + [4763] = {.lex_state = 64, .external_lex_state = 8}, + [4764] = {.lex_state = 62, .external_lex_state = 10}, [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}, + [4768] = {.lex_state = 62, .external_lex_state = 10}, + [4769] = {.lex_state = 64, .external_lex_state = 8}, + [4770] = {.lex_state = 64, .external_lex_state = 13}, + [4771] = {.lex_state = 64, .external_lex_state = 14}, [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}, + [4773] = {.lex_state = 64, .external_lex_state = 7}, + [4774] = {.lex_state = 64, .external_lex_state = 16}, + [4775] = {.lex_state = 64, .external_lex_state = 11}, + [4776] = {.lex_state = 64, .external_lex_state = 9}, + [4777] = {.lex_state = 64, .external_lex_state = 8}, + [4778] = {.lex_state = 64, .external_lex_state = 13}, + [4779] = {.lex_state = 64, .external_lex_state = 14}, + [4780] = {.lex_state = 64, .external_lex_state = 15}, + [4781] = {.lex_state = 64, .external_lex_state = 7}, + [4782] = {.lex_state = 64, .external_lex_state = 16}, + [4783] = {.lex_state = 64, .external_lex_state = 9}, + [4784] = {.lex_state = 62, .external_lex_state = 12}, + [4785] = {.lex_state = 64, .external_lex_state = 11}, + [4786] = {.lex_state = 62, .external_lex_state = 10}, + [4787] = {.lex_state = 62, .external_lex_state = 10}, + [4788] = {.lex_state = 62, .external_lex_state = 10}, + [4789] = {.lex_state = 64, .external_lex_state = 9}, + [4790] = {.lex_state = 62, .external_lex_state = 12}, + [4791] = {.lex_state = 64, .external_lex_state = 11}, + [4792] = {.lex_state = 62, .external_lex_state = 10}, + [4793] = {.lex_state = 64, .external_lex_state = 16}, + [4794] = {.lex_state = 64, .external_lex_state = 8}, + [4795] = {.lex_state = 64, .external_lex_state = 13}, + [4796] = {.lex_state = 62, .external_lex_state = 10}, [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}, + [4798] = {.lex_state = 62, .external_lex_state = 12}, + [4799] = {.lex_state = 64, .external_lex_state = 9}, + [4800] = {.lex_state = 64, .external_lex_state = 14}, + [4801] = {.lex_state = 64, .external_lex_state = 8}, + [4802] = {.lex_state = 64, .external_lex_state = 13}, + [4803] = {.lex_state = 64, .external_lex_state = 15}, + [4804] = {.lex_state = 64, .external_lex_state = 14}, + [4805] = {.lex_state = 64, .external_lex_state = 15}, + [4806] = {.lex_state = 64, .external_lex_state = 7}, + [4807] = {.lex_state = 64, .external_lex_state = 16}, [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}, + [4812] = {.lex_state = 64, .external_lex_state = 7}, + [4813] = {.lex_state = 64, .external_lex_state = 16}, + [4814] = {.lex_state = 64, .external_lex_state = 8}, + [4815] = {.lex_state = 64, .external_lex_state = 13}, [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}, + [4817] = {.lex_state = 64, .external_lex_state = 16}, + [4818] = {.lex_state = 64, .external_lex_state = 15}, + [4819] = {.lex_state = 64, .external_lex_state = 15}, + [4820] = {.lex_state = 64, .external_lex_state = 9}, + [4821] = {.lex_state = 64, .external_lex_state = 7}, + [4822] = {.lex_state = 64, .external_lex_state = 16}, [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}, + [4824] = {.lex_state = 62, .external_lex_state = 12}, + [4825] = {.lex_state = 64, .external_lex_state = 8}, + [4826] = {.lex_state = 64, .external_lex_state = 11}, [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}, + [4828] = {.lex_state = 62, .external_lex_state = 10}, + [4829] = {.lex_state = 64, .external_lex_state = 14}, + [4830] = {.lex_state = 64, .external_lex_state = 16}, + [4831] = {.lex_state = 64, .external_lex_state = 7}, + [4832] = {.lex_state = 64, .external_lex_state = 15}, + [4833] = {.lex_state = 64, .external_lex_state = 14}, + [4834] = {.lex_state = 64, .external_lex_state = 13}, + [4835] = {.lex_state = 64, .external_lex_state = 8}, [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}, + [4837] = {.lex_state = 64, .external_lex_state = 11}, + [4838] = {.lex_state = 62, .external_lex_state = 10}, + [4839] = {.lex_state = 64, .external_lex_state = 9}, + [4840] = {.lex_state = 62, .external_lex_state = 12}, + [4841] = {.lex_state = 64, .external_lex_state = 11}, + [4842] = {.lex_state = 62, .external_lex_state = 10}, + [4843] = {.lex_state = 64, .external_lex_state = 8}, + [4844] = {.lex_state = 64, .external_lex_state = 13}, [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}, + [4846] = {.lex_state = 64, .external_lex_state = 15}, + [4847] = {.lex_state = 64, .external_lex_state = 15}, + [4848] = {.lex_state = 64, .external_lex_state = 7}, + [4849] = {.lex_state = 64, .external_lex_state = 14}, + [4850] = {.lex_state = 64, .external_lex_state = 11}, + [4851] = {.lex_state = 64, .external_lex_state = 16}, + [4852] = {.lex_state = 64, .external_lex_state = 13}, + [4853] = {.lex_state = 64, .external_lex_state = 8}, + [4854] = {.lex_state = 64, .external_lex_state = 16}, + [4855] = {.lex_state = 62, .external_lex_state = 12}, + [4856] = {.lex_state = 64, .external_lex_state = 9}, + [4857] = {.lex_state = 64, .external_lex_state = 7}, + [4858] = {.lex_state = 64, .external_lex_state = 16}, + [4859] = {.lex_state = 62, .external_lex_state = 12}, + [4860] = {.lex_state = 64, .external_lex_state = 11}, + [4861] = {.lex_state = 64, .external_lex_state = 16}, + [4862] = {.lex_state = 64, .external_lex_state = 7}, + [4863] = {.lex_state = 64, .external_lex_state = 15}, + [4864] = {.lex_state = 64, .external_lex_state = 14}, + [4865] = {.lex_state = 64, .external_lex_state = 13}, + [4866] = {.lex_state = 64, .external_lex_state = 8}, + [4867] = {.lex_state = 64, .external_lex_state = 8}, + [4868] = {.lex_state = 64, .external_lex_state = 13}, + [4869] = {.lex_state = 64, .external_lex_state = 14}, + [4870] = {.lex_state = 64, .external_lex_state = 15}, + [4871] = {.lex_state = 64, .external_lex_state = 7}, + [4872] = {.lex_state = 64, .external_lex_state = 16}, + [4873] = {.lex_state = 62, .external_lex_state = 10}, [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}, + [4875] = {.lex_state = 64, .external_lex_state = 9}, + [4876] = {.lex_state = 62, .external_lex_state = 12}, + [4877] = {.lex_state = 64, .external_lex_state = 11}, + [4878] = {.lex_state = 64, .external_lex_state = 9}, + [4879] = {.lex_state = 62, .external_lex_state = 10}, + [4880] = {.lex_state = 64, .external_lex_state = 9}, + [4881] = {.lex_state = 64, .external_lex_state = 15}, + [4882] = {.lex_state = 62, .external_lex_state = 12}, + [4883] = {.lex_state = 64, .external_lex_state = 11}, + [4884] = {.lex_state = 62, .external_lex_state = 10}, + [4885] = {.lex_state = 64, .external_lex_state = 8}, + [4886] = {.lex_state = 62, .external_lex_state = 10}, + [4887] = {.lex_state = 64, .external_lex_state = 13}, + [4888] = {.lex_state = 64, .external_lex_state = 14}, + [4889] = {.lex_state = 62, .external_lex_state = 12}, + [4890] = {.lex_state = 64, .external_lex_state = 11}, + [4891] = {.lex_state = 102, .external_lex_state = 6}, + [4892] = {.lex_state = 258, .external_lex_state = 6}, + [4893] = {.lex_state = 258, .external_lex_state = 6}, + [4894] = {.lex_state = 102, .external_lex_state = 6}, + [4895] = {.lex_state = 258, .external_lex_state = 6}, + [4896] = {.lex_state = 258, .external_lex_state = 6}, + [4897] = {.lex_state = 102, .external_lex_state = 6}, + [4898] = {.lex_state = 258, .external_lex_state = 6}, + [4899] = {.lex_state = 102, .external_lex_state = 6}, + [4900] = {.lex_state = 102, .external_lex_state = 6}, + [4901] = {.lex_state = 258, .external_lex_state = 6}, + [4902] = {.lex_state = 102, .external_lex_state = 6}, + [4903] = {.lex_state = 258, .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}, + [4906] = {.lex_state = 258, .external_lex_state = 6}, [4907] = {.lex_state = 258, .external_lex_state = 6}, - [4908] = {.lex_state = 258, .external_lex_state = 6}, + [4908] = {.lex_state = 102, .external_lex_state = 6}, [4909] = {.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}, + [4911] = {.lex_state = 258, .external_lex_state = 6}, + [4912] = {.lex_state = 258, .external_lex_state = 6}, [4913] = {.lex_state = 258, .external_lex_state = 6}, - [4914] = {.lex_state = 102, .external_lex_state = 6}, - [4915] = {.lex_state = 258, .external_lex_state = 6}, + [4914] = {.lex_state = 258, .external_lex_state = 6}, + [4915] = {.lex_state = 102, .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}, + [4917] = {.lex_state = 102, .external_lex_state = 6}, + [4918] = {.lex_state = 102, .external_lex_state = 6}, + [4919] = {.lex_state = 102, .external_lex_state = 6}, [4920] = {.lex_state = 102, .external_lex_state = 6}, [4921] = {.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 = 102, .external_lex_state = 6}, - [4934] = {.lex_state = 258, .external_lex_state = 6}, + [4925] = {.lex_state = 102, .external_lex_state = 6}, + [4926] = {.lex_state = 102, .external_lex_state = 6}, + [4927] = {.lex_state = 258, .external_lex_state = 6}, + [4928] = {.lex_state = 102, .external_lex_state = 6}, + [4929] = {.lex_state = 258, .external_lex_state = 6}, + [4930] = {.lex_state = 258, .external_lex_state = 6}, + [4931] = {.lex_state = 258, .external_lex_state = 6}, + [4932] = {.lex_state = 258, .external_lex_state = 6}, + [4933] = {.lex_state = 258, .external_lex_state = 6}, + [4934] = {.lex_state = 102, .external_lex_state = 6}, [4935] = {.lex_state = 258, .external_lex_state = 6}, [4936] = {.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}, + [4938] = {.lex_state = 258, .external_lex_state = 6}, + [4939] = {.lex_state = 102, .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}, + [4943] = {.lex_state = 102, .external_lex_state = 6}, [4944] = {.lex_state = 258, .external_lex_state = 6}, [4945] = {.lex_state = 258, .external_lex_state = 6}, [4946] = {.lex_state = 102, .external_lex_state = 6}, - [4947] = {.lex_state = 258, .external_lex_state = 6}, + [4947] = {.lex_state = 102, .external_lex_state = 6}, [4948] = {.lex_state = 258, .external_lex_state = 6}, [4949] = {.lex_state = 102, .external_lex_state = 6}, [4950] = {.lex_state = 258, .external_lex_state = 6}, @@ -22838,25 +20200,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [4956] = {.lex_state = 258, .external_lex_state = 6}, + [4957] = {.lex_state = 102, .external_lex_state = 6}, [4958] = {.lex_state = 258, .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 = 102, .external_lex_state = 6}, + [4959] = {.lex_state = 258, .external_lex_state = 6}, + [4960] = {.lex_state = 258, .external_lex_state = 6}, + [4961] = {.lex_state = 102, .external_lex_state = 6}, + [4962] = {.lex_state = 102, .external_lex_state = 6}, + [4963] = {.lex_state = 258, .external_lex_state = 6}, [4964] = {.lex_state = 102, .external_lex_state = 6}, [4965] = {.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 = 102, .external_lex_state = 6}, + [4968] = {.lex_state = 102, .external_lex_state = 6}, + [4969] = {.lex_state = 258, .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 = 102, .external_lex_state = 6}, - [4974] = {.lex_state = 102, .external_lex_state = 6}, + [4973] = {.lex_state = 258, .external_lex_state = 6}, + [4974] = {.lex_state = 258, .external_lex_state = 6}, [4975] = {.lex_state = 258, .external_lex_state = 6}, [4976] = {.lex_state = 102, .external_lex_state = 6}, [4977] = {.lex_state = 258, .external_lex_state = 6}, @@ -22868,618 +20230,618 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [4986] = {.lex_state = 102, .external_lex_state = 6}, [4987] = {.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 = 102, .external_lex_state = 6}, - [4992] = {.lex_state = 102, .external_lex_state = 6}, + [4989] = {.lex_state = 102, .external_lex_state = 6}, + [4990] = {.lex_state = 102, .external_lex_state = 6}, + [4991] = {.lex_state = 258, .external_lex_state = 6}, + [4992] = {.lex_state = 258, .external_lex_state = 6}, [4993] = {.lex_state = 258, .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}, + [4995] = {.lex_state = 102, .external_lex_state = 6}, + [4996] = {.lex_state = 102, .external_lex_state = 6}, [4997] = {.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 = 102, .external_lex_state = 6}, - [5001] = {.lex_state = 102, .external_lex_state = 6}, + [4998] = {.lex_state = 258, .external_lex_state = 6}, + [4999] = {.lex_state = 102, .external_lex_state = 6}, + [5000] = {.lex_state = 258, .external_lex_state = 6}, + [5001] = {.lex_state = 258, .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 = 258, .external_lex_state = 6}, [5006] = {.lex_state = 258, .external_lex_state = 6}, - [5007] = {.lex_state = 102, .external_lex_state = 6}, - [5008] = {.lex_state = 102, .external_lex_state = 6}, + [5007] = {.lex_state = 258, .external_lex_state = 6}, + [5008] = {.lex_state = 258, .external_lex_state = 6}, [5009] = {.lex_state = 258, .external_lex_state = 6}, [5010] = {.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}, + [5013] = {.lex_state = 102, .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}, - [5018] = {.lex_state = 258, .external_lex_state = 6}, - [5019] = {.lex_state = 258, .external_lex_state = 6}, - [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 = 102, .external_lex_state = 6}, + [5017] = {.lex_state = 102, .external_lex_state = 6}, + [5018] = {.lex_state = 102, .external_lex_state = 6}, + [5019] = {.lex_state = 102, .external_lex_state = 6}, + [5020] = {.lex_state = 102, .external_lex_state = 6}, + [5021] = {.lex_state = 102, .external_lex_state = 6}, + [5022] = {.lex_state = 102, .external_lex_state = 6}, + [5023] = {.lex_state = 258, .external_lex_state = 6}, [5024] = {.lex_state = 258, .external_lex_state = 6}, - [5025] = {.lex_state = 102, .external_lex_state = 6}, - [5026] = {.lex_state = 102, .external_lex_state = 6}, + [5025] = {.lex_state = 258, .external_lex_state = 6}, + [5026] = {.lex_state = 258, .external_lex_state = 6}, [5027] = {.lex_state = 258, .external_lex_state = 6}, [5028] = {.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 = 258, .external_lex_state = 6}, - [5039] = {.lex_state = 258, .external_lex_state = 6}, - [5040] = {.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}, + [5030] = {.lex_state = 63, .external_lex_state = 17}, + [5031] = {.lex_state = 63, .external_lex_state = 18}, + [5032] = {.lex_state = 100, .external_lex_state = 6}, + [5033] = {.lex_state = 63, .external_lex_state = 19}, + [5034] = {.lex_state = 63, .external_lex_state = 18}, + [5035] = {.lex_state = 63, .external_lex_state = 20}, + [5036] = {.lex_state = 63, .external_lex_state = 21}, + [5037] = {.lex_state = 63, .external_lex_state = 17}, + [5038] = {.lex_state = 63, .external_lex_state = 22}, + [5039] = {.lex_state = 63, .external_lex_state = 23}, + [5040] = {.lex_state = 65, .external_lex_state = 24}, + [5041] = {.lex_state = 65, .external_lex_state = 25}, + [5042] = {.lex_state = 63, .external_lex_state = 21}, + [5043] = {.lex_state = 63, .external_lex_state = 20}, + [5044] = {.lex_state = 63, .external_lex_state = 18}, [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}, + [5046] = {.lex_state = 63, .external_lex_state = 26}, + [5047] = {.lex_state = 64, .external_lex_state = 8}, + [5048] = {.lex_state = 65, .external_lex_state = 25}, + [5049] = {.lex_state = 65, .external_lex_state = 24}, [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}, + [5051] = {.lex_state = 64, .external_lex_state = 13}, + [5052] = {.lex_state = 63, .external_lex_state = 23}, + [5053] = {.lex_state = 63, .external_lex_state = 22}, + [5054] = {.lex_state = 63, .external_lex_state = 17}, + [5055] = {.lex_state = 64, .external_lex_state = 14}, + [5056] = {.lex_state = 64, .external_lex_state = 15}, + [5057] = {.lex_state = 64, .external_lex_state = 7}, + [5058] = {.lex_state = 64, .external_lex_state = 16}, + [5059] = {.lex_state = 63, .external_lex_state = 17}, + [5060] = {.lex_state = 63, .external_lex_state = 22}, + [5061] = {.lex_state = 63, .external_lex_state = 23}, + [5062] = {.lex_state = 65, .external_lex_state = 24}, + [5063] = {.lex_state = 65, .external_lex_state = 25}, + [5064] = {.lex_state = 63, .external_lex_state = 21}, + [5065] = {.lex_state = 63, .external_lex_state = 20}, + [5066] = {.lex_state = 63, .external_lex_state = 18}, + [5067] = {.lex_state = 63, .external_lex_state = 17}, + [5068] = {.lex_state = 63, .external_lex_state = 22}, + [5069] = {.lex_state = 63, .external_lex_state = 23}, + [5070] = {.lex_state = 65, .external_lex_state = 24}, + [5071] = {.lex_state = 65, .external_lex_state = 25}, + [5072] = {.lex_state = 63, .external_lex_state = 21}, + [5073] = {.lex_state = 63, .external_lex_state = 20}, + [5074] = {.lex_state = 63, .external_lex_state = 18}, + [5075] = {.lex_state = 63, .external_lex_state = 19}, + [5076] = {.lex_state = 63, .external_lex_state = 26}, + [5077] = {.lex_state = 63, .external_lex_state = 19}, + [5078] = {.lex_state = 100, .external_lex_state = 6}, + [5079] = {.lex_state = 63, .external_lex_state = 26}, + [5080] = {.lex_state = 65, .external_lex_state = 24}, + [5081] = {.lex_state = 63, .external_lex_state = 17}, + [5082] = {.lex_state = 63, .external_lex_state = 22}, + [5083] = {.lex_state = 63, .external_lex_state = 23}, + [5084] = {.lex_state = 63, .external_lex_state = 17}, + [5085] = {.lex_state = 65, .external_lex_state = 24}, + [5086] = {.lex_state = 65, .external_lex_state = 25}, + [5087] = {.lex_state = 63, .external_lex_state = 22}, + [5088] = {.lex_state = 63, .external_lex_state = 21}, + [5089] = {.lex_state = 63, .external_lex_state = 20}, + [5090] = {.lex_state = 63, .external_lex_state = 18}, + [5091] = {.lex_state = 63, .external_lex_state = 19}, + [5092] = {.lex_state = 63, .external_lex_state = 26}, + [5093] = {.lex_state = 63, .external_lex_state = 26}, + [5094] = {.lex_state = 63, .external_lex_state = 19}, + [5095] = {.lex_state = 63, .external_lex_state = 18}, + [5096] = {.lex_state = 63, .external_lex_state = 20}, + [5097] = {.lex_state = 63, .external_lex_state = 21}, [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}, + [5099] = {.lex_state = 65, .external_lex_state = 24}, + [5100] = {.lex_state = 63, .external_lex_state = 23}, + [5101] = {.lex_state = 63, .external_lex_state = 22}, + [5102] = {.lex_state = 63, .external_lex_state = 17}, + [5103] = {.lex_state = 63, .external_lex_state = 23}, + [5104] = {.lex_state = 63, .external_lex_state = 17}, + [5105] = {.lex_state = 65, .external_lex_state = 24}, + [5106] = {.lex_state = 65, .external_lex_state = 25}, + [5107] = {.lex_state = 63, .external_lex_state = 22}, + [5108] = {.lex_state = 63, .external_lex_state = 21}, + [5109] = {.lex_state = 63, .external_lex_state = 23}, + [5110] = {.lex_state = 63, .external_lex_state = 20}, [5111] = {.lex_state = 65, .external_lex_state = 24}, - [5112] = {.lex_state = 63, .external_lex_state = 23}, - [5113] = {.lex_state = 63, .external_lex_state = 22}, + [5112] = {.lex_state = 63, .external_lex_state = 18}, + [5113] = {.lex_state = 100, .external_lex_state = 6}, [5114] = {.lex_state = 63, .external_lex_state = 17}, - [5115] = {.lex_state = 63, .external_lex_state = 23}, - [5116] = {.lex_state = 63, .external_lex_state = 17}, + [5115] = {.lex_state = 63, .external_lex_state = 22}, + [5116] = {.lex_state = 63, .external_lex_state = 23}, [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}, + [5119] = {.lex_state = 63, .external_lex_state = 21}, + [5120] = {.lex_state = 63, .external_lex_state = 20}, + [5121] = {.lex_state = 63, .external_lex_state = 18}, + [5122] = {.lex_state = 63, .external_lex_state = 19}, + [5123] = {.lex_state = 63, .external_lex_state = 26}, + [5124] = {.lex_state = 63, .external_lex_state = 26}, + [5125] = {.lex_state = 63, .external_lex_state = 19}, + [5126] = {.lex_state = 63, .external_lex_state = 18}, + [5127] = {.lex_state = 63, .external_lex_state = 20}, + [5128] = {.lex_state = 63, .external_lex_state = 21}, + [5129] = {.lex_state = 65, .external_lex_state = 25}, + [5130] = {.lex_state = 63, .external_lex_state = 17}, + [5131] = {.lex_state = 63, .external_lex_state = 22}, + [5132] = {.lex_state = 63, .external_lex_state = 23}, + [5133] = {.lex_state = 65, .external_lex_state = 24}, + [5134] = {.lex_state = 65, .external_lex_state = 25}, + [5135] = {.lex_state = 63, .external_lex_state = 21}, + [5136] = {.lex_state = 63, .external_lex_state = 20}, + [5137] = {.lex_state = 63, .external_lex_state = 18}, + [5138] = {.lex_state = 63, .external_lex_state = 19}, + [5139] = {.lex_state = 63, .external_lex_state = 26}, + [5140] = {.lex_state = 65, .external_lex_state = 24}, + [5141] = {.lex_state = 63, .external_lex_state = 23}, + [5142] = {.lex_state = 65, .external_lex_state = 25}, + [5143] = {.lex_state = 63, .external_lex_state = 17}, + [5144] = {.lex_state = 63, .external_lex_state = 19}, + [5145] = {.lex_state = 63, .external_lex_state = 21}, + [5146] = {.lex_state = 63, .external_lex_state = 26}, + [5147] = {.lex_state = 63, .external_lex_state = 20}, + [5148] = {.lex_state = 63, .external_lex_state = 18}, + [5149] = {.lex_state = 102, .external_lex_state = 6}, [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}, + [5152] = {.lex_state = 63, .external_lex_state = 19}, + [5153] = {.lex_state = 100, .external_lex_state = 6}, + [5154] = {.lex_state = 100, .external_lex_state = 6}, + [5155] = {.lex_state = 64, .external_lex_state = 11}, + [5156] = {.lex_state = 63, .external_lex_state = 26}, + [5157] = {.lex_state = 100, .external_lex_state = 6}, + [5158] = {.lex_state = 63, .external_lex_state = 19}, + [5159] = {.lex_state = 100, .external_lex_state = 6}, + [5160] = {.lex_state = 63, .external_lex_state = 17}, + [5161] = {.lex_state = 63, .external_lex_state = 22}, + [5162] = {.lex_state = 63, .external_lex_state = 23}, + [5163] = {.lex_state = 65, .external_lex_state = 24}, + [5164] = {.lex_state = 65, .external_lex_state = 25}, + [5165] = {.lex_state = 63, .external_lex_state = 21}, + [5166] = {.lex_state = 63, .external_lex_state = 20}, + [5167] = {.lex_state = 63, .external_lex_state = 18}, + [5168] = {.lex_state = 63, .external_lex_state = 19}, + [5169] = {.lex_state = 63, .external_lex_state = 26}, + [5170] = {.lex_state = 63, .external_lex_state = 20}, + [5171] = {.lex_state = 258, .external_lex_state = 6}, + [5172] = {.lex_state = 100, .external_lex_state = 6}, + [5173] = {.lex_state = 63, .external_lex_state = 21}, + [5174] = {.lex_state = 65, .external_lex_state = 25}, [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}, + [5176] = {.lex_state = 63, .external_lex_state = 17}, + [5177] = {.lex_state = 63, .external_lex_state = 22}, + [5178] = {.lex_state = 63, .external_lex_state = 23}, + [5179] = {.lex_state = 65, .external_lex_state = 24}, + [5180] = {.lex_state = 65, .external_lex_state = 25}, + [5181] = {.lex_state = 63, .external_lex_state = 21}, [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}, + [5183] = {.lex_state = 63, .external_lex_state = 18}, + [5184] = {.lex_state = 63, .external_lex_state = 19}, + [5185] = {.lex_state = 63, .external_lex_state = 26}, + [5186] = {.lex_state = 64, .external_lex_state = 9}, + [5187] = {.lex_state = 102, .external_lex_state = 6}, + [5188] = {.lex_state = 63, .external_lex_state = 23}, + [5189] = {.lex_state = 100, .external_lex_state = 6}, + [5190] = {.lex_state = 63, .external_lex_state = 22}, + [5191] = {.lex_state = 63, .external_lex_state = 17}, + [5192] = {.lex_state = 63, .external_lex_state = 26}, + [5193] = {.lex_state = 63, .external_lex_state = 19}, + [5194] = {.lex_state = 63, .external_lex_state = 17}, + [5195] = {.lex_state = 63, .external_lex_state = 26}, [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}, + [5197] = {.lex_state = 65, .external_lex_state = 25}, + [5198] = {.lex_state = 63, .external_lex_state = 18}, + [5199] = {.lex_state = 63, .external_lex_state = 22}, + [5200] = {.lex_state = 63, .external_lex_state = 20}, + [5201] = {.lex_state = 63, .external_lex_state = 21}, + [5202] = {.lex_state = 65, .external_lex_state = 25}, + [5203] = {.lex_state = 65, .external_lex_state = 24}, + [5204] = {.lex_state = 63, .external_lex_state = 23}, + [5205] = {.lex_state = 63, .external_lex_state = 22}, [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}, + [5207] = {.lex_state = 63, .external_lex_state = 22}, + [5208] = {.lex_state = 63, .external_lex_state = 23}, + [5209] = {.lex_state = 65, .external_lex_state = 24}, + [5210] = {.lex_state = 65, .external_lex_state = 25}, + [5211] = {.lex_state = 63, .external_lex_state = 21}, [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}, + [5213] = {.lex_state = 63, .external_lex_state = 18}, + [5214] = {.lex_state = 63, .external_lex_state = 19}, + [5215] = {.lex_state = 63, .external_lex_state = 26}, + [5216] = {.lex_state = 63, .external_lex_state = 17}, + [5217] = {.lex_state = 63, .external_lex_state = 23}, + [5218] = {.lex_state = 63, .external_lex_state = 18}, + [5219] = {.lex_state = 63, .external_lex_state = 20}, + [5220] = {.lex_state = 63, .external_lex_state = 26}, + [5221] = {.lex_state = 63, .external_lex_state = 19}, + [5222] = {.lex_state = 63, .external_lex_state = 17}, + [5223] = {.lex_state = 63, .external_lex_state = 22}, + [5224] = {.lex_state = 63, .external_lex_state = 23}, + [5225] = {.lex_state = 65, .external_lex_state = 24}, + [5226] = {.lex_state = 65, .external_lex_state = 25}, + [5227] = {.lex_state = 63, .external_lex_state = 21}, + [5228] = {.lex_state = 63, .external_lex_state = 20}, + [5229] = {.lex_state = 63, .external_lex_state = 18}, + [5230] = {.lex_state = 63, .external_lex_state = 19}, + [5231] = {.lex_state = 63, .external_lex_state = 26}, [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}, + [5233] = {.lex_state = 63, .external_lex_state = 18}, + [5234] = {.lex_state = 63, .external_lex_state = 20}, + [5235] = {.lex_state = 63, .external_lex_state = 21}, + [5236] = {.lex_state = 65, .external_lex_state = 25}, + [5237] = {.lex_state = 63, .external_lex_state = 19}, + [5238] = {.lex_state = 65, .external_lex_state = 24}, + [5239] = {.lex_state = 63, .external_lex_state = 23}, + [5240] = {.lex_state = 63, .external_lex_state = 22}, + [5241] = {.lex_state = 63, .external_lex_state = 17}, + [5242] = {.lex_state = 63, .external_lex_state = 18}, + [5243] = {.lex_state = 63, .external_lex_state = 20}, [5244] = {.lex_state = 63, .external_lex_state = 26}, - [5245] = {.lex_state = 63, .external_lex_state = 18}, - [5246] = {.lex_state = 63, .external_lex_state = 20}, + [5245] = {.lex_state = 63, .external_lex_state = 21}, + [5246] = {.lex_state = 62, .external_lex_state = 10}, [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}, + [5249] = {.lex_state = 63, .external_lex_state = 17}, + [5250] = {.lex_state = 63, .external_lex_state = 23}, + [5251] = {.lex_state = 63, .external_lex_state = 22}, + [5252] = {.lex_state = 63, .external_lex_state = 17}, + [5253] = {.lex_state = 63, .external_lex_state = 22}, + [5254] = {.lex_state = 63, .external_lex_state = 23}, + [5255] = {.lex_state = 65, .external_lex_state = 24}, + [5256] = {.lex_state = 65, .external_lex_state = 25}, [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}, + [5258] = {.lex_state = 63, .external_lex_state = 20}, + [5259] = {.lex_state = 63, .external_lex_state = 18}, + [5260] = {.lex_state = 63, .external_lex_state = 19}, + [5261] = {.lex_state = 63, .external_lex_state = 26}, [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}, + [5263] = {.lex_state = 63, .external_lex_state = 17}, + [5264] = {.lex_state = 63, .external_lex_state = 22}, + [5265] = {.lex_state = 63, .external_lex_state = 23}, + [5266] = {.lex_state = 65, .external_lex_state = 24}, + [5267] = {.lex_state = 65, .external_lex_state = 25}, + [5268] = {.lex_state = 63, .external_lex_state = 17}, + [5269] = {.lex_state = 63, .external_lex_state = 22}, + [5270] = {.lex_state = 63, .external_lex_state = 23}, + [5271] = {.lex_state = 65, .external_lex_state = 24}, + [5272] = {.lex_state = 65, .external_lex_state = 25}, + [5273] = {.lex_state = 63, .external_lex_state = 21}, + [5274] = {.lex_state = 63, .external_lex_state = 20}, + [5275] = {.lex_state = 63, .external_lex_state = 18}, + [5276] = {.lex_state = 63, .external_lex_state = 19}, + [5277] = {.lex_state = 63, .external_lex_state = 26}, [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}, + [5279] = {.lex_state = 63, .external_lex_state = 21}, + [5280] = {.lex_state = 63, .external_lex_state = 20}, + [5281] = {.lex_state = 63, .external_lex_state = 18}, + [5282] = {.lex_state = 63, .external_lex_state = 19}, [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}, + [5284] = {.lex_state = 63, .external_lex_state = 26}, + [5285] = {.lex_state = 65, .external_lex_state = 25}, + [5286] = {.lex_state = 63, .external_lex_state = 21}, + [5287] = {.lex_state = 63, .external_lex_state = 26}, + [5288] = {.lex_state = 65, .external_lex_state = 24}, + [5289] = {.lex_state = 63, .external_lex_state = 23}, + [5290] = {.lex_state = 63, .external_lex_state = 18}, + [5291] = {.lex_state = 63, .external_lex_state = 22}, [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}, + [5294] = {.lex_state = 63, .external_lex_state = 18}, + [5295] = {.lex_state = 63, .external_lex_state = 26}, + [5296] = {.lex_state = 63, .external_lex_state = 22}, + [5297] = {.lex_state = 63, .external_lex_state = 17}, + [5298] = {.lex_state = 63, .external_lex_state = 17}, + [5299] = {.lex_state = 63, .external_lex_state = 22}, + [5300] = {.lex_state = 63, .external_lex_state = 23}, + [5301] = {.lex_state = 65, .external_lex_state = 24}, + [5302] = {.lex_state = 65, .external_lex_state = 25}, + [5303] = {.lex_state = 63, .external_lex_state = 21}, [5304] = {.lex_state = 63, .external_lex_state = 20}, [5305] = {.lex_state = 63, .external_lex_state = 18}, - [5306] = {.lex_state = 63, .external_lex_state = 18}, + [5306] = {.lex_state = 63, .external_lex_state = 19}, [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}, + [5308] = {.lex_state = 63, .external_lex_state = 17}, + [5309] = {.lex_state = 63, .external_lex_state = 22}, + [5310] = {.lex_state = 63, .external_lex_state = 26}, + [5311] = {.lex_state = 63, .external_lex_state = 19}, + [5312] = {.lex_state = 63, .external_lex_state = 18}, + [5313] = {.lex_state = 63, .external_lex_state = 20}, + [5314] = {.lex_state = 63, .external_lex_state = 17}, + [5315] = {.lex_state = 63, .external_lex_state = 22}, + [5316] = {.lex_state = 63, .external_lex_state = 23}, + [5317] = {.lex_state = 65, .external_lex_state = 24}, + [5318] = {.lex_state = 65, .external_lex_state = 25}, + [5319] = {.lex_state = 63, .external_lex_state = 21}, + [5320] = {.lex_state = 63, .external_lex_state = 20}, + [5321] = {.lex_state = 63, .external_lex_state = 18}, + [5322] = {.lex_state = 63, .external_lex_state = 19}, + [5323] = {.lex_state = 63, .external_lex_state = 26}, + [5324] = {.lex_state = 63, .external_lex_state = 17}, + [5325] = {.lex_state = 63, .external_lex_state = 21}, + [5326] = {.lex_state = 65, .external_lex_state = 25}, + [5327] = {.lex_state = 65, .external_lex_state = 24}, [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}, + [5329] = {.lex_state = 63, .external_lex_state = 20}, + [5330] = {.lex_state = 63, .external_lex_state = 22}, + [5331] = {.lex_state = 63, .external_lex_state = 17}, + [5332] = {.lex_state = 63, .external_lex_state = 17}, + [5333] = {.lex_state = 63, .external_lex_state = 23}, + [5334] = {.lex_state = 63, .external_lex_state = 22}, + [5335] = {.lex_state = 63, .external_lex_state = 23}, + [5336] = {.lex_state = 63, .external_lex_state = 21}, + [5337] = {.lex_state = 65, .external_lex_state = 24}, [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}, + [5339] = {.lex_state = 63, .external_lex_state = 21}, + [5340] = {.lex_state = 65, .external_lex_state = 24}, + [5341] = {.lex_state = 63, .external_lex_state = 26}, + [5342] = {.lex_state = 63, .external_lex_state = 19}, + [5343] = {.lex_state = 63, .external_lex_state = 26}, [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}, + [5345] = {.lex_state = 63, .external_lex_state = 22}, + [5346] = {.lex_state = 63, .external_lex_state = 23}, + [5347] = {.lex_state = 65, .external_lex_state = 24}, + [5348] = {.lex_state = 65, .external_lex_state = 25}, + [5349] = {.lex_state = 63, .external_lex_state = 21}, + [5350] = {.lex_state = 63, .external_lex_state = 20}, + [5351] = {.lex_state = 63, .external_lex_state = 18}, + [5352] = {.lex_state = 63, .external_lex_state = 19}, [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}, + [5354] = {.lex_state = 63, .external_lex_state = 20}, + [5355] = {.lex_state = 63, .external_lex_state = 21}, + [5356] = {.lex_state = 65, .external_lex_state = 25}, + [5357] = {.lex_state = 65, .external_lex_state = 24}, [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}, + [5359] = {.lex_state = 63, .external_lex_state = 22}, + [5360] = {.lex_state = 63, .external_lex_state = 17}, + [5361] = {.lex_state = 63, .external_lex_state = 22}, + [5362] = {.lex_state = 63, .external_lex_state = 23}, + [5363] = {.lex_state = 65, .external_lex_state = 24}, + [5364] = {.lex_state = 65, .external_lex_state = 25}, + [5365] = {.lex_state = 63, .external_lex_state = 21}, [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}, + [5367] = {.lex_state = 63, .external_lex_state = 18}, + [5368] = {.lex_state = 63, .external_lex_state = 19}, + [5369] = {.lex_state = 63, .external_lex_state = 26}, + [5370] = {.lex_state = 63, .external_lex_state = 17}, + [5371] = {.lex_state = 63, .external_lex_state = 20}, + [5372] = {.lex_state = 63, .external_lex_state = 18}, + [5373] = {.lex_state = 63, .external_lex_state = 19}, + [5374] = {.lex_state = 65, .external_lex_state = 25}, + [5375] = {.lex_state = 65, .external_lex_state = 25}, + [5376] = {.lex_state = 63, .external_lex_state = 26}, [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}, + [5378] = {.lex_state = 63, .external_lex_state = 22}, + [5379] = {.lex_state = 63, .external_lex_state = 20}, + [5380] = {.lex_state = 63, .external_lex_state = 18}, + [5381] = {.lex_state = 63, .external_lex_state = 23}, + [5382] = {.lex_state = 65, .external_lex_state = 24}, + [5383] = {.lex_state = 65, .external_lex_state = 25}, + [5384] = {.lex_state = 63, .external_lex_state = 19}, + [5385] = {.lex_state = 63, .external_lex_state = 21}, + [5386] = {.lex_state = 63, .external_lex_state = 20}, + [5387] = {.lex_state = 63, .external_lex_state = 18}, + [5388] = {.lex_state = 63, .external_lex_state = 19}, + [5389] = {.lex_state = 100, .external_lex_state = 6}, + [5390] = {.lex_state = 63, .external_lex_state = 26}, + [5391] = {.lex_state = 63, .external_lex_state = 26}, + [5392] = {.lex_state = 100, .external_lex_state = 6}, + [5393] = {.lex_state = 62, .external_lex_state = 12}, + [5394] = {.lex_state = 63, .external_lex_state = 26}, + [5395] = {.lex_state = 100, .external_lex_state = 6}, [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}, + [5397] = {.lex_state = 63, .external_lex_state = 18}, + [5398] = {.lex_state = 63, .external_lex_state = 17}, + [5399] = {.lex_state = 63, .external_lex_state = 19}, + [5400] = {.lex_state = 63, .external_lex_state = 18}, + [5401] = {.lex_state = 63, .external_lex_state = 20}, + [5402] = {.lex_state = 63, .external_lex_state = 21}, + [5403] = {.lex_state = 65, .external_lex_state = 25}, + [5404] = {.lex_state = 65, .external_lex_state = 24}, + [5405] = {.lex_state = 63, .external_lex_state = 23}, + [5406] = {.lex_state = 63, .external_lex_state = 22}, + [5407] = {.lex_state = 63, .external_lex_state = 19}, + [5408] = {.lex_state = 63, .external_lex_state = 20}, + [5409] = {.lex_state = 63, .external_lex_state = 21}, + [5410] = {.lex_state = 65, .external_lex_state = 25}, + [5411] = {.lex_state = 65, .external_lex_state = 24}, + [5412] = {.lex_state = 63, .external_lex_state = 23}, + [5413] = {.lex_state = 63, .external_lex_state = 22}, + [5414] = {.lex_state = 63, .external_lex_state = 26}, + [5415] = {.lex_state = 63, .external_lex_state = 19}, + [5416] = {.lex_state = 63, .external_lex_state = 18}, + [5417] = {.lex_state = 63, .external_lex_state = 20}, + [5418] = {.lex_state = 63, .external_lex_state = 21}, + [5419] = {.lex_state = 65, .external_lex_state = 25}, + [5420] = {.lex_state = 65, .external_lex_state = 24}, + [5421] = {.lex_state = 63, .external_lex_state = 23}, + [5422] = {.lex_state = 63, .external_lex_state = 22}, + [5423] = {.lex_state = 63, .external_lex_state = 17}, + [5424] = {.lex_state = 63, .external_lex_state = 17}, + [5425] = {.lex_state = 258, .external_lex_state = 6}, + [5426] = {.lex_state = 258, .external_lex_state = 6}, + [5427] = {.lex_state = 50, .external_lex_state = 6}, + [5428] = {.lex_state = 50, .external_lex_state = 6}, + [5429] = {.lex_state = 50, .external_lex_state = 6}, + [5430] = {.lex_state = 50, .external_lex_state = 6}, + [5431] = {.lex_state = 102, .external_lex_state = 6}, + [5432] = {.lex_state = 258, .external_lex_state = 6}, + [5433] = {.lex_state = 50, .external_lex_state = 6}, + [5434] = {.lex_state = 258, .external_lex_state = 6}, + [5435] = {.lex_state = 50, .external_lex_state = 6}, + [5436] = {.lex_state = 50, .external_lex_state = 6}, [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}, + [5438] = {.lex_state = 50, .external_lex_state = 6}, + [5439] = {.lex_state = 102, .external_lex_state = 6}, + [5440] = {.lex_state = 102, .external_lex_state = 6}, + [5441] = {.lex_state = 53, .external_lex_state = 6}, + [5442] = {.lex_state = 102, .external_lex_state = 6}, + [5443] = {.lex_state = 53, .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}, + [5445] = {.lex_state = 102, .external_lex_state = 6}, + [5446] = {.lex_state = 102, .external_lex_state = 6}, + [5447] = {.lex_state = 258, .external_lex_state = 6}, + [5448] = {.lex_state = 102, .external_lex_state = 6}, + [5449] = {.lex_state = 102, .external_lex_state = 6}, + [5450] = {.lex_state = 102, .external_lex_state = 6}, + [5451] = {.lex_state = 53, .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}, + [5453] = {.lex_state = 102, .external_lex_state = 6}, + [5454] = {.lex_state = 258, .external_lex_state = 6}, + [5455] = {.lex_state = 258, .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}, + [5459] = {.lex_state = 53, .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}, + [5462] = {.lex_state = 53, .external_lex_state = 6}, + [5463] = {.lex_state = 102, .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}, + [5466] = {.lex_state = 102, .external_lex_state = 6}, + [5467] = {.lex_state = 102, .external_lex_state = 6}, + [5468] = {.lex_state = 102, .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}, + [5471] = {.lex_state = 102, .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}, + [5474] = {.lex_state = 102, .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}, + [5478] = {.lex_state = 53, .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}, + [5483] = {.lex_state = 53, .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}, + [5486] = {.lex_state = 258, .external_lex_state = 6}, + [5487] = {.lex_state = 53, .external_lex_state = 6}, + [5488] = {.lex_state = 258, .external_lex_state = 6}, + [5489] = {.lex_state = 53, .external_lex_state = 6}, + [5490] = {.lex_state = 102, .external_lex_state = 6}, + [5491] = {.lex_state = 53, .external_lex_state = 6}, [5492] = {.lex_state = 102, .external_lex_state = 6}, - [5493] = {.lex_state = 102, .external_lex_state = 6}, + [5493] = {.lex_state = 53, .external_lex_state = 6}, [5494] = {.lex_state = 102, .external_lex_state = 6}, - [5495] = {.lex_state = 53, .external_lex_state = 6}, + [5495] = {.lex_state = 258, .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}, + [5497] = {.lex_state = 53, .external_lex_state = 6}, + [5498] = {.lex_state = 53, .external_lex_state = 6}, + [5499] = {.lex_state = 102, .external_lex_state = 6}, + [5500] = {.lex_state = 53, .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}, + [5503] = {.lex_state = 102, .external_lex_state = 6}, + [5504] = {.lex_state = 258, .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}, + [5507] = {.lex_state = 102, .external_lex_state = 6}, + [5508] = {.lex_state = 53, .external_lex_state = 6}, + [5509] = {.lex_state = 102, .external_lex_state = 6}, + [5510] = {.lex_state = 258, .external_lex_state = 6}, + [5511] = {.lex_state = 53, .external_lex_state = 6}, + [5512] = {.lex_state = 102, .external_lex_state = 6}, + [5513] = {.lex_state = 102, .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}, + [5517] = {.lex_state = 102, .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}, + [5519] = {.lex_state = 258, .external_lex_state = 6}, + [5520] = {.lex_state = 102, .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}, + [5524] = {.lex_state = 102, .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}, + [5528] = {.lex_state = 100, .external_lex_state = 6}, + [5529] = {.lex_state = 258, .external_lex_state = 6}, + [5530] = {.lex_state = 258, .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}, + [5532] = {.lex_state = 258, .external_lex_state = 6}, + [5533] = {.lex_state = 258, .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}, + [5535] = {.lex_state = 258, .external_lex_state = 6}, + [5536] = {.lex_state = 50, .external_lex_state = 6}, + [5537] = {.lex_state = 258, .external_lex_state = 6}, + [5538] = {.lex_state = 50, .external_lex_state = 6}, + [5539] = {.lex_state = 258, .external_lex_state = 6}, + [5540] = {.lex_state = 258, .external_lex_state = 6}, + [5541] = {.lex_state = 100, .external_lex_state = 6}, + [5542] = {.lex_state = 258, .external_lex_state = 6}, + [5543] = {.lex_state = 50, .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}, + [5548] = {.lex_state = 258, .external_lex_state = 6}, + [5549] = {.lex_state = 100, .external_lex_state = 6}, + [5550] = {.lex_state = 258, .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}, + [5553] = {.lex_state = 258, .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}, + [5557] = {.lex_state = 258, .external_lex_state = 6}, [5558] = {.lex_state = 258, .external_lex_state = 6}, - [5559] = {.lex_state = 258, .external_lex_state = 6}, + [5559] = {.lex_state = 100, .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}, + [5561] = {.lex_state = 50, .external_lex_state = 6}, + [5562] = {.lex_state = 100, .external_lex_state = 6}, [5563] = {.lex_state = 258, .external_lex_state = 6}, - [5564] = {.lex_state = 100, .external_lex_state = 6}, + [5564] = {.lex_state = 258, .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}, + [5567] = {.lex_state = 50, .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}, + [5573] = {.lex_state = 100, .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}, + [5580] = {.lex_state = 50, .external_lex_state = 6}, + [5581] = {.lex_state = 100, .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}, + [5585] = {.lex_state = 50, .external_lex_state = 6}, + [5586] = {.lex_state = 258, .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}, + [5591] = {.lex_state = 258, .external_lex_state = 6}, + [5592] = {.lex_state = 258, .external_lex_state = 6}, + [5593] = {.lex_state = 258, .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}, + [5597] = {.lex_state = 258, .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}, @@ -23495,8 +20857,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [5613] = {.lex_state = 100, .external_lex_state = 6}, + [5614] = {.lex_state = 50, .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}, @@ -23507,8 +20869,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [5625] = {.lex_state = 258, .external_lex_state = 6}, + [5626] = {.lex_state = 258, .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}, @@ -23521,37 +20883,25 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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}, + [5639] = {.lex_state = 50, .external_lex_state = 6}, + [5640] = {.lex_state = 100, .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}, + [5645] = {.lex_state = 50, .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}, + [5651] = {.lex_state = 100, .external_lex_state = 6}, + [5652] = {.lex_state = 50, .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}, + [5656] = {.lex_state = 100, .external_lex_state = 6}, + [5657] = {.lex_state = 258, .external_lex_state = 6}, }; enum { @@ -23782,12 +21132,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RPAREN] = ACTIONS(1), [aux_sym_identifier_token1] = ACTIONS(1), [anon_sym_DOT_DOT_DOT] = ACTIONS(1), - [sym_unused_identifier] = ACTIONS(1), - [anon_sym___MODULE__] = ACTIONS(1), - [anon_sym___DIR__] = ACTIONS(1), - [anon_sym___ENV__] = ACTIONS(1), - [anon_sym___CALLER__] = ACTIONS(1), - [anon_sym___STACKTRACE__] = ACTIONS(1), [sym_integer] = ACTIONS(1), [sym_float] = ACTIONS(1), [sym_char] = ACTIONS(1), @@ -23905,92922 +21249,43939 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__quoted_atom_start] = ACTIONS(1), }, [1] = { - [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), + [sym_source] = STATE(5648), + [sym__terminator] = STATE(410), + [sym__expression] = STATE(2668), + [sym_block] = STATE(2668), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(2668), + [sym_nil] = STATE(2668), + [sym__atom] = STATE(2668), + [sym_quoted_atom] = STATE(2668), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(2668), + [sym_charlist] = STATE(2668), + [sym_sigil] = STATE(2668), + [sym_list] = STATE(2668), + [sym_tuple] = STATE(2668), + [sym_bitstring] = STATE(2668), + [sym_map] = STATE(2668), + [sym_unary_operator] = STATE(2668), + [sym_binary_operator] = STATE(2668), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(2668), + [sym_call] = STATE(2668), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(2668), + [sym_anonymous_function] = STATE(2668), + [aux_sym__terminator_repeat1] = STATE(1016), [ts_builtin_sym_end] = ACTIONS(7), [aux_sym__terminator_token1] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [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(21), - [sym_integer] = ACTIONS(21), - [sym_float] = ACTIONS(21), - [sym_char] = ACTIONS(21), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(21), - [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_alias] = ACTIONS(17), + [sym_integer] = ACTIONS(17), + [sym_float] = ACTIONS(17), + [sym_char] = ACTIONS(17), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(17), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), [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), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), }, [2] = { - [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(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), - [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(73), - [sym_integer] = ACTIONS(73), - [sym_float] = ACTIONS(73), - [sym_char] = ACTIONS(73), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(73), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(113), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [3] = { - [sym__terminator] = STATE(26), + [sym__terminator] = STATE(24), [sym__expression] = STATE(1064), [sym_block] = STATE(1064), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), + [sym_identifier] = STATE(26), [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__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), [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_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), [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_operator_identifier] = STATE(5565), [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__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4285), + [sym_rescue_block] = STATE(4285), + [sym_catch_block] = STATE(4285), + [sym_else_block] = STATE(4285), [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_stab_clause] = STATE(4185), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), [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), - [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(125), - [sym_integer] = ACTIONS(125), - [sym_float] = ACTIONS(125), - [sym_char] = ACTIONS(125), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(125), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(127), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), + [aux_sym__terminator_repeat1] = STATE(1006), + [aux_sym_do_block_repeat1] = STATE(4285), + [aux_sym__terminator_token1] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(65), + [sym_integer] = ACTIONS(65), + [sym_float] = ACTIONS(65), + [sym_char] = ACTIONS(65), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(105), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), [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), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [4] = { - [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(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), - [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(131), - [sym_integer] = ACTIONS(131), - [sym_float] = ACTIONS(131), - [sym_char] = ACTIONS(131), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(131), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(133), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [5] = { - [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(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), - [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(137), - [sym_integer] = ACTIONS(137), - [sym_float] = ACTIONS(137), - [sym_char] = ACTIONS(137), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(137), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(139), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [6] = { - [sym__terminator] = STATE(32), - [sym__expression] = STATE(1069), - [sym_block] = STATE(1069), - [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(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), - [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(143), - [sym_integer] = ACTIONS(143), - [sym_float] = ACTIONS(143), - [sym_char] = ACTIONS(143), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(143), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(145), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [7] = { - [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(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), - [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(149), - [sym_integer] = ACTIONS(149), - [sym_float] = ACTIONS(149), - [sym_char] = ACTIONS(149), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(149), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(151), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [8] = { - [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(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), - [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(155), - [sym_integer] = ACTIONS(155), - [sym_float] = ACTIONS(155), - [sym_char] = ACTIONS(155), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(155), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(157), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [9] = { - [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(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), - [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(161), - [sym_integer] = ACTIONS(161), - [sym_float] = ACTIONS(161), - [sym_char] = ACTIONS(161), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(161), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(163), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [10] = { - [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(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), - [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(167), - [sym_integer] = ACTIONS(167), - [sym_float] = ACTIONS(167), - [sym_char] = ACTIONS(167), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(167), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(169), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [11] = { + [3] = { [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(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), - [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(173), - [sym_integer] = ACTIONS(173), - [sym_float] = ACTIONS(173), - [sym_char] = ACTIONS(173), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(173), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(175), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [12] = { - [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(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), - [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(179), - [sym_integer] = ACTIONS(179), - [sym_float] = ACTIONS(179), - [sym_char] = ACTIONS(179), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(179), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(181), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [13] = { - [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(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), - [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(185), - [sym_integer] = ACTIONS(185), - [sym_float] = ACTIONS(185), - [sym_char] = ACTIONS(185), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(185), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(187), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [14] = { - [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), - [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(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(233), - [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(239), - [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), - }, - [15] = { - [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(1097), - [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(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(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(245), - [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), - }, - [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(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(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(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(189), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(295), - [sym__not_in] = ACTIONS(189), - [sym__quoted_atom_start] = ACTIONS(300), - }, - [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), - [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(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(191), - [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(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(295), - [sym__not_in] = ACTIONS(189), - [sym__quoted_atom_start] = ACTIONS(300), - }, - [20] = { - [sym__expression] = STATE(1073), - [sym_block] = STATE(1073), - [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(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), - [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(309), - [sym_integer] = ACTIONS(309), - [sym_float] = ACTIONS(309), - [sym_char] = ACTIONS(309), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(309), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(311), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [21] = { - [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(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), - [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(313), - [sym_integer] = ACTIONS(313), - [sym_float] = ACTIONS(313), - [sym_char] = ACTIONS(313), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(313), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(315), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [23] = { - [sym__expression] = STATE(1066), - [sym_block] = STATE(1066), - [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(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), - [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(317), - [sym_integer] = ACTIONS(317), - [sym_float] = ACTIONS(317), - [sym_char] = ACTIONS(317), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(317), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(319), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [24] = { - [sym__expression] = STATE(1072), - [sym_block] = STATE(1072), - [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(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), - [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(321), - [sym_integer] = ACTIONS(321), - [sym_float] = ACTIONS(321), - [sym_char] = ACTIONS(321), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(321), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(323), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [25] = { - [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(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(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(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(241), - [sym__not_in] = ACTIONS(297), - [sym__quoted_atom_start] = ACTIONS(243), - }, - [26] = { - [sym__expression] = STATE(1065), - [sym_block] = STATE(1065), - [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(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), - [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(325), - [sym_integer] = ACTIONS(325), - [sym_float] = ACTIONS(325), - [sym_char] = ACTIONS(325), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(325), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(327), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [27] = { - [sym__expression] = STATE(1076), - [sym_block] = STATE(1076), - [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(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), - [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(329), - [sym_integer] = ACTIONS(329), - [sym_float] = ACTIONS(329), - [sym_char] = ACTIONS(329), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(329), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(331), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [28] = { [sym__expression] = STATE(1070), [sym_block] = STATE(1070), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), + [sym_identifier] = STATE(26), [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__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), [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_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), [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_operator_identifier] = STATE(5565), [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__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4308), + [sym_rescue_block] = STATE(4308), + [sym_catch_block] = STATE(4308), + [sym_else_block] = STATE(4308), [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_stab_clause] = STATE(4195), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), [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), - [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(333), - [sym_integer] = ACTIONS(333), - [sym_float] = ACTIONS(333), - [sym_char] = ACTIONS(333), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(333), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(335), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), + [aux_sym__terminator_repeat1] = STATE(1006), + [aux_sym_do_block_repeat1] = STATE(4308), + [aux_sym__terminator_token1] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(115), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(117), + [sym_integer] = ACTIONS(117), + [sym_float] = ACTIONS(117), + [sym_char] = ACTIONS(117), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(117), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(119), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), [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), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [29] = { + [4] = { + [sym__terminator] = STATE(28), + [sym__expression] = STATE(1066), + [sym_block] = STATE(1066), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1066), + [sym_nil] = STATE(1066), + [sym__atom] = STATE(1066), + [sym_quoted_atom] = STATE(1066), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1066), + [sym_charlist] = STATE(1066), + [sym_sigil] = STATE(1066), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1066), + [sym_call] = STATE(1066), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4317), + [sym_rescue_block] = STATE(4317), + [sym_catch_block] = STATE(4317), + [sym_else_block] = STATE(4317), + [sym_access_call] = STATE(1066), + [sym_stab_clause] = STATE(4247), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1066), + [aux_sym__terminator_repeat1] = STATE(1006), + [aux_sym_do_block_repeat1] = STATE(4317), + [aux_sym__terminator_token1] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(121), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(123), + [sym_integer] = ACTIONS(123), + [sym_float] = ACTIONS(123), + [sym_char] = ACTIONS(123), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(123), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(125), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [5] = { + [sym__terminator] = STATE(32), + [sym__expression] = STATE(1068), + [sym_block] = STATE(1068), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1068), + [sym_nil] = STATE(1068), + [sym__atom] = STATE(1068), + [sym_quoted_atom] = STATE(1068), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1068), + [sym_charlist] = STATE(1068), + [sym_sigil] = STATE(1068), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1068), + [sym_call] = STATE(1068), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4315), + [sym_rescue_block] = STATE(4315), + [sym_catch_block] = STATE(4315), + [sym_else_block] = STATE(4315), + [sym_access_call] = STATE(1068), + [sym_stab_clause] = STATE(4189), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1068), + [aux_sym__terminator_repeat1] = STATE(1006), + [aux_sym_do_block_repeat1] = STATE(4315), + [aux_sym__terminator_token1] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(127), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(129), + [sym_integer] = ACTIONS(129), + [sym_float] = ACTIONS(129), + [sym_char] = ACTIONS(129), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(129), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(131), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [6] = { + [sym__terminator] = STATE(33), + [sym__expression] = STATE(1065), + [sym_block] = STATE(1065), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1065), + [sym_nil] = STATE(1065), + [sym__atom] = STATE(1065), + [sym_quoted_atom] = STATE(1065), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1065), + [sym_charlist] = STATE(1065), + [sym_sigil] = STATE(1065), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1065), + [sym_call] = STATE(1065), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4291), + [sym_rescue_block] = STATE(4291), + [sym_catch_block] = STATE(4291), + [sym_else_block] = STATE(4291), + [sym_access_call] = STATE(1065), + [sym_stab_clause] = STATE(4211), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1065), + [aux_sym__terminator_repeat1] = STATE(1006), + [aux_sym_do_block_repeat1] = STATE(4291), + [aux_sym__terminator_token1] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(135), + [sym_integer] = ACTIONS(135), + [sym_float] = ACTIONS(135), + [sym_char] = ACTIONS(135), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(135), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(137), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [7] = { + [sym__terminator] = STATE(25), + [sym__expression] = STATE(1061), + [sym_block] = STATE(1061), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1061), + [sym_nil] = STATE(1061), + [sym__atom] = STATE(1061), + [sym_quoted_atom] = STATE(1061), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1061), + [sym_charlist] = STATE(1061), + [sym_sigil] = STATE(1061), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1061), + [sym_call] = STATE(1061), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4279), + [sym_rescue_block] = STATE(4279), + [sym_catch_block] = STATE(4279), + [sym_else_block] = STATE(4279), + [sym_access_call] = STATE(1061), + [sym_stab_clause] = STATE(4233), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1061), + [aux_sym__terminator_repeat1] = STATE(1006), + [aux_sym_do_block_repeat1] = STATE(4279), + [aux_sym__terminator_token1] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(141), + [sym_integer] = ACTIONS(141), + [sym_float] = ACTIONS(141), + [sym_char] = ACTIONS(141), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(141), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(143), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [8] = { + [sym__terminator] = STATE(23), + [sym__expression] = STATE(1050), + [sym_block] = STATE(1050), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1050), + [sym_nil] = STATE(1050), + [sym__atom] = STATE(1050), + [sym_quoted_atom] = STATE(1050), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1050), + [sym_charlist] = STATE(1050), + [sym_sigil] = STATE(1050), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1050), + [sym_tuple] = STATE(1050), + [sym_bitstring] = STATE(1050), + [sym_map] = STATE(1050), + [sym_unary_operator] = STATE(1050), + [sym_binary_operator] = STATE(1050), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1050), + [sym_call] = STATE(1050), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4258), + [sym_rescue_block] = STATE(4258), + [sym_catch_block] = STATE(4258), + [sym_else_block] = STATE(4258), + [sym_access_call] = STATE(1050), + [sym_stab_clause] = STATE(4224), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1050), + [aux_sym__terminator_repeat1] = STATE(1006), + [aux_sym_do_block_repeat1] = STATE(4258), + [aux_sym__terminator_token1] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(145), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(147), + [sym_integer] = ACTIONS(147), + [sym_float] = ACTIONS(147), + [sym_char] = ACTIONS(147), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(147), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(149), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [9] = { + [sym__terminator] = STATE(20), + [sym__expression] = STATE(1057), + [sym_block] = STATE(1057), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1057), + [sym_nil] = STATE(1057), + [sym__atom] = STATE(1057), + [sym_quoted_atom] = STATE(1057), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1057), + [sym_charlist] = STATE(1057), + [sym_sigil] = STATE(1057), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1057), + [sym_tuple] = STATE(1057), + [sym_bitstring] = STATE(1057), + [sym_map] = STATE(1057), + [sym_unary_operator] = STATE(1057), + [sym_binary_operator] = STATE(1057), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1057), + [sym_call] = STATE(1057), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4280), + [sym_rescue_block] = STATE(4280), + [sym_catch_block] = STATE(4280), + [sym_else_block] = STATE(4280), + [sym_access_call] = STATE(1057), + [sym_stab_clause] = STATE(4232), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1057), + [aux_sym__terminator_repeat1] = STATE(1006), + [aux_sym_do_block_repeat1] = STATE(4280), + [aux_sym__terminator_token1] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(151), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(153), + [sym_integer] = ACTIONS(153), + [sym_float] = ACTIONS(153), + [sym_char] = ACTIONS(153), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(155), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [10] = { + [sym__terminator] = STATE(21), + [sym__expression] = STATE(1071), + [sym_block] = STATE(1071), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1071), + [sym_nil] = STATE(1071), + [sym__atom] = STATE(1071), + [sym_quoted_atom] = STATE(1071), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1071), + [sym_charlist] = STATE(1071), + [sym_sigil] = STATE(1071), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1071), + [sym_call] = STATE(1071), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4277), + [sym_rescue_block] = STATE(4277), + [sym_catch_block] = STATE(4277), + [sym_else_block] = STATE(4277), + [sym_access_call] = STATE(1071), + [sym_stab_clause] = STATE(4186), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1071), + [aux_sym__terminator_repeat1] = STATE(1006), + [aux_sym_do_block_repeat1] = STATE(4277), + [aux_sym__terminator_token1] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(157), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(159), + [sym_integer] = ACTIONS(159), + [sym_float] = ACTIONS(159), + [sym_char] = ACTIONS(159), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(159), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(161), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [11] = { + [sym__terminator] = STATE(31), + [sym__expression] = STATE(1052), + [sym_block] = STATE(1052), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1052), + [sym_nil] = STATE(1052), + [sym__atom] = STATE(1052), + [sym_quoted_atom] = STATE(1052), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1052), + [sym_charlist] = STATE(1052), + [sym_sigil] = STATE(1052), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1052), + [sym_tuple] = STATE(1052), + [sym_bitstring] = STATE(1052), + [sym_map] = STATE(1052), + [sym_unary_operator] = STATE(1052), + [sym_binary_operator] = STATE(1052), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1052), + [sym_call] = STATE(1052), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4271), + [sym_rescue_block] = STATE(4271), + [sym_catch_block] = STATE(4271), + [sym_else_block] = STATE(4271), + [sym_access_call] = STATE(1052), + [sym_stab_clause] = STATE(4240), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1052), + [aux_sym__terminator_repeat1] = STATE(1006), + [aux_sym_do_block_repeat1] = STATE(4271), + [aux_sym__terminator_token1] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(163), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(165), + [sym_integer] = ACTIONS(165), + [sym_float] = ACTIONS(165), + [sym_char] = ACTIONS(165), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(165), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(167), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [12] = { + [sym__terminator] = STATE(29), + [sym__expression] = STATE(1059), + [sym_block] = STATE(1059), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1059), + [sym_nil] = STATE(1059), + [sym__atom] = STATE(1059), + [sym_quoted_atom] = STATE(1059), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1059), + [sym_charlist] = STATE(1059), + [sym_sigil] = STATE(1059), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1059), + [sym_call] = STATE(1059), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4264), + [sym_rescue_block] = STATE(4264), + [sym_catch_block] = STATE(4264), + [sym_else_block] = STATE(4264), + [sym_access_call] = STATE(1059), + [sym_stab_clause] = STATE(4241), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1059), + [aux_sym__terminator_repeat1] = STATE(1006), + [aux_sym_do_block_repeat1] = STATE(4264), + [aux_sym__terminator_token1] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(169), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(171), + [sym_integer] = ACTIONS(171), + [sym_float] = ACTIONS(171), + [sym_char] = ACTIONS(171), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(171), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(173), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [13] = { + [sym__terminator] = STATE(27), + [sym__expression] = STATE(1062), + [sym_block] = STATE(1062), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1062), + [sym_nil] = STATE(1062), + [sym__atom] = STATE(1062), + [sym_quoted_atom] = STATE(1062), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1062), + [sym_charlist] = STATE(1062), + [sym_sigil] = STATE(1062), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1062), + [sym_call] = STATE(1062), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4276), + [sym_rescue_block] = STATE(4276), + [sym_catch_block] = STATE(4276), + [sym_else_block] = STATE(4276), + [sym_access_call] = STATE(1062), + [sym_stab_clause] = STATE(4236), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1062), + [aux_sym__terminator_repeat1] = STATE(1006), + [aux_sym_do_block_repeat1] = STATE(4276), + [aux_sym__terminator_token1] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(175), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(177), + [sym_integer] = ACTIONS(177), + [sym_float] = ACTIONS(177), + [sym_char] = ACTIONS(177), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(177), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(179), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [14] = { + [sym__expression] = STATE(1325), + [sym_block] = STATE(1325), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1325), + [sym_nil] = STATE(1325), + [sym__atom] = STATE(1325), + [sym_quoted_atom] = STATE(1325), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1325), + [sym_charlist] = STATE(1325), + [sym_sigil] = STATE(1325), + [sym_keywords] = STATE(1471), + [sym_pair] = STATE(1320), + [sym__keyword] = STATE(756), + [sym_quoted_keyword] = STATE(756), + [sym_list] = STATE(1325), + [sym_tuple] = STATE(1325), + [sym_bitstring] = STATE(1325), + [sym_map] = STATE(1325), + [sym_unary_operator] = STATE(1325), + [sym_binary_operator] = STATE(1325), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1325), + [sym_call] = STATE(1325), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym__call_arguments_with_parentheses_immediate] = STATE(1102), + [sym__call_arguments_without_parentheses] = STATE(1131), + [sym_do_block] = STATE(1360), + [sym_access_call] = STATE(1325), + [sym_anonymous_function] = STATE(1325), + [aux_sym__terminator_token1] = ACTIONS(181), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(189), + [sym_integer] = ACTIONS(189), + [sym_float] = ACTIONS(189), + [sym_char] = ACTIONS(189), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_COMMA] = ACTIONS(183), + [sym_keyword] = ACTIONS(212), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(220), + [anon_sym_DASH] = ACTIONS(220), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_after] = ACTIONS(183), + [anon_sym_catch] = ACTIONS(183), + [anon_sym_do] = ACTIONS(183), + [anon_sym_else] = ACTIONS(183), + [anon_sym_end] = ACTIONS(183), + [anon_sym_fn] = ACTIONS(227), + [anon_sym_rescue] = ACTIONS(183), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_LBRACK2] = ACTIONS(181), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(181), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [15] = { + [sym__expression] = STATE(1252), + [sym_block] = STATE(1252), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1252), + [sym_nil] = STATE(1252), + [sym__atom] = STATE(1252), + [sym_quoted_atom] = STATE(1252), + [sym__quoted_i_double] = STATE(1115), + [sym__quoted_i_single] = STATE(1116), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1252), + [sym_charlist] = STATE(1252), + [sym_sigil] = STATE(1252), + [sym_keywords] = STATE(1294), + [sym_pair] = STATE(1273), + [sym__keyword] = STATE(894), + [sym_quoted_keyword] = STATE(894), + [sym_list] = STATE(1252), + [sym_tuple] = STATE(1252), + [sym_bitstring] = STATE(1252), + [sym_map] = STATE(1252), + [sym_unary_operator] = STATE(1252), + [sym_binary_operator] = STATE(1252), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1252), + [sym_call] = STATE(1252), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym__call_arguments_with_parentheses_immediate] = STATE(1077), + [sym__call_arguments_without_parentheses] = STATE(1094), + [sym_do_block] = STATE(1198), + [sym_access_call] = STATE(1252), + [sym_anonymous_function] = STATE(1252), + [aux_sym__terminator_token1] = ACTIONS(181), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(240), + [sym_integer] = ACTIONS(240), + [sym_float] = ACTIONS(240), + [sym_char] = ACTIONS(240), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(240), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_COMMA] = ACTIONS(183), + [sym_keyword] = ACTIONS(260), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(268), + [anon_sym_DASH] = ACTIONS(268), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(207), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_after] = ACTIONS(183), + [anon_sym_catch] = ACTIONS(183), + [anon_sym_do] = ACTIONS(183), + [anon_sym_else] = ACTIONS(183), + [anon_sym_end] = ACTIONS(183), + [anon_sym_fn] = ACTIONS(275), + [anon_sym_rescue] = ACTIONS(183), + [anon_sym_LPAREN2] = ACTIONS(277), + [anon_sym_LBRACK2] = ACTIONS(181), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(181), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [16] = { + [sym__expression] = STATE(1252), + [sym_block] = STATE(1252), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1252), + [sym_nil] = STATE(1252), + [sym__atom] = STATE(1252), + [sym_quoted_atom] = STATE(1252), + [sym__quoted_i_double] = STATE(1115), + [sym__quoted_i_single] = STATE(1116), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1252), + [sym_charlist] = STATE(1252), + [sym_sigil] = STATE(1252), + [sym_keywords] = STATE(1294), + [sym_pair] = STATE(1273), + [sym__keyword] = STATE(894), + [sym_quoted_keyword] = STATE(894), + [sym_list] = STATE(1252), + [sym_tuple] = STATE(1252), + [sym_bitstring] = STATE(1252), + [sym_map] = STATE(1252), + [sym_unary_operator] = STATE(1252), + [sym_binary_operator] = STATE(1252), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1252), + [sym_call] = STATE(1252), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym__call_arguments_with_parentheses_immediate] = STATE(1076), + [sym__call_arguments_without_parentheses] = STATE(1100), + [sym_do_block] = STATE(1584), + [sym_access_call] = STATE(1252), + [sym_anonymous_function] = STATE(1252), + [aux_sym__terminator_token1] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(240), + [sym_integer] = ACTIONS(240), + [sym_float] = ACTIONS(240), + [sym_char] = ACTIONS(240), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(240), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_COMMA] = ACTIONS(285), + [sym_keyword] = ACTIONS(260), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(285), + [anon_sym_BSLASH_BSLASH] = ACTIONS(285), + [anon_sym_when] = ACTIONS(285), + [anon_sym_COLON_COLON] = ACTIONS(285), + [anon_sym_EQ_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(285), + [anon_sym_or] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP_AMP] = ACTIONS(285), + [anon_sym_and] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT_GT] = ACTIONS(285), + [anon_sym_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_PIPE_GT] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_CARET_CARET_CARET] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(285), + [anon_sym_LT_GT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(285), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_after] = ACTIONS(285), + [anon_sym_catch] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_else] = ACTIONS(285), + [anon_sym_end] = ACTIONS(285), + [anon_sym_fn] = ACTIONS(275), + [anon_sym_rescue] = ACTIONS(285), + [anon_sym_LPAREN2] = ACTIONS(277), + [anon_sym_LBRACK2] = ACTIONS(283), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(289), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(283), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [17] = { + [sym__expression] = STATE(1325), + [sym_block] = STATE(1325), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1325), + [sym_nil] = STATE(1325), + [sym__atom] = STATE(1325), + [sym_quoted_atom] = STATE(1325), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1325), + [sym_charlist] = STATE(1325), + [sym_sigil] = STATE(1325), + [sym_keywords] = STATE(1471), + [sym_pair] = STATE(1320), + [sym__keyword] = STATE(756), + [sym_quoted_keyword] = STATE(756), + [sym_list] = STATE(1325), + [sym_tuple] = STATE(1325), + [sym_bitstring] = STATE(1325), + [sym_map] = STATE(1325), + [sym_unary_operator] = STATE(1325), + [sym_binary_operator] = STATE(1325), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1325), + [sym_call] = STATE(1325), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym__call_arguments_with_parentheses_immediate] = STATE(1091), + [sym__call_arguments_without_parentheses] = STATE(1136), + [sym_do_block] = STATE(1810), + [sym_access_call] = STATE(1325), + [sym_anonymous_function] = STATE(1325), + [aux_sym__terminator_token1] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(189), + [sym_integer] = ACTIONS(189), + [sym_float] = ACTIONS(189), + [sym_char] = ACTIONS(189), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_COMMA] = ACTIONS(285), + [sym_keyword] = ACTIONS(212), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(285), + [anon_sym_BSLASH_BSLASH] = ACTIONS(285), + [anon_sym_when] = ACTIONS(285), + [anon_sym_COLON_COLON] = ACTIONS(285), + [anon_sym_EQ_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(285), + [anon_sym_or] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP_AMP] = ACTIONS(285), + [anon_sym_and] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT_GT] = ACTIONS(285), + [anon_sym_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_PIPE_GT] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_CARET_CARET_CARET] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(285), + [anon_sym_LT_GT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_after] = ACTIONS(285), + [anon_sym_catch] = ACTIONS(285), + [anon_sym_do] = ACTIONS(291), + [anon_sym_else] = ACTIONS(285), + [anon_sym_end] = ACTIONS(285), + [anon_sym_fn] = ACTIONS(227), + [anon_sym_rescue] = ACTIONS(285), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_LBRACK2] = ACTIONS(283), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(293), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(283), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [18] = { + [sym__expression] = STATE(1325), + [sym_block] = STATE(1325), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1325), + [sym_nil] = STATE(1325), + [sym__atom] = STATE(1325), + [sym_quoted_atom] = STATE(1325), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1325), + [sym_charlist] = STATE(1325), + [sym_sigil] = STATE(1325), + [sym_keywords] = STATE(1471), + [sym_pair] = STATE(1320), + [sym__keyword] = STATE(756), + [sym_quoted_keyword] = STATE(756), + [sym_list] = STATE(1325), + [sym_tuple] = STATE(1325), + [sym_bitstring] = STATE(1325), + [sym_map] = STATE(1325), + [sym_unary_operator] = STATE(1325), + [sym_binary_operator] = STATE(1325), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1325), + [sym_call] = STATE(1325), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym__call_arguments_with_parentheses_immediate] = STATE(1086), + [sym__call_arguments_without_parentheses] = STATE(1138), + [sym_do_block] = STATE(1365), + [sym_access_call] = STATE(1325), + [sym_anonymous_function] = STATE(1325), + [aux_sym__terminator_token1] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(189), + [sym_integer] = ACTIONS(189), + [sym_float] = ACTIONS(189), + [sym_char] = ACTIONS(189), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_COMMA] = ACTIONS(285), + [sym_keyword] = ACTIONS(212), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(285), + [anon_sym_BSLASH_BSLASH] = ACTIONS(285), + [anon_sym_when] = ACTIONS(285), + [anon_sym_COLON_COLON] = ACTIONS(285), + [anon_sym_EQ_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(285), + [anon_sym_or] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP_AMP] = ACTIONS(285), + [anon_sym_and] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT_GT] = ACTIONS(285), + [anon_sym_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_PIPE_GT] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_CARET_CARET_CARET] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(285), + [anon_sym_LT_GT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_after] = ACTIONS(285), + [anon_sym_catch] = ACTIONS(285), + [anon_sym_do] = ACTIONS(285), + [anon_sym_else] = ACTIONS(285), + [anon_sym_end] = ACTIONS(285), + [anon_sym_fn] = ACTIONS(227), + [anon_sym_rescue] = ACTIONS(285), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_LBRACK2] = ACTIONS(283), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(283), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(283), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [19] = { + [sym__expression] = STATE(1252), + [sym_block] = STATE(1252), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1252), + [sym_nil] = STATE(1252), + [sym__atom] = STATE(1252), + [sym_quoted_atom] = STATE(1252), + [sym__quoted_i_double] = STATE(1115), + [sym__quoted_i_single] = STATE(1116), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1252), + [sym_charlist] = STATE(1252), + [sym_sigil] = STATE(1252), + [sym_keywords] = STATE(1294), + [sym_pair] = STATE(1273), + [sym__keyword] = STATE(894), + [sym_quoted_keyword] = STATE(894), + [sym_list] = STATE(1252), + [sym_tuple] = STATE(1252), + [sym_bitstring] = STATE(1252), + [sym_map] = STATE(1252), + [sym_unary_operator] = STATE(1252), + [sym_binary_operator] = STATE(1252), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1252), + [sym_call] = STATE(1252), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym__call_arguments_with_parentheses_immediate] = STATE(1073), + [sym__call_arguments_without_parentheses] = STATE(1090), + [sym_do_block] = STATE(1201), + [sym_access_call] = STATE(1252), + [sym_anonymous_function] = STATE(1252), + [aux_sym__terminator_token1] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(240), + [sym_integer] = ACTIONS(240), + [sym_float] = ACTIONS(240), + [sym_char] = ACTIONS(240), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(240), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_COMMA] = ACTIONS(285), + [sym_keyword] = ACTIONS(260), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(285), + [anon_sym_BSLASH_BSLASH] = ACTIONS(285), + [anon_sym_when] = ACTIONS(285), + [anon_sym_COLON_COLON] = ACTIONS(285), + [anon_sym_EQ_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(285), + [anon_sym_or] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP_AMP] = ACTIONS(285), + [anon_sym_and] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT_GT] = ACTIONS(285), + [anon_sym_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_PIPE_GT] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_CARET_CARET_CARET] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(285), + [anon_sym_LT_GT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(285), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_after] = ACTIONS(285), + [anon_sym_catch] = ACTIONS(285), + [anon_sym_do] = ACTIONS(285), + [anon_sym_else] = ACTIONS(285), + [anon_sym_end] = ACTIONS(285), + [anon_sym_fn] = ACTIONS(275), + [anon_sym_rescue] = ACTIONS(285), + [anon_sym_LPAREN2] = ACTIONS(277), + [anon_sym_LBRACK2] = ACTIONS(283), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(283), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(283), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [20] = { + [sym__expression] = STATE(1056), + [sym_block] = STATE(1056), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1056), + [sym_nil] = STATE(1056), + [sym__atom] = STATE(1056), + [sym_quoted_atom] = STATE(1056), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1056), + [sym_charlist] = STATE(1056), + [sym_sigil] = STATE(1056), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1056), + [sym_tuple] = STATE(1056), + [sym_bitstring] = STATE(1056), + [sym_map] = STATE(1056), + [sym_unary_operator] = STATE(1056), + [sym_binary_operator] = STATE(1056), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1056), + [sym_call] = STATE(1056), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4284), + [sym_rescue_block] = STATE(4284), + [sym_catch_block] = STATE(4284), + [sym_else_block] = STATE(4284), + [sym_access_call] = STATE(1056), + [sym_stab_clause] = STATE(4231), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1056), + [aux_sym_do_block_repeat1] = STATE(4284), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(295), + [sym_integer] = ACTIONS(295), + [sym_float] = ACTIONS(295), + [sym_char] = ACTIONS(295), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(295), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(297), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [21] = { [sym__expression] = STATE(1063), [sym_block] = STATE(1063), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), + [sym_identifier] = STATE(26), [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__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), [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_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), [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_operator_identifier] = STATE(5565), [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), - [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(337), - [sym_integer] = ACTIONS(337), - [sym_float] = ACTIONS(337), - [sym_char] = ACTIONS(337), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(337), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(339), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [30] = { - [sym__expression] = STATE(1081), - [sym_block] = STATE(1081), - [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(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__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), [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), + [sym_access_call] = STATE(1063), + [sym_stab_clause] = STATE(4234), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1063), [aux_sym_do_block_repeat1] = STATE(4278), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(65), - [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(341), - [sym_integer] = ACTIONS(341), - [sym_float] = ACTIONS(341), - [sym_char] = ACTIONS(341), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(341), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(343), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(299), + [sym_integer] = ACTIONS(299), + [sym_float] = ACTIONS(299), + [sym_char] = ACTIONS(299), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(299), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(301), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), [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), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [31] = { + [22] = { + [sym__expression] = STATE(1053), + [sym_block] = STATE(1053), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1053), + [sym_nil] = STATE(1053), + [sym__atom] = STATE(1053), + [sym_quoted_atom] = STATE(1053), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1053), + [sym_charlist] = STATE(1053), + [sym_sigil] = STATE(1053), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1053), + [sym_tuple] = STATE(1053), + [sym_bitstring] = STATE(1053), + [sym_map] = STATE(1053), + [sym_unary_operator] = STATE(1053), + [sym_binary_operator] = STATE(1053), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1053), + [sym_call] = STATE(1053), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4283), + [sym_rescue_block] = STATE(4283), + [sym_catch_block] = STATE(4283), + [sym_else_block] = STATE(4283), + [sym_access_call] = STATE(1053), + [sym_stab_clause] = STATE(4229), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1053), + [aux_sym_do_block_repeat1] = STATE(4283), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(303), + [sym_integer] = ACTIONS(303), + [sym_float] = ACTIONS(303), + [sym_char] = ACTIONS(303), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(303), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(305), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [23] = { + [sym__expression] = STATE(1049), + [sym_block] = STATE(1049), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1049), + [sym_nil] = STATE(1049), + [sym__atom] = STATE(1049), + [sym_quoted_atom] = STATE(1049), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1049), + [sym_charlist] = STATE(1049), + [sym_sigil] = STATE(1049), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1049), + [sym_tuple] = STATE(1049), + [sym_bitstring] = STATE(1049), + [sym_map] = STATE(1049), + [sym_unary_operator] = STATE(1049), + [sym_binary_operator] = STATE(1049), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1049), + [sym_call] = STATE(1049), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4316), + [sym_rescue_block] = STATE(4316), + [sym_catch_block] = STATE(4316), + [sym_else_block] = STATE(4316), + [sym_access_call] = STATE(1049), + [sym_stab_clause] = STATE(4220), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1049), + [aux_sym_do_block_repeat1] = STATE(4316), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(307), + [sym_integer] = ACTIONS(307), + [sym_float] = ACTIONS(307), + [sym_char] = ACTIONS(307), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(307), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(309), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [24] = { + [sym__expression] = STATE(1055), + [sym_block] = STATE(1055), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1055), + [sym_nil] = STATE(1055), + [sym__atom] = STATE(1055), + [sym_quoted_atom] = STATE(1055), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1055), + [sym_charlist] = STATE(1055), + [sym_sigil] = STATE(1055), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1055), + [sym_tuple] = STATE(1055), + [sym_bitstring] = STATE(1055), + [sym_map] = STATE(1055), + [sym_unary_operator] = STATE(1055), + [sym_binary_operator] = STATE(1055), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1055), + [sym_call] = STATE(1055), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4287), + [sym_rescue_block] = STATE(4287), + [sym_catch_block] = STATE(4287), + [sym_else_block] = STATE(4287), + [sym_access_call] = STATE(1055), + [sym_stab_clause] = STATE(4223), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1055), + [aux_sym_do_block_repeat1] = STATE(4287), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(311), + [sym_integer] = ACTIONS(311), + [sym_float] = ACTIONS(311), + [sym_char] = ACTIONS(311), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(311), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(313), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [25] = { [sym__expression] = STATE(1060), [sym_block] = STATE(1060), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), + [sym_identifier] = STATE(26), [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__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), [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_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), [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_operator_identifier] = STATE(5565), [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__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4259), + [sym_rescue_block] = STATE(4259), + [sym_catch_block] = STATE(4259), + [sym_else_block] = STATE(4259), [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_stab_clause] = STATE(4235), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), [sym_anonymous_function] = STATE(1060), - [aux_sym_do_block_repeat1] = STATE(4287), + [aux_sym_do_block_repeat1] = STATE(4259), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(65), - [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(345), - [sym_integer] = ACTIONS(345), - [sym_float] = ACTIONS(345), - [sym_char] = ACTIONS(345), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(345), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(347), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(315), + [sym_integer] = ACTIONS(315), + [sym_float] = ACTIONS(315), + [sym_char] = ACTIONS(315), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(315), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(317), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), [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), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [26] = { + [sym__expression] = STATE(1252), + [sym_block] = STATE(1252), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1252), + [sym_nil] = STATE(1252), + [sym__atom] = STATE(1252), + [sym_quoted_atom] = STATE(1252), + [sym__quoted_i_double] = STATE(1115), + [sym__quoted_i_single] = STATE(1116), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1252), + [sym_charlist] = STATE(1252), + [sym_sigil] = STATE(1252), + [sym_keywords] = STATE(1294), + [sym_pair] = STATE(1273), + [sym__keyword] = STATE(894), + [sym_quoted_keyword] = STATE(894), + [sym_list] = STATE(1252), + [sym_tuple] = STATE(1252), + [sym_bitstring] = STATE(1252), + [sym_map] = STATE(1252), + [sym_unary_operator] = STATE(1252), + [sym_binary_operator] = STATE(1252), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1252), + [sym_call] = STATE(1252), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym__call_arguments_with_parentheses_immediate] = STATE(1078), + [sym__call_arguments_without_parentheses] = STATE(1084), + [sym_do_block] = STATE(1582), + [sym_access_call] = STATE(1252), + [sym_anonymous_function] = STATE(1252), + [aux_sym__terminator_token1] = ACTIONS(181), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(240), + [sym_integer] = ACTIONS(240), + [sym_float] = ACTIONS(240), + [sym_char] = ACTIONS(240), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(240), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_COMMA] = ACTIONS(183), + [sym_keyword] = ACTIONS(260), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(268), + [anon_sym_DASH] = ACTIONS(268), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(207), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_after] = ACTIONS(183), + [anon_sym_catch] = ACTIONS(183), + [anon_sym_do] = ACTIONS(287), + [anon_sym_else] = ACTIONS(183), + [anon_sym_end] = ACTIONS(183), + [anon_sym_fn] = ACTIONS(275), + [anon_sym_rescue] = ACTIONS(183), + [anon_sym_LPAREN2] = ACTIONS(277), + [anon_sym_LBRACK2] = ACTIONS(181), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [27] = { + [sym__expression] = STATE(1058), + [sym_block] = STATE(1058), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1058), + [sym_nil] = STATE(1058), + [sym__atom] = STATE(1058), + [sym_quoted_atom] = STATE(1058), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1058), + [sym_charlist] = STATE(1058), + [sym_sigil] = STATE(1058), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1058), + [sym_tuple] = STATE(1058), + [sym_bitstring] = STATE(1058), + [sym_map] = STATE(1058), + [sym_unary_operator] = STATE(1058), + [sym_binary_operator] = STATE(1058), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1058), + [sym_call] = STATE(1058), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4266), + [sym_rescue_block] = STATE(4266), + [sym_catch_block] = STATE(4266), + [sym_else_block] = STATE(4266), + [sym_access_call] = STATE(1058), + [sym_stab_clause] = STATE(4226), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1058), + [aux_sym_do_block_repeat1] = STATE(4266), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(319), + [sym_integer] = ACTIONS(319), + [sym_float] = ACTIONS(319), + [sym_char] = ACTIONS(319), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(319), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(321), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [28] = { + [sym__expression] = STATE(1069), + [sym_block] = STATE(1069), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1069), + [sym_nil] = STATE(1069), + [sym__atom] = STATE(1069), + [sym_quoted_atom] = STATE(1069), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1069), + [sym_charlist] = STATE(1069), + [sym_sigil] = STATE(1069), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1069), + [sym_call] = STATE(1069), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4307), + [sym_rescue_block] = STATE(4307), + [sym_catch_block] = STATE(4307), + [sym_else_block] = STATE(4307), + [sym_access_call] = STATE(1069), + [sym_stab_clause] = STATE(4192), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1069), + [aux_sym_do_block_repeat1] = STATE(4307), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(323), + [sym_integer] = ACTIONS(323), + [sym_float] = ACTIONS(323), + [sym_char] = ACTIONS(323), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(323), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(325), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [29] = { + [sym__expression] = STATE(1067), + [sym_block] = STATE(1067), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1067), + [sym_nil] = STATE(1067), + [sym__atom] = STATE(1067), + [sym_quoted_atom] = STATE(1067), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1067), + [sym_charlist] = STATE(1067), + [sym_sigil] = STATE(1067), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1067), + [sym_call] = STATE(1067), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4275), + [sym_rescue_block] = STATE(4275), + [sym_catch_block] = STATE(4275), + [sym_else_block] = STATE(4275), + [sym_access_call] = STATE(1067), + [sym_stab_clause] = STATE(4219), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1067), + [aux_sym_do_block_repeat1] = STATE(4275), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(327), + [sym_integer] = ACTIONS(327), + [sym_float] = ACTIONS(327), + [sym_char] = ACTIONS(327), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(327), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(329), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [30] = { + [sym__expression] = STATE(1325), + [sym_block] = STATE(1325), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1325), + [sym_nil] = STATE(1325), + [sym__atom] = STATE(1325), + [sym_quoted_atom] = STATE(1325), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1325), + [sym_charlist] = STATE(1325), + [sym_sigil] = STATE(1325), + [sym_keywords] = STATE(1471), + [sym_pair] = STATE(1320), + [sym__keyword] = STATE(756), + [sym_quoted_keyword] = STATE(756), + [sym_list] = STATE(1325), + [sym_tuple] = STATE(1325), + [sym_bitstring] = STATE(1325), + [sym_map] = STATE(1325), + [sym_unary_operator] = STATE(1325), + [sym_binary_operator] = STATE(1325), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1325), + [sym_call] = STATE(1325), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym__call_arguments_with_parentheses_immediate] = STATE(1088), + [sym__call_arguments_without_parentheses] = STATE(1132), + [sym_do_block] = STATE(1805), + [sym_access_call] = STATE(1325), + [sym_anonymous_function] = STATE(1325), + [aux_sym__terminator_token1] = ACTIONS(181), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(189), + [sym_integer] = ACTIONS(189), + [sym_float] = ACTIONS(189), + [sym_char] = ACTIONS(189), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(189), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_COMMA] = ACTIONS(183), + [sym_keyword] = ACTIONS(212), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(220), + [anon_sym_DASH] = ACTIONS(220), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_after] = ACTIONS(183), + [anon_sym_catch] = ACTIONS(183), + [anon_sym_do] = ACTIONS(291), + [anon_sym_else] = ACTIONS(183), + [anon_sym_end] = ACTIONS(183), + [anon_sym_fn] = ACTIONS(227), + [anon_sym_rescue] = ACTIONS(183), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_LBRACK2] = ACTIONS(181), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [31] = { + [sym__expression] = STATE(1051), + [sym_block] = STATE(1051), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1051), + [sym_nil] = STATE(1051), + [sym__atom] = STATE(1051), + [sym_quoted_atom] = STATE(1051), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1051), + [sym_charlist] = STATE(1051), + [sym_sigil] = STATE(1051), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1051), + [sym_tuple] = STATE(1051), + [sym_bitstring] = STATE(1051), + [sym_map] = STATE(1051), + [sym_unary_operator] = STATE(1051), + [sym_binary_operator] = STATE(1051), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1051), + [sym_call] = STATE(1051), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4267), + [sym_rescue_block] = STATE(4267), + [sym_catch_block] = STATE(4267), + [sym_else_block] = STATE(4267), + [sym_access_call] = STATE(1051), + [sym_stab_clause] = STATE(4244), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1051), + [aux_sym_do_block_repeat1] = STATE(4267), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(331), + [sym_integer] = ACTIONS(331), + [sym_float] = ACTIONS(331), + [sym_char] = ACTIONS(331), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(331), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(333), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, [32] = { - [sym__expression] = STATE(1083), - [sym_block] = STATE(1083), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [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), + [sym__expression] = STATE(1048), + [sym_block] = STATE(1048), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1048), + [sym_nil] = STATE(1048), + [sym__atom] = STATE(1048), + [sym_quoted_atom] = STATE(1048), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1048), + [sym_charlist] = STATE(1048), + [sym_sigil] = STATE(1048), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1048), + [sym_tuple] = STATE(1048), + [sym_bitstring] = STATE(1048), + [sym_map] = STATE(1048), + [sym_unary_operator] = STATE(1048), + [sym_binary_operator] = STATE(1048), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1048), + [sym_call] = STATE(1048), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4290), + [sym_rescue_block] = STATE(4290), + [sym_catch_block] = STATE(4290), + [sym_else_block] = STATE(4290), + [sym_access_call] = STATE(1048), + [sym_stab_clause] = STATE(4191), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1048), + [aux_sym_do_block_repeat1] = STATE(4290), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(65), - [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(349), - [sym_integer] = ACTIONS(349), - [sym_float] = ACTIONS(349), - [sym_char] = ACTIONS(349), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(349), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(351), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(335), + [sym_integer] = ACTIONS(335), + [sym_float] = ACTIONS(335), + [sym_char] = ACTIONS(335), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(335), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(337), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), [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), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, [33] = { - [sym__expression] = STATE(1082), - [sym_block] = STATE(1082), - [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(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), + [sym__expression] = STATE(1054), + [sym_block] = STATE(1054), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1054), + [sym_nil] = STATE(1054), + [sym__atom] = STATE(1054), + [sym_quoted_atom] = STATE(1054), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1054), + [sym_charlist] = STATE(1054), + [sym_sigil] = STATE(1054), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1054), + [sym_tuple] = STATE(1054), + [sym_bitstring] = STATE(1054), + [sym_map] = STATE(1054), + [sym_unary_operator] = STATE(1054), + [sym_binary_operator] = STATE(1054), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1054), + [sym_call] = STATE(1054), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_after_block] = STATE(4269), + [sym_rescue_block] = STATE(4269), + [sym_catch_block] = STATE(4269), + [sym_else_block] = STATE(4269), + [sym_access_call] = STATE(1054), + [sym_stab_clause] = STATE(4242), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1054), + [aux_sym_do_block_repeat1] = STATE(4269), [aux_sym__terminator_token1] = ACTIONS(3), - [anon_sym_LPAREN] = ACTIONS(65), - [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(353), - [sym_integer] = ACTIONS(353), - [sym_float] = ACTIONS(353), - [sym_char] = ACTIONS(353), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(353), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(355), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(117), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(339), + [sym_integer] = ACTIONS(339), + [sym_float] = ACTIONS(339), + [sym_char] = ACTIONS(339), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(339), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(341), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(109), [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), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, [34] = { - [sym__terminator] = STATE(69), + [sym__expression] = STATE(2098), + [sym_block] = STATE(2098), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2098), + [sym_nil] = STATE(2098), + [sym__atom] = STATE(2098), + [sym_quoted_atom] = STATE(2098), + [sym__quoted_i_double] = STATE(1770), + [sym__quoted_i_single] = STATE(1771), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2098), + [sym_charlist] = STATE(2098), + [sym_sigil] = STATE(2098), + [sym_keywords] = STATE(2097), + [sym_pair] = STATE(2088), + [sym__keyword] = STATE(510), + [sym_quoted_keyword] = STATE(510), + [sym_list] = STATE(2098), + [sym_tuple] = STATE(2098), + [sym_bitstring] = STATE(2098), + [sym_map] = STATE(2098), + [sym_unary_operator] = STATE(2098), + [sym_binary_operator] = STATE(2098), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2098), + [sym_call] = STATE(2098), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym__call_arguments_with_parentheses_immediate] = STATE(1588), + [sym__call_arguments_without_parentheses] = STATE(1807), + [sym_do_block] = STATE(2141), + [sym_access_call] = STATE(2098), + [sym_anonymous_function] = STATE(2098), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(285), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(347), + [sym_integer] = ACTIONS(347), + [sym_float] = ACTIONS(347), + [sym_char] = ACTIONS(347), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_RBRACE] = ACTIONS(285), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_RBRACK] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_COMMA] = ACTIONS(285), + [sym_keyword] = ACTIONS(367), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(285), + [anon_sym_BSLASH_BSLASH] = ACTIONS(285), + [anon_sym_when] = ACTIONS(285), + [anon_sym_COLON_COLON] = ACTIONS(285), + [anon_sym_EQ_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(285), + [anon_sym_or] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP_AMP] = ACTIONS(285), + [anon_sym_and] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT_GT] = ACTIONS(285), + [anon_sym_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_PIPE_GT] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_CARET_CARET_CARET] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(285), + [anon_sym_LT_GT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_do] = ACTIONS(285), + [anon_sym_fn] = ACTIONS(379), + [anon_sym_LPAREN2] = ACTIONS(381), + [anon_sym_LBRACK2] = ACTIONS(283), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(283), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(283), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [35] = { + [sym__expression] = STATE(2098), + [sym_block] = STATE(2098), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2098), + [sym_nil] = STATE(2098), + [sym__atom] = STATE(2098), + [sym_quoted_atom] = STATE(2098), + [sym__quoted_i_double] = STATE(1770), + [sym__quoted_i_single] = STATE(1771), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2098), + [sym_charlist] = STATE(2098), + [sym_sigil] = STATE(2098), + [sym_keywords] = STATE(2097), + [sym_pair] = STATE(2088), + [sym__keyword] = STATE(510), + [sym_quoted_keyword] = STATE(510), + [sym_list] = STATE(2098), + [sym_tuple] = STATE(2098), + [sym_bitstring] = STATE(2098), + [sym_map] = STATE(2098), + [sym_unary_operator] = STATE(2098), + [sym_binary_operator] = STATE(2098), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2098), + [sym_call] = STATE(2098), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym__call_arguments_with_parentheses_immediate] = STATE(1687), + [sym__call_arguments_without_parentheses] = STATE(1861), + [sym_do_block] = STATE(3151), + [sym_access_call] = STATE(2098), + [sym_anonymous_function] = STATE(2098), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(285), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(347), + [sym_integer] = ACTIONS(347), + [sym_float] = ACTIONS(347), + [sym_char] = ACTIONS(347), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_RBRACE] = ACTIONS(285), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_RBRACK] = ACTIONS(285), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_COMMA] = ACTIONS(285), + [sym_keyword] = ACTIONS(367), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(285), + [anon_sym_BSLASH_BSLASH] = ACTIONS(285), + [anon_sym_when] = ACTIONS(285), + [anon_sym_COLON_COLON] = ACTIONS(285), + [anon_sym_EQ_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(285), + [anon_sym_or] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP_AMP] = ACTIONS(285), + [anon_sym_and] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT_GT] = ACTIONS(285), + [anon_sym_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_PIPE_GT] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_CARET_CARET_CARET] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(285), + [anon_sym_LT_GT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_do] = ACTIONS(387), + [anon_sym_fn] = ACTIONS(379), + [anon_sym_LPAREN2] = ACTIONS(381), + [anon_sym_LBRACK2] = ACTIONS(283), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(389), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(283), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [36] = { + [sym__terminator] = STATE(64), + [sym__expression] = STATE(1092), + [sym_block] = STATE(1092), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1092), + [sym_nil] = STATE(1092), + [sym__atom] = STATE(1092), + [sym_quoted_atom] = STATE(1092), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1092), + [sym_charlist] = STATE(1092), + [sym_sigil] = STATE(1092), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1092), + [sym_tuple] = STATE(1092), + [sym_bitstring] = STATE(1092), + [sym_map] = STATE(1092), + [sym_unary_operator] = STATE(1092), + [sym_binary_operator] = STATE(1092), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1092), + [sym_call] = STATE(1092), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1092), + [sym_stab_clause] = STATE(4331), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1092), + [aux_sym__terminator_repeat1] = STATE(1006), + [aux_sym__terminator_token1] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(391), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(393), + [sym_integer] = ACTIONS(393), + [sym_float] = ACTIONS(393), + [sym_char] = ACTIONS(393), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(393), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(395), + [anon_sym_catch] = ACTIONS(395), + [anon_sym_else] = ACTIONS(395), + [anon_sym_end] = ACTIONS(395), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(395), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [37] = { + [sym__expression] = STATE(2098), + [sym_block] = STATE(2098), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2098), + [sym_nil] = STATE(2098), + [sym__atom] = STATE(2098), + [sym_quoted_atom] = STATE(2098), + [sym__quoted_i_double] = STATE(1770), + [sym__quoted_i_single] = STATE(1771), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2098), + [sym_charlist] = STATE(2098), + [sym_sigil] = STATE(2098), + [sym_keywords] = STATE(2097), + [sym_pair] = STATE(2088), + [sym__keyword] = STATE(510), + [sym_quoted_keyword] = STATE(510), + [sym_list] = STATE(2098), + [sym_tuple] = STATE(2098), + [sym_bitstring] = STATE(2098), + [sym_map] = STATE(2098), + [sym_unary_operator] = STATE(2098), + [sym_binary_operator] = STATE(2098), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2098), + [sym_call] = STATE(2098), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym__call_arguments_with_parentheses_immediate] = STATE(1587), + [sym__call_arguments_without_parentheses] = STATE(1803), + [sym_do_block] = STATE(2145), + [sym_access_call] = STATE(2098), + [sym_anonymous_function] = STATE(2098), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(183), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(347), + [sym_integer] = ACTIONS(347), + [sym_float] = ACTIONS(347), + [sym_char] = ACTIONS(347), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_RBRACE] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_RBRACK] = ACTIONS(183), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_COMMA] = ACTIONS(183), + [sym_keyword] = ACTIONS(367), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_do] = ACTIONS(183), + [anon_sym_fn] = ACTIONS(379), + [anon_sym_LPAREN2] = ACTIONS(381), + [anon_sym_LBRACK2] = ACTIONS(181), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(181), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [38] = { + [sym__terminator] = STATE(72), [sym__expression] = STATE(1093), [sym_block] = STATE(1093), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), + [sym_identifier] = STATE(26), [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__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), [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_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), [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_operator_identifier] = STATE(5565), [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__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), [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_stab_clause] = STATE(4319), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), [sym_anonymous_function] = STATE(1093), - [aux_sym__terminator_repeat1] = STATE(1018), - [aux_sym__terminator_token1] = ACTIONS(61), - [anon_sym_SEMI] = ACTIONS(357), - [anon_sym_LPAREN] = ACTIONS(65), - [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(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(359), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [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(361), + [aux_sym__terminator_repeat1] = STATE(1006), + [aux_sym__terminator_token1] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(400), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(402), + [sym_integer] = ACTIONS(402), + [sym_float] = ACTIONS(402), + [sym_char] = ACTIONS(402), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(402), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(404), + [anon_sym_catch] = ACTIONS(404), + [anon_sym_else] = ACTIONS(404), + [anon_sym_end] = ACTIONS(404), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(404), [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), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [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(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(247), - [anon_sym_fn] = ACTIONS(406), - [anon_sym_LPAREN2] = ACTIONS(408), - [anon_sym_LBRACK2] = ACTIONS(245), + [39] = { + [sym__terminator] = STATE(68), + [sym__expression] = STATE(1087), + [sym_block] = STATE(1087), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1087), + [sym_nil] = STATE(1087), + [sym__atom] = STATE(1087), + [sym_quoted_atom] = STATE(1087), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1087), + [sym_charlist] = STATE(1087), + [sym_sigil] = STATE(1087), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1087), + [sym_tuple] = STATE(1087), + [sym_bitstring] = STATE(1087), + [sym_map] = STATE(1087), + [sym_unary_operator] = STATE(1087), + [sym_binary_operator] = STATE(1087), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1087), + [sym_call] = STATE(1087), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1087), + [sym_stab_clause] = STATE(4323), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1087), + [aux_sym__terminator_repeat1] = STATE(1006), + [aux_sym__terminator_token1] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(406), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(408), + [sym_integer] = ACTIONS(408), + [sym_float] = ACTIONS(408), + [sym_char] = ACTIONS(408), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(408), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(410), + [anon_sym_catch] = ACTIONS(410), + [anon_sym_else] = ACTIONS(410), + [anon_sym_end] = ACTIONS(410), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(410), [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(410), - [sym__not_in] = ACTIONS(297), - [sym__quoted_atom_start] = ACTIONS(412), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [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), + [40] = { + [sym__terminator] = STATE(69), + [sym__expression] = STATE(1089), + [sym_block] = STATE(1089), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1089), + [sym_nil] = STATE(1089), + [sym__atom] = STATE(1089), + [sym_quoted_atom] = STATE(1089), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1089), + [sym_charlist] = STATE(1089), + [sym_sigil] = STATE(1089), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1089), + [sym_tuple] = STATE(1089), + [sym_bitstring] = STATE(1089), + [sym_map] = STATE(1089), + [sym_unary_operator] = STATE(1089), + [sym_binary_operator] = STATE(1089), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1089), + [sym_call] = STATE(1089), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1089), + [sym_stab_clause] = STATE(4327), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1089), + [aux_sym__terminator_repeat1] = STATE(1006), + [aux_sym__terminator_token1] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(412), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(414), + [sym_integer] = ACTIONS(414), + [sym_float] = ACTIONS(414), + [sym_char] = ACTIONS(414), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(414), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(416), + [anon_sym_catch] = ACTIONS(416), + [anon_sym_else] = ACTIONS(416), + [anon_sym_end] = ACTIONS(416), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(416), [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), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [37] = { - [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(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(418), - [anon_sym_LPAREN] = ACTIONS(65), - [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), + [41] = { + [sym__expression] = STATE(2176), + [sym_block] = STATE(2176), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2176), + [sym_nil] = STATE(2176), + [sym__atom] = STATE(2176), + [sym_quoted_atom] = STATE(2176), + [sym__quoted_i_double] = STATE(1115), + [sym__quoted_i_single] = STATE(1116), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2176), + [sym_charlist] = STATE(2176), + [sym_sigil] = STATE(2176), + [sym_keywords] = STATE(1294), + [sym_pair] = STATE(2100), + [sym__keyword] = STATE(612), + [sym_quoted_keyword] = STATE(612), + [sym_list] = STATE(2176), + [sym_tuple] = STATE(2176), + [sym_bitstring] = STATE(2176), + [sym_map] = STATE(2176), + [sym_unary_operator] = STATE(2176), + [sym_binary_operator] = STATE(2176), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(2176), + [sym_call] = STATE(2176), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym__call_arguments_with_parentheses_immediate] = STATE(1077), + [sym__call_arguments_without_parentheses] = STATE(1094), + [sym_do_block] = STATE(1198), + [sym_access_call] = STATE(2176), + [sym_anonymous_function] = STATE(2176), + [aux_sym__terminator_token1] = ACTIONS(181), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(238), + [anon_sym_RPAREN] = ACTIONS(183), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), [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), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), [sym_atom] = ACTIONS(420), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [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(422), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(183), + [sym_keyword] = ACTIONS(424), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(428), + [anon_sym_DASH] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(207), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_do] = ACTIONS(183), + [anon_sym_fn] = ACTIONS(275), + [anon_sym_LPAREN2] = ACTIONS(277), + [anon_sym_LBRACK2] = ACTIONS(181), [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(181), [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), - }, - [38] = { - [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(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(424), - [anon_sym_LPAREN] = ACTIONS(65), - [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(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(426), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [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(428), - [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), - }, - [39] = { - [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(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(430), - [anon_sym_LPAREN] = ACTIONS(65), - [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(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(432), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [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(434), - [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), - }, - [40] = { - [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(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(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(189), - [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), - }, - [41] = { - [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(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), - [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(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(247), - [sym_keyword] = ACTIONS(446), - [anon_sym_LT_LT] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(280), - [anon_sym_AMP] = ACTIONS(448), - [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(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(245), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(457), - [sym__not_in] = ACTIONS(297), - [sym__quoted_atom_start] = ACTIONS(300), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(281), }, [42] = { - [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(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), - [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(247), - [anon_sym_fn] = ACTIONS(235), - [anon_sym_LPAREN2] = ACTIONS(237), - [anon_sym_LBRACK2] = ACTIONS(245), + [sym__expression] = STATE(2628), + [sym_block] = STATE(2628), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(2628), + [sym_nil] = STATE(2628), + [sym__atom] = STATE(2628), + [sym_quoted_atom] = STATE(2628), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2628), + [sym_charlist] = STATE(2628), + [sym_sigil] = STATE(2628), + [sym_keywords] = STATE(1471), + [sym_pair] = STATE(2203), + [sym__keyword] = STATE(874), + [sym_quoted_keyword] = STATE(874), + [sym_list] = STATE(2628), + [sym_tuple] = STATE(2628), + [sym_bitstring] = STATE(2628), + [sym_map] = STATE(2628), + [sym_unary_operator] = STATE(2628), + [sym_binary_operator] = STATE(2628), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2628), + [sym_call] = STATE(2628), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym__call_arguments_with_parentheses_immediate] = STATE(1086), + [sym__call_arguments_without_parentheses] = STATE(1138), + [sym_do_block] = STATE(1365), + [sym_access_call] = STATE(2628), + [sym_anonymous_function] = STATE(2628), + [aux_sym__terminator_token1] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(439), + [sym_integer] = ACTIONS(439), + [sym_float] = ACTIONS(439), + [sym_char] = ACTIONS(439), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_COMMA] = ACTIONS(285), + [sym_keyword] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(285), + [anon_sym_BSLASH_BSLASH] = ACTIONS(285), + [anon_sym_when] = ACTIONS(285), + [anon_sym_COLON_COLON] = ACTIONS(285), + [anon_sym_EQ_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(285), + [anon_sym_or] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP_AMP] = ACTIONS(285), + [anon_sym_and] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT_GT] = ACTIONS(285), + [anon_sym_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_PIPE_GT] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_CARET_CARET_CARET] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(285), + [anon_sym_LT_GT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_do] = ACTIONS(285), + [anon_sym_end] = ACTIONS(285), + [anon_sym_fn] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_LBRACK2] = ACTIONS(283), [sym_comment] = ACTIONS(5), - [sym__newline_before_do] = ACTIONS(245), + [sym__newline_before_do] = ACTIONS(283), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(480), - [sym__not_in] = ACTIONS(297), - [sym__quoted_atom_start] = ACTIONS(243), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(283), + [sym__quoted_atom_start] = ACTIONS(236), }, [43] = { - [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(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(239), - [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), - }, - [44] = { - [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(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(245), - [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), - }, - [45] = { - [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(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(191), - [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(545), - [sym__not_in] = ACTIONS(189), - [sym__quoted_atom_start] = ACTIONS(547), - }, - [47] = { - [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(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(305), - [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(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(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(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(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(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(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(592), - [anon_sym_fn] = ACTIONS(594), - [anon_sym_LPAREN2] = ACTIONS(596), - [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(189), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [56] = { - [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(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(600), - [sym__not_in] = ACTIONS(297), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [57] = { - [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(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(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(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(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(480), - [sym__not_in] = ACTIONS(297), - [sym__quoted_atom_start] = ACTIONS(243), - }, - [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), - [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(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(247), - [sym_keyword] = ACTIONS(446), - [anon_sym_LT_LT] = ACTIONS(278), - [anon_sym_PERCENT] = ACTIONS(280), - [anon_sym_AMP] = ACTIONS(448), - [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(271), - [anon_sym_do] = ACTIONS(305), - [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(457), - [sym__not_in] = ACTIONS(297), - [sym__quoted_atom_start] = ACTIONS(300), - }, - [64] = { - [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(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(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(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(297), - [sym__quoted_atom_start] = ACTIONS(602), - }, - [65] = { - [sym__expression] = STATE(1135), - [sym_block] = STATE(1135), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [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), - [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(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(662), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [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(664), - [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), - }, - [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(1134), - [sym_block] = STATE(1134), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [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), - [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(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(666), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [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(668), - [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), - }, - [68] = { - [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(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(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(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(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(682), - [sym__not_in] = ACTIONS(189), - [sym__quoted_atom_start] = ACTIONS(412), - }, - [69] = { - [sym__expression] = STATE(1101), - [sym_block] = STATE(1101), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [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), - [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(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(684), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [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(686), - [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), - }, - [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(1117), - [sym_block] = STATE(1117), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), - [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), - [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(694), - [sym_integer] = ACTIONS(694), - [sym_float] = ACTIONS(694), - [sym_char] = ACTIONS(694), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(694), - [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(93), - [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(105), - [anon_sym_DOT] = ACTIONS(39), - [anon_sym_after] = ACTIONS(696), - [anon_sym_catch] = ACTIONS(696), - [anon_sym_else] = ACTIONS(696), - [anon_sym_end] = ACTIONS(696), - [anon_sym_fn] = ACTIONS(115), - [anon_sym_rescue] = ACTIONS(696), - [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), - }, - [72] = { - [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(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(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(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(682), - [sym__not_in] = ACTIONS(189), - [sym__quoted_atom_start] = ACTIONS(412), - }, - [73] = { - [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), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(702), - [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(710), - [sym_integer] = ACTIONS(710), - [sym_float] = ACTIONS(710), - [sym_char] = ACTIONS(710), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(710), - [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), - }, - [74] = { - [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), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(726), - [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(728), - [sym_integer] = ACTIONS(728), - [sym_float] = ACTIONS(728), - [sym_char] = ACTIONS(728), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(728), - [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), - }, - [75] = { - [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), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(732), - [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(734), - [sym_integer] = ACTIONS(734), - [sym_float] = ACTIONS(734), - [sym_char] = ACTIONS(734), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(734), - [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), - }, - [76] = { - [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), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(738), - [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(740), - [sym_integer] = ACTIONS(740), - [sym_float] = ACTIONS(740), - [sym_char] = ACTIONS(740), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(740), - [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), - }, - [77] = { - [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), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(744), - [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(746), - [sym_integer] = ACTIONS(746), - [sym_float] = ACTIONS(746), - [sym_char] = ACTIONS(746), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(746), - [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), - }, - [78] = { - [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(748), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(750), - [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(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(752), - [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), - }, - [79] = { - [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(754), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(756), - [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(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(758), - [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), - }, - [80] = { - [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(748), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(750), - [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(760), - [sym_integer] = ACTIONS(760), - [sym_float] = ACTIONS(760), - [sym_char] = ACTIONS(760), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(760), - [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(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(730), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(762), - [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(764), - [sym_integer] = ACTIONS(764), - [sym_float] = ACTIONS(764), - [sym_char] = ACTIONS(764), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(764), - [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), - }, - [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), - [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(770), - [sym_integer] = ACTIONS(770), - [sym_float] = ACTIONS(770), - [sym_char] = ACTIONS(770), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(770), - [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), - }, - [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(754), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(756), - [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(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(772), - [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), - }, - [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(774), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(776), - [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(778), - [sym_integer] = ACTIONS(778), - [sym_float] = ACTIONS(778), - [sym_char] = ACTIONS(778), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(778), - [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), - }, - [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(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), - [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(784), - [sym_integer] = ACTIONS(784), - [sym_float] = ACTIONS(784), - [sym_char] = ACTIONS(784), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(784), - [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), - }, - [87] = { - [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(786), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(788), - [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(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(790), - [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), - }, - [88] = { - [sym__terminator] = STATE(113), - [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(724), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(782), - [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(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(792), - [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), - }, - [89] = { - [sym__terminator] = STATE(120), - [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(786), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(788), - [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(794), - [sym_integer] = ACTIONS(794), - [sym_float] = ACTIONS(794), - [sym_char] = ACTIONS(794), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(794), - [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), - }, - [90] = { - [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(700), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(702), - [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(796), - [sym_integer] = ACTIONS(796), - [sym_float] = ACTIONS(796), - [sym_char] = ACTIONS(796), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(796), - [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), - }, - [91] = { - [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(736), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(738), - [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(798), - [sym_integer] = ACTIONS(798), - [sym_float] = ACTIONS(798), - [sym_char] = ACTIONS(798), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(798), - [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), - }, - [92] = { - [sym__terminator] = STATE(117), - [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(742), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(744), - [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(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(800), - [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), - }, - [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(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(802), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(804), - [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(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(806), - [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), - }, - [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(808), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(810), - [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(812), - [sym_integer] = ACTIONS(812), - [sym_float] = ACTIONS(812), - [sym_char] = ACTIONS(812), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(812), - [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), - }, - [96] = { - [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(774), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(776), - [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(814), - [sym_integer] = ACTIONS(814), - [sym_float] = ACTIONS(814), - [sym_char] = ACTIONS(814), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(814), - [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), - }, - [97] = { - [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(730), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(732), - [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(816), - [sym_integer] = ACTIONS(816), - [sym_float] = ACTIONS(816), - [sym_char] = ACTIONS(816), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(816), - [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), - }, - [98] = { - [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(808), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(810), - [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(818), - [sym_integer] = ACTIONS(818), - [sym_float] = ACTIONS(818), - [sym_char] = ACTIONS(818), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(818), - [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), - }, - [99] = { - [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(802), - [anon_sym_LPAREN] = ACTIONS(65), - [anon_sym_RPAREN] = ACTIONS(804), - [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(820), - [sym_integer] = ACTIONS(820), - [sym_float] = ACTIONS(820), - [sym_char] = ACTIONS(820), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(820), - [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), - }, - [100] = { - [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(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(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), - [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), - }, - [101] = { - [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(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(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), - [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), - }, - [102] = { - [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(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(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), - [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), - }, - [103] = { - [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(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(410), - [sym__not_in] = ACTIONS(297), - [sym__quoted_atom_start] = ACTIONS(412), - }, - [104] = { - [sym__terminator] = STATE(133), - [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(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), - [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), - }, - [105] = { - [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(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(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), - [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), - }, - [106] = { - [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(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(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), - [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), - }, - [107] = { - [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(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(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), - [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), - }, - [108] = { - [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(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(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), - [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), - }, - [109] = { - [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(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(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), - [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), - }, - [110] = { - [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(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(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), - [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), - }, - [111] = { - [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(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(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), - [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), - }, - [113] = { - [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), - [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(896), - [sym_integer] = ACTIONS(896), - [sym_float] = ACTIONS(896), - [sym_char] = ACTIONS(896), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(896), - [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), - }, - [114] = { - [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), - [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(900), - [sym_integer] = ACTIONS(900), - [sym_float] = ACTIONS(900), - [sym_char] = ACTIONS(900), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(900), - [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), - }, - [115] = { - [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), - [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(904), - [sym_integer] = ACTIONS(904), - [sym_float] = ACTIONS(904), - [sym_char] = ACTIONS(904), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(904), - [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), - }, - [116] = { - [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), - [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(908), - [sym_integer] = ACTIONS(908), - [sym_float] = ACTIONS(908), - [sym_char] = ACTIONS(908), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(908), - [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), - }, - [117] = { - [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), - [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(912), - [sym_integer] = ACTIONS(912), - [sym_float] = ACTIONS(912), - [sym_char] = ACTIONS(912), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(912), - [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), - }, - [118] = { - [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), - [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(916), - [sym_integer] = ACTIONS(916), - [sym_float] = ACTIONS(916), - [sym_char] = ACTIONS(916), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(916), - [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), - }, - [119] = { - [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), - [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(920), - [sym_integer] = ACTIONS(920), - [sym_float] = ACTIONS(920), - [sym_char] = ACTIONS(920), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(920), - [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), - }, - [120] = { - [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), - [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(924), - [sym_integer] = ACTIONS(924), - [sym_float] = ACTIONS(924), - [sym_char] = ACTIONS(924), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(924), - [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), - }, - [121] = { - [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), - [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(928), - [sym_integer] = ACTIONS(928), - [sym_float] = ACTIONS(928), - [sym_char] = ACTIONS(928), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(928), - [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), - }, - [122] = { - [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), - [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(932), - [sym_integer] = ACTIONS(932), - [sym_float] = ACTIONS(932), - [sym_char] = ACTIONS(932), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(932), - [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), - }, - [123] = { - [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), - [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(936), - [sym_integer] = ACTIONS(936), - [sym_float] = ACTIONS(936), - [sym_char] = ACTIONS(936), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(936), - [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), - }, - [124] = { - [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), - [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(940), - [sym_integer] = ACTIONS(940), - [sym_float] = ACTIONS(940), - [sym_char] = ACTIONS(940), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(940), - [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), - }, - [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(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(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), - [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), - }, - [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(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(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), - [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), - }, - [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(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(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), - [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), - }, - [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(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(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), - [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), - }, - [129] = { - [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(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), - [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), - }, - [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(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(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), - [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), - }, - [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(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(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), - [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), - }, - [132] = { - [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(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), - [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), - }, - [133] = { - [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(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), - [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), - }, - [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(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(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), - [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), - }, - [135] = { - [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(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), - [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(720), - [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(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(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), - [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), - }, - [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(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), - [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), - }, - [140] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(976), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [141] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(984), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [142] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(986), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [143] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(988), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [144] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(990), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [145] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(992), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [146] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(994), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [147] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(996), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [148] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(998), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [149] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1000), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [150] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1002), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [151] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1004), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [152] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1006), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [153] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1008), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [154] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1010), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [155] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1012), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [156] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1014), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [157] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1016), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [158] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1018), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [159] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1020), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [160] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1022), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [161] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1024), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [162] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1026), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [163] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1028), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [164] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1030), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [165] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1032), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [166] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1034), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [167] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1036), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [168] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1038), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [169] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1040), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [170] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1042), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [171] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1044), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [172] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1046), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [173] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1048), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [174] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1050), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [175] = { - [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_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), - [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(107), - [anon_sym_catch] = ACTIONS(109), - [anon_sym_else] = ACTIONS(111), - [anon_sym_end] = ACTIONS(1052), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(117), - [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), - }, - [176] = { - [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(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), - [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(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(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), - [anon_sym_end] = ACTIONS(1065), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(1065), - [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), - }, - [178] = { - [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), - [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(1087), - [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), - }, - [179] = { - [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), - [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(1111), - [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), - }, - [180] = { - [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), - [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), - }, - [181] = { - [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), - [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(1117), - [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), - }, - [182] = { - [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), - [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(1121), - [anon_sym_LBRACK] = ACTIONS(1089), - [anon_sym_RBRACK] = ACTIONS(1121), - [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(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(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(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), - }, - [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(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), - [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(1127), - [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), - }, - [186] = { - [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), - [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(1129), - [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), - }, - [187] = { - [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), - [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(1131), - [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), - }, - [188] = { - [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(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(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), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_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), - }, - [189] = { - [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), - [anon_sym_RPAREN] = ACTIONS(1181), - [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), - }, - [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), - [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), - }, - [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(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(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), - }, - [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), - [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(1189), - [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), - }, - [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(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), - [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), - }, - [196] = { - [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), - [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), - }, - [197] = { - [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), - [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), - }, - [198] = { - [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), - [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(1199), - [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), - }, - [199] = { - [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), - [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), - [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), - }, - [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), - [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(1205), - [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), - }, - [202] = { - [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), - [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(1207), - [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), - }, - [203] = { - [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), - [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), - }, - [204] = { - [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), - [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(1211), - [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), - }, - [205] = { - [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), - [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(1213), - [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), - }, - [206] = { - [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), - [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(1215), - [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), - }, - [207] = { - [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(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(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), - }, - [208] = { - [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), - [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(1219), - [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), - }, - [209] = { - [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), - [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(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_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), - }, - [212] = { - [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(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(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), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_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), - }, - [213] = { - [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), - [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), - }, - [214] = { - [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(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(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), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_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), - }, - [215] = { - [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), - [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(1233), - [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), - }, - [216] = { - [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), - [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(1235), - [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), - }, - [217] = { - [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), - [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(1237), - [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), - }, - [218] = { - [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), - [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(1239), - [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), - }, - [219] = { - [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), - [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(1241), - [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), - }, - [220] = { - [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(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(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), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_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), - }, - [221] = { - [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), - [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(1245), - [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), - }, - [222] = { - [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), - [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), - }, - [223] = { - [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), - [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(1249), - [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), - }, - [224] = { - [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), - [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(1251), - [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), - }, - [225] = { - [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), - [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(1253), - [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), - }, - [226] = { - [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), - [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(1255), - [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), - }, - [227] = { - [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), - [anon_sym_RPAREN] = ACTIONS(1257), - [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), - }, - [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(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), - [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(1261), - [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), - }, - [230] = { - [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), - [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(1263), - [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), - }, - [231] = { - [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(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(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), - }, - [232] = { - [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), - [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), - [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), - }, - [234] = { - [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(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(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), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_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), - }, - [235] = { - [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), - [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(1273), - [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), - }, - [236] = { - [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), - [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(1275), - [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), - }, - [237] = { - [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), - [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(1277), - [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), - }, - [238] = { - [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), - [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(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_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), - }, - [241] = { - [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), - [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(1285), - [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), - }, - [242] = { - [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(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(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), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_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), - }, - [243] = { - [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), - [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), - }, - [244] = { - [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), - [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(1291), - [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), - }, - [245] = { - [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), - [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(1293), - [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), - }, - [246] = { - [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), - [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(1295), - [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), - }, - [247] = { - [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), - [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(1297), - [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), - }, - [248] = { - [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), - [anon_sym_RPAREN] = ACTIONS(1299), - [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), - }, - [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), - [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(1301), - [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), - }, - [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(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), - [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(1305), - [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), - }, - [252] = { - [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), - [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), - }, - [253] = { - [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(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(1309), - [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), - }, - [254] = { - [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(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(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), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_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), - }, - [255] = { - [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), - [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(1313), - [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), - }, - [256] = { - [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), - [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(1315), - [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), - }, - [257] = { - [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(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(1317), - [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), - }, - [258] = { - [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(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(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), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_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), - }, - [259] = { - [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(1321), - [anon_sym_SEMI] = ACTIONS(1323), - [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_after] = ACTIONS(1323), - [anon_sym_catch] = ACTIONS(1323), - [anon_sym_else] = ACTIONS(1323), - [anon_sym_end] = ACTIONS(1323), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(1323), - [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), - }, - [260] = { - [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(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), - [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_after] = ACTIONS(1329), - [anon_sym_catch] = ACTIONS(1329), - [anon_sym_else] = ACTIONS(1329), - [anon_sym_end] = ACTIONS(1329), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(1329), - [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), - }, - [262] = { - [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(1331), - [anon_sym_SEMI] = ACTIONS(1333), - [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_after] = ACTIONS(1333), - [anon_sym_catch] = ACTIONS(1333), - [anon_sym_else] = ACTIONS(1333), - [anon_sym_end] = ACTIONS(1333), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(1333), - [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), - }, - [263] = { - [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(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), - [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), - }, - [264] = { - [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(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(1339), - [sym_integer] = ACTIONS(1339), - [sym_float] = ACTIONS(1339), - [sym_char] = ACTIONS(1339), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(1339), - [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), - }, - [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(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(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(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), - }, - [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(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(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), - [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), - }, - [283] = { - [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(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), - }, - [284] = { - [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(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(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), - }, - [285] = { - [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(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(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), - [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), - }, - [286] = { - [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(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(1395), - [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), - }, - [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(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(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), - }, - [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(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(617), - [anon_sym_false] = ACTIONS(617), - [anon_sym_nil] = ACTIONS(619), - [sym_atom] = ACTIONS(1397), - [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), - }, - [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), - [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), - [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(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), - }, - [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(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(255), - [anon_sym_false] = ACTIONS(255), - [anon_sym_nil] = ACTIONS(257), - [sym_atom] = ACTIONS(1403), - [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), - }, - [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(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(255), - [anon_sym_false] = ACTIONS(255), - [anon_sym_nil] = ACTIONS(257), - [sym_atom] = ACTIONS(1405), - [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), - }, - [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(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(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(1407), - [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), - }, - [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(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(1411), - [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), - }, - [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(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(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(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(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(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), - [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), - }, - [315] = { - [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(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), - }, - [316] = { - [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(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(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), - }, - [317] = { - [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(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(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(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), - }, - [319] = { - [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(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(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), - }, - [320] = { - [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(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(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), - }, - [321] = { - [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(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(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), - [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), - }, - [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(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(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_end] = ACTIONS(1065), - [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), - }, - [329] = { - [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(1491), - [anon_sym_catch] = ACTIONS(1491), - [anon_sym_else] = ACTIONS(1491), - [anon_sym_end] = ACTIONS(1491), - [anon_sym_fn] = ACTIONS(978), - [anon_sym_rescue] = ACTIONS(1491), - [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), - }, - [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(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(1143), - [anon_sym_false] = ACTIONS(1143), - [anon_sym_nil] = ACTIONS(1145), - [sym_atom] = ACTIONS(1493), - [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), - }, - [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(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(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(1497), - [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), - }, - [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(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(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), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_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), - }, - [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__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(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(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), - }, - [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(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(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), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_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), - }, - [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(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(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(980), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [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(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), - }, - [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(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(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(980), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(982), - }, - [345] = { - [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(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), - }, - [346] = { - [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), - [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), - [sym_char] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1531), - [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(1323), - [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), - }, - [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(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), - [sym_char] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1531), - [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(1333), - [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), - }, - [350] = { - [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(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), - [sym_char] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1531), - [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(1329), - [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), - }, - [351] = { - [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(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(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), - }, - [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(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(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(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(1547), - [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(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), - }, - [359] = { - [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(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(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), - }, - [360] = { - [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(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(1573), - [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), - }, - [363] = { - [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(1575), - [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), - }, - [364] = { - [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(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(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(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), - }, - [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(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(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), - [anon_sym_COLON_COLON] = ACTIONS(39), - [anon_sym_EQ] = ACTIONS(39), - [anon_sym_PIPE_PIPE] = ACTIONS(39), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(39), - [anon_sym_or] = ACTIONS(39), - [anon_sym_AMP_AMP] = ACTIONS(39), - [anon_sym_AMP_AMP_AMP] = ACTIONS(39), - [anon_sym_and] = ACTIONS(39), - [anon_sym_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ] = ACTIONS(39), - [anon_sym_EQ_TILDE] = ACTIONS(39), - [anon_sym_EQ_EQ_EQ] = ACTIONS(39), - [anon_sym_BANG_EQ_EQ] = ACTIONS(39), - [anon_sym_LT_EQ] = ACTIONS(39), - [anon_sym_GT_EQ] = ACTIONS(39), - [anon_sym_PIPE_GT] = ACTIONS(39), - [anon_sym_LT_LT_LT] = ACTIONS(39), - [anon_sym_GT_GT_GT] = ACTIONS(39), - [anon_sym_LT_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT_GT] = ACTIONS(39), - [anon_sym_LT_TILDE] = ACTIONS(39), - [anon_sym_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_TILDE_GT] = ACTIONS(39), - [anon_sym_LT_PIPE_GT] = ACTIONS(39), - [anon_sym_in] = ACTIONS(39), - [anon_sym_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH] = ACTIONS(39), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(39), - [anon_sym_DASH_DASH_DASH] = ACTIONS(39), - [anon_sym_DOT_DOT] = ACTIONS(39), - [anon_sym_LT_GT] = ACTIONS(39), - [anon_sym_STAR] = ACTIONS(39), - [anon_sym_STAR_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), - }, - [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), - [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), - }, - [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(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(1647), - [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), - }, - [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(1651), - [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), - }, - [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(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(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(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(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), - [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), - }, - [396] = { - [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(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(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), - }, - [397] = { - [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(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(1661), - [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), - }, - [398] = { - [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(1665), - [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), - }, - [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(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(1661), - [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), - }, - [401] = { - [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(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(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), - }, - [402] = { - [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(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), - }, - [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(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(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(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), - }, - [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(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(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(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), - }, - [406] = { - [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(1683), - [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(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(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(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), - }, - [407] = { - [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), - [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), - }, - [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(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(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), - }, - [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(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(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), - }, - [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(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(1703), - [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), - }, - [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(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(1683), - [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(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(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), - }, - [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(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(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(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(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), - }, - [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(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(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(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), - }, - [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(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(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), - }, - [422] = { - [sym__expression] = STATE(2699), - [sym_block] = STATE(2699), - [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(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), - [sym_list] = STATE(2699), - [sym_tuple] = STATE(2699), - [sym_bitstring] = STATE(2699), - [sym_map] = STATE(2699), - [sym_unary_operator] = STATE(2699), - [sym_binary_operator] = STATE(2699), - [sym_operator_identifier] = STATE(5655), - [sym_dot] = STATE(2699), - [sym_call] = STATE(2699), - [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(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(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), - }, - [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(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), - [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), - [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), - }, - [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(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(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), - [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), - }, - [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(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(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1795), - [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), - }, - [463] = { - [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(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(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1797), - [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), - }, - [464] = { - [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(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(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1799), - [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), - }, - [465] = { - [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(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(617), - [anon_sym_false] = ACTIONS(617), - [anon_sym_nil] = ACTIONS(619), - [sym_atom] = ACTIONS(1801), - [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), - }, - [466] = { - [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(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(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1803), - [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), - }, - [467] = { - [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(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(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1805), - [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), - }, - [468] = { - [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(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), - [sym_char] = ACTIONS(1807), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1807), - [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), - }, - [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(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(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(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(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), - }, - [471] = { - [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(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), - [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), - }, - [472] = { - [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(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), - [sym_char] = ACTIONS(1811), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1811), - [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), - }, - [473] = { - [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(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(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(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), - }, - [474] = { [sym__expression] = STATE(2331), [sym_block] = STATE(2331), - [sym__identifier] = STATE(42), - [sym_identifier] = STATE(42), - [sym_special_identifier] = STATE(42), + [sym_identifier] = STATE(43), [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__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), [sym_string] = STATE(2331), [sym_charlist] = STATE(2331), [sym_sigil] = STATE(2331), + [sym_keywords] = STATE(1471), + [sym_pair] = STATE(2375), + [sym__keyword] = STATE(522), + [sym_quoted_keyword] = STATE(522), [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_operator_identifier] = STATE(5631), [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__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), [sym__remote_dot] = STATE(49), - [sym__anonymous_call] = STATE(1086), - [sym__anonymous_dot] = STATE(5507), - [sym__double_call] = STATE(1235), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym__call_arguments_with_parentheses_immediate] = STATE(1102), + [sym__call_arguments_without_parentheses] = STATE(1131), + [sym_do_block] = STATE(1360), [sym_access_call] = STATE(2331), [sym_anonymous_function] = STATE(2331), + [aux_sym__terminator_token1] = ACTIONS(181), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(183), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(453), + [sym_integer] = ACTIONS(453), + [sym_float] = ACTIONS(453), + [sym_char] = ACTIONS(453), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(453), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_COMMA] = ACTIONS(183), + [sym_keyword] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_do] = ACTIONS(183), + [anon_sym_fn] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_LBRACK2] = ACTIONS(181), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(181), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [44] = { + [sym__expression] = STATE(2212), + [sym_block] = STATE(2212), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2212), + [sym_nil] = STATE(2212), + [sym__atom] = STATE(2212), + [sym_quoted_atom] = STATE(2212), + [sym__quoted_i_double] = STATE(2630), + [sym__quoted_i_single] = STATE(2641), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(2212), + [sym_charlist] = STATE(2212), + [sym_sigil] = STATE(2212), + [sym_keywords] = STATE(2695), + [sym_pair] = STATE(2263), + [sym__keyword] = STATE(473), + [sym_quoted_keyword] = STATE(473), + [sym_list] = STATE(2212), + [sym_tuple] = STATE(2212), + [sym_bitstring] = STATE(2212), + [sym_map] = STATE(2212), + [sym_unary_operator] = STATE(2212), + [sym_binary_operator] = STATE(2212), + [sym_operator_identifier] = STATE(5584), + [sym_dot] = STATE(2212), + [sym_call] = STATE(2212), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym__call_arguments_with_parentheses_immediate] = STATE(2029), + [sym__call_arguments_without_parentheses] = STATE(2337), + [sym_do_block] = STATE(2902), + [sym_access_call] = STATE(2212), + [sym_anonymous_function] = STATE(2212), + [ts_builtin_sym_end] = ACTIONS(283), + [aux_sym__terminator_token1] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(474), + [sym_integer] = ACTIONS(474), + [sym_float] = ACTIONS(474), + [sym_char] = ACTIONS(474), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_COMMA] = ACTIONS(285), + [sym_keyword] = ACTIONS(494), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(285), + [anon_sym_BSLASH_BSLASH] = ACTIONS(285), + [anon_sym_when] = ACTIONS(285), + [anon_sym_COLON_COLON] = ACTIONS(285), + [anon_sym_EQ_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(285), + [anon_sym_or] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP_AMP] = ACTIONS(285), + [anon_sym_and] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT_GT] = ACTIONS(285), + [anon_sym_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_PIPE_GT] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_CARET_CARET_CARET] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(285), + [anon_sym_LT_GT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_do] = ACTIONS(285), + [anon_sym_fn] = ACTIONS(506), + [anon_sym_LPAREN2] = ACTIONS(508), + [anon_sym_LBRACK2] = ACTIONS(283), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(283), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(283), + [sym__quoted_atom_start] = ACTIONS(512), + }, + [45] = { + [sym__expression] = STATE(2176), + [sym_block] = STATE(2176), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2176), + [sym_nil] = STATE(2176), + [sym__atom] = STATE(2176), + [sym_quoted_atom] = STATE(2176), + [sym__quoted_i_double] = STATE(1115), + [sym__quoted_i_single] = STATE(1116), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2176), + [sym_charlist] = STATE(2176), + [sym_sigil] = STATE(2176), + [sym_keywords] = STATE(1294), + [sym_pair] = STATE(2100), + [sym__keyword] = STATE(612), + [sym_quoted_keyword] = STATE(612), + [sym_list] = STATE(2176), + [sym_tuple] = STATE(2176), + [sym_bitstring] = STATE(2176), + [sym_map] = STATE(2176), + [sym_unary_operator] = STATE(2176), + [sym_binary_operator] = STATE(2176), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(2176), + [sym_call] = STATE(2176), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym__call_arguments_with_parentheses_immediate] = STATE(1073), + [sym__call_arguments_without_parentheses] = STATE(1090), + [sym_do_block] = STATE(1201), + [sym_access_call] = STATE(2176), + [sym_anonymous_function] = STATE(2176), + [aux_sym__terminator_token1] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(238), + [anon_sym_RPAREN] = ACTIONS(285), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(420), + [sym_integer] = ACTIONS(420), + [sym_float] = ACTIONS(420), + [sym_char] = ACTIONS(420), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(420), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(285), + [sym_keyword] = ACTIONS(424), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(285), + [anon_sym_BSLASH_BSLASH] = ACTIONS(285), + [anon_sym_when] = ACTIONS(285), + [anon_sym_COLON_COLON] = ACTIONS(285), + [anon_sym_EQ_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(285), + [anon_sym_or] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP_AMP] = ACTIONS(285), + [anon_sym_and] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT_GT] = ACTIONS(285), + [anon_sym_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_PIPE_GT] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_CARET_CARET_CARET] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(285), + [anon_sym_LT_GT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(285), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_do] = ACTIONS(285), + [anon_sym_fn] = ACTIONS(275), + [anon_sym_LPAREN2] = ACTIONS(277), + [anon_sym_LBRACK2] = ACTIONS(283), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(283), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(283), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [46] = { + [sym__expression] = STATE(2628), + [sym_block] = STATE(2628), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(2628), + [sym_nil] = STATE(2628), + [sym__atom] = STATE(2628), + [sym_quoted_atom] = STATE(2628), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2628), + [sym_charlist] = STATE(2628), + [sym_sigil] = STATE(2628), + [sym_keywords] = STATE(1471), + [sym_pair] = STATE(2203), + [sym__keyword] = STATE(874), + [sym_quoted_keyword] = STATE(874), + [sym_list] = STATE(2628), + [sym_tuple] = STATE(2628), + [sym_bitstring] = STATE(2628), + [sym_map] = STATE(2628), + [sym_unary_operator] = STATE(2628), + [sym_binary_operator] = STATE(2628), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2628), + [sym_call] = STATE(2628), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym__call_arguments_with_parentheses_immediate] = STATE(1091), + [sym__call_arguments_without_parentheses] = STATE(1136), + [sym_do_block] = STATE(1810), + [sym_access_call] = STATE(2628), + [sym_anonymous_function] = STATE(2628), + [aux_sym__terminator_token1] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(439), + [sym_integer] = ACTIONS(439), + [sym_float] = ACTIONS(439), + [sym_char] = ACTIONS(439), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_COMMA] = ACTIONS(285), + [sym_keyword] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(285), + [anon_sym_BSLASH_BSLASH] = ACTIONS(285), + [anon_sym_when] = ACTIONS(285), + [anon_sym_COLON_COLON] = ACTIONS(285), + [anon_sym_EQ_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(285), + [anon_sym_or] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP_AMP] = ACTIONS(285), + [anon_sym_and] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT_GT] = ACTIONS(285), + [anon_sym_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_PIPE_GT] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_CARET_CARET_CARET] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(285), + [anon_sym_LT_GT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_do] = ACTIONS(291), + [anon_sym_end] = ACTIONS(285), + [anon_sym_fn] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_LBRACK2] = ACTIONS(283), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(293), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(283), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [47] = { + [sym__expression] = STATE(2212), + [sym_block] = STATE(2212), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2212), + [sym_nil] = STATE(2212), + [sym__atom] = STATE(2212), + [sym_quoted_atom] = STATE(2212), + [sym__quoted_i_double] = STATE(2630), + [sym__quoted_i_single] = STATE(2641), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(2212), + [sym_charlist] = STATE(2212), + [sym_sigil] = STATE(2212), + [sym_keywords] = STATE(2695), + [sym_pair] = STATE(2263), + [sym__keyword] = STATE(473), + [sym_quoted_keyword] = STATE(473), + [sym_list] = STATE(2212), + [sym_tuple] = STATE(2212), + [sym_bitstring] = STATE(2212), + [sym_map] = STATE(2212), + [sym_unary_operator] = STATE(2212), + [sym_binary_operator] = STATE(2212), + [sym_operator_identifier] = STATE(5584), + [sym_dot] = STATE(2212), + [sym_call] = STATE(2212), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym__call_arguments_with_parentheses_immediate] = STATE(2197), + [sym__call_arguments_without_parentheses] = STATE(2221), + [sym_do_block] = STATE(3843), + [sym_access_call] = STATE(2212), + [sym_anonymous_function] = STATE(2212), + [ts_builtin_sym_end] = ACTIONS(283), + [aux_sym__terminator_token1] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(474), + [sym_integer] = ACTIONS(474), + [sym_float] = ACTIONS(474), + [sym_char] = ACTIONS(474), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_COMMA] = ACTIONS(285), + [sym_keyword] = ACTIONS(494), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(285), + [anon_sym_BSLASH_BSLASH] = ACTIONS(285), + [anon_sym_when] = ACTIONS(285), + [anon_sym_COLON_COLON] = ACTIONS(285), + [anon_sym_EQ_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(285), + [anon_sym_or] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP_AMP] = ACTIONS(285), + [anon_sym_and] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT_GT] = ACTIONS(285), + [anon_sym_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_PIPE_GT] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_CARET_CARET_CARET] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(285), + [anon_sym_LT_GT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_do] = ACTIONS(514), + [anon_sym_fn] = ACTIONS(506), + [anon_sym_LPAREN2] = ACTIONS(508), + [anon_sym_LBRACK2] = ACTIONS(283), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(516), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(283), + [sym__quoted_atom_start] = ACTIONS(512), + }, + [48] = { + [sym__expression] = STATE(2098), + [sym_block] = STATE(2098), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2098), + [sym_nil] = STATE(2098), + [sym__atom] = STATE(2098), + [sym_quoted_atom] = STATE(2098), + [sym__quoted_i_double] = STATE(1770), + [sym__quoted_i_single] = STATE(1771), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2098), + [sym_charlist] = STATE(2098), + [sym_sigil] = STATE(2098), + [sym_keywords] = STATE(2097), + [sym_pair] = STATE(2088), + [sym__keyword] = STATE(510), + [sym_quoted_keyword] = STATE(510), + [sym_list] = STATE(2098), + [sym_tuple] = STATE(2098), + [sym_bitstring] = STATE(2098), + [sym_map] = STATE(2098), + [sym_unary_operator] = STATE(2098), + [sym_binary_operator] = STATE(2098), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2098), + [sym_call] = STATE(2098), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym__call_arguments_with_parentheses_immediate] = STATE(1686), + [sym__call_arguments_without_parentheses] = STATE(1857), + [sym_do_block] = STATE(3155), + [sym_access_call] = STATE(2098), + [sym_anonymous_function] = STATE(2098), [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(1815), - [sym_integer] = ACTIONS(1815), - [sym_float] = ACTIONS(1815), - [sym_char] = ACTIONS(1815), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1815), - [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), + [anon_sym_LPAREN] = ACTIONS(343), + [anon_sym_RPAREN] = ACTIONS(183), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(347), + [sym_integer] = ACTIONS(347), + [sym_float] = ACTIONS(347), + [sym_char] = ACTIONS(347), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_RBRACE] = ACTIONS(183), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_RBRACK] = ACTIONS(183), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_COMMA] = ACTIONS(183), + [sym_keyword] = ACTIONS(367), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_do] = ACTIONS(387), + [anon_sym_fn] = ACTIONS(379), + [anon_sym_LPAREN2] = ACTIONS(381), + [anon_sym_LBRACK2] = ACTIONS(181), [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), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(385), }, - [475] = { - [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), + [49] = { + [sym__expression] = STATE(2331), + [sym_block] = STATE(2331), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2331), + [sym_nil] = STATE(2331), + [sym__atom] = STATE(2331), + [sym_quoted_atom] = STATE(2331), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2331), + [sym_charlist] = STATE(2331), + [sym_sigil] = STATE(2331), + [sym_keywords] = STATE(1471), + [sym_pair] = STATE(2375), + [sym__keyword] = STATE(522), + [sym_quoted_keyword] = STATE(522), + [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(5631), + [sym_dot] = STATE(2331), + [sym_call] = STATE(2331), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), [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(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), - [sym_char] = ACTIONS(1817), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1817), - [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__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym__call_arguments_with_parentheses_immediate] = STATE(1086), + [sym__call_arguments_without_parentheses] = STATE(1138), + [sym_do_block] = STATE(1365), + [sym_access_call] = STATE(2331), + [sym_anonymous_function] = STATE(2331), + [aux_sym__terminator_token1] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(285), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(453), + [sym_integer] = ACTIONS(453), + [sym_float] = ACTIONS(453), + [sym_char] = ACTIONS(453), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(453), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_COMMA] = ACTIONS(285), + [sym_keyword] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(285), + [anon_sym_BSLASH_BSLASH] = ACTIONS(285), + [anon_sym_when] = ACTIONS(285), + [anon_sym_COLON_COLON] = ACTIONS(285), + [anon_sym_EQ_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(285), + [anon_sym_or] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP_AMP] = ACTIONS(285), + [anon_sym_and] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT_GT] = ACTIONS(285), + [anon_sym_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_PIPE_GT] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_CARET_CARET_CARET] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(285), + [anon_sym_LT_GT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_do] = ACTIONS(285), + [anon_sym_fn] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_LBRACK2] = ACTIONS(283), [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(283), [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), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(283), + [sym__quoted_atom_start] = ACTIONS(236), }, - [476] = { - [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), + [50] = { + [sym__expression] = STATE(2212), + [sym_block] = STATE(2212), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2212), + [sym_nil] = STATE(2212), + [sym__atom] = STATE(2212), + [sym_quoted_atom] = STATE(2212), + [sym__quoted_i_double] = STATE(2630), + [sym__quoted_i_single] = STATE(2641), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(2212), + [sym_charlist] = STATE(2212), + [sym_sigil] = STATE(2212), + [sym_keywords] = STATE(2695), + [sym_pair] = STATE(2263), + [sym__keyword] = STATE(473), + [sym_quoted_keyword] = STATE(473), + [sym_list] = STATE(2212), + [sym_tuple] = STATE(2212), + [sym_bitstring] = STATE(2212), + [sym_map] = STATE(2212), + [sym_unary_operator] = STATE(2212), + [sym_binary_operator] = STATE(2212), + [sym_operator_identifier] = STATE(5584), + [sym_dot] = STATE(2212), + [sym_call] = STATE(2212), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym__call_arguments_with_parentheses_immediate] = STATE(2034), + [sym__call_arguments_without_parentheses] = STATE(2333), + [sym_do_block] = STATE(2873), + [sym_access_call] = STATE(2212), + [sym_anonymous_function] = STATE(2212), + [ts_builtin_sym_end] = ACTIONS(181), + [aux_sym__terminator_token1] = ACTIONS(181), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(474), + [sym_integer] = ACTIONS(474), + [sym_float] = ACTIONS(474), + [sym_char] = ACTIONS(474), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_COMMA] = ACTIONS(183), + [sym_keyword] = ACTIONS(494), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_do] = ACTIONS(183), + [anon_sym_fn] = ACTIONS(506), + [anon_sym_LPAREN2] = ACTIONS(508), + [anon_sym_LBRACK2] = ACTIONS(181), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(181), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(512), + }, + [51] = { + [sym__expression] = STATE(2176), + [sym_block] = STATE(2176), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2176), + [sym_nil] = STATE(2176), + [sym__atom] = STATE(2176), + [sym_quoted_atom] = STATE(2176), + [sym__quoted_i_double] = STATE(1115), + [sym__quoted_i_single] = STATE(1116), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2176), + [sym_charlist] = STATE(2176), + [sym_sigil] = STATE(2176), + [sym_keywords] = STATE(1294), + [sym_pair] = STATE(2100), + [sym__keyword] = STATE(612), + [sym_quoted_keyword] = STATE(612), + [sym_list] = STATE(2176), + [sym_tuple] = STATE(2176), + [sym_bitstring] = STATE(2176), + [sym_map] = STATE(2176), + [sym_unary_operator] = STATE(2176), + [sym_binary_operator] = STATE(2176), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(2176), + [sym_call] = STATE(2176), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym__call_arguments_with_parentheses_immediate] = STATE(1076), + [sym__call_arguments_without_parentheses] = STATE(1100), + [sym_do_block] = STATE(1584), + [sym_access_call] = STATE(2176), + [sym_anonymous_function] = STATE(2176), + [aux_sym__terminator_token1] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(238), + [anon_sym_RPAREN] = ACTIONS(285), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(420), + [sym_integer] = ACTIONS(420), + [sym_float] = ACTIONS(420), + [sym_char] = ACTIONS(420), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(420), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(285), + [sym_keyword] = ACTIONS(424), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(285), + [anon_sym_BSLASH_BSLASH] = ACTIONS(285), + [anon_sym_when] = ACTIONS(285), + [anon_sym_COLON_COLON] = ACTIONS(285), + [anon_sym_EQ_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(285), + [anon_sym_or] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP_AMP] = ACTIONS(285), + [anon_sym_and] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT_GT] = ACTIONS(285), + [anon_sym_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_PIPE_GT] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_CARET_CARET_CARET] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(285), + [anon_sym_LT_GT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(285), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_do] = ACTIONS(287), + [anon_sym_fn] = ACTIONS(275), + [anon_sym_LPAREN2] = ACTIONS(277), + [anon_sym_LBRACK2] = ACTIONS(283), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(289), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(283), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [52] = { + [sym__expression] = STATE(2628), + [sym_block] = STATE(2628), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(2628), + [sym_nil] = STATE(2628), + [sym__atom] = STATE(2628), + [sym_quoted_atom] = STATE(2628), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2628), + [sym_charlist] = STATE(2628), + [sym_sigil] = STATE(2628), + [sym_keywords] = STATE(1471), + [sym_pair] = STATE(2203), + [sym__keyword] = STATE(874), + [sym_quoted_keyword] = STATE(874), + [sym_list] = STATE(2628), + [sym_tuple] = STATE(2628), + [sym_bitstring] = STATE(2628), + [sym_map] = STATE(2628), + [sym_unary_operator] = STATE(2628), + [sym_binary_operator] = STATE(2628), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2628), + [sym_call] = STATE(2628), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym__call_arguments_with_parentheses_immediate] = STATE(1102), + [sym__call_arguments_without_parentheses] = STATE(1131), + [sym_do_block] = STATE(1360), + [sym_access_call] = STATE(2628), + [sym_anonymous_function] = STATE(2628), + [aux_sym__terminator_token1] = ACTIONS(181), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(439), + [sym_integer] = ACTIONS(439), + [sym_float] = ACTIONS(439), + [sym_char] = ACTIONS(439), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_COMMA] = ACTIONS(183), + [sym_keyword] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_do] = ACTIONS(183), + [anon_sym_end] = ACTIONS(183), + [anon_sym_fn] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_LBRACK2] = ACTIONS(181), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(181), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [53] = { + [sym__expression] = STATE(2331), + [sym_block] = STATE(2331), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2331), + [sym_nil] = STATE(2331), + [sym__atom] = STATE(2331), + [sym_quoted_atom] = STATE(2331), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2331), + [sym_charlist] = STATE(2331), + [sym_sigil] = STATE(2331), + [sym_keywords] = STATE(1471), + [sym_pair] = STATE(2375), + [sym__keyword] = STATE(522), + [sym_quoted_keyword] = STATE(522), + [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(5631), + [sym_dot] = STATE(2331), + [sym_call] = STATE(2331), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), [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(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(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1819), - [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__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym__call_arguments_with_parentheses_immediate] = STATE(1091), + [sym__call_arguments_without_parentheses] = STATE(1136), + [sym_do_block] = STATE(1810), + [sym_access_call] = STATE(2331), + [sym_anonymous_function] = STATE(2331), + [aux_sym__terminator_token1] = ACTIONS(283), + [anon_sym_SEMI] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(285), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(453), + [sym_integer] = ACTIONS(453), + [sym_float] = ACTIONS(453), + [sym_char] = ACTIONS(453), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(453), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_COMMA] = ACTIONS(285), + [sym_keyword] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(285), + [anon_sym_BSLASH_BSLASH] = ACTIONS(285), + [anon_sym_when] = ACTIONS(285), + [anon_sym_COLON_COLON] = ACTIONS(285), + [anon_sym_EQ_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(285), + [anon_sym_or] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP_AMP] = ACTIONS(285), + [anon_sym_and] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT_GT] = ACTIONS(285), + [anon_sym_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_PIPE_GT] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_CARET_CARET_CARET] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(285), + [anon_sym_LT_GT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_do] = ACTIONS(291), + [anon_sym_fn] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_LBRACK2] = ACTIONS(283), [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(293), [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), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(283), + [sym__quoted_atom_start] = ACTIONS(236), }, - [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), + [54] = { + [sym__expression] = STATE(2886), + [sym_block] = STATE(2886), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(2886), + [sym_nil] = STATE(2886), + [sym__atom] = STATE(2886), + [sym_quoted_atom] = STATE(2886), + [sym__quoted_i_double] = STATE(2961), + [sym__quoted_i_single] = STATE(2959), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [sym_string] = STATE(2886), + [sym_charlist] = STATE(2886), + [sym_sigil] = STATE(2886), + [sym_keywords] = STATE(3366), + [sym_pair] = STATE(2733), + [sym__keyword] = STATE(476), + [sym_quoted_keyword] = STATE(476), + [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(5616), + [sym_dot] = STATE(2886), + [sym_call] = STATE(2886), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym__call_arguments_with_parentheses_immediate] = STATE(2624), + [sym__call_arguments_without_parentheses] = STATE(2879), + [sym_do_block] = STATE(4068), + [sym_access_call] = STATE(2886), + [sym_anonymous_function] = STATE(2886), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(528), + [sym_integer] = ACTIONS(528), + [sym_float] = ACTIONS(528), + [sym_char] = ACTIONS(528), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(528), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_COMMA] = ACTIONS(285), + [sym_keyword] = ACTIONS(548), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(285), + [anon_sym_BSLASH_BSLASH] = ACTIONS(285), + [anon_sym_when] = ACTIONS(285), + [anon_sym_COLON_COLON] = ACTIONS(285), + [anon_sym_EQ_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(285), + [anon_sym_or] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP_AMP] = ACTIONS(285), + [anon_sym_and] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT_GT] = ACTIONS(285), + [anon_sym_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_PIPE_GT] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_CARET_CARET_CARET] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(285), + [anon_sym_LT_GT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_do] = ACTIONS(560), + [anon_sym_fn] = ACTIONS(562), + [anon_sym_LPAREN2] = ACTIONS(564), + [anon_sym_LBRACK2] = ACTIONS(283), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(566), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(283), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [55] = { + [sym__expression] = STATE(2331), + [sym_block] = STATE(2331), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2331), + [sym_nil] = STATE(2331), + [sym__atom] = STATE(2331), + [sym_quoted_atom] = STATE(2331), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2331), + [sym_charlist] = STATE(2331), + [sym_sigil] = STATE(2331), + [sym_keywords] = STATE(1471), + [sym_pair] = STATE(2375), + [sym__keyword] = STATE(522), + [sym_quoted_keyword] = STATE(522), + [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(5631), + [sym_dot] = STATE(2331), + [sym_call] = STATE(2331), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), [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(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), - [sym_char] = ACTIONS(1821), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1821), - [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__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym__call_arguments_with_parentheses_immediate] = STATE(1088), + [sym__call_arguments_without_parentheses] = STATE(1132), + [sym_do_block] = STATE(1805), + [sym_access_call] = STATE(2331), + [sym_anonymous_function] = STATE(2331), + [aux_sym__terminator_token1] = ACTIONS(181), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(185), + [anon_sym_RPAREN] = ACTIONS(183), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(453), + [sym_integer] = ACTIONS(453), + [sym_float] = ACTIONS(453), + [sym_char] = ACTIONS(453), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(453), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_COMMA] = ACTIONS(183), + [sym_keyword] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(461), + [anon_sym_DASH] = ACTIONS(461), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_do] = ACTIONS(291), + [anon_sym_fn] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_LBRACK2] = ACTIONS(181), [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), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(236), }, - [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(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), - [sym_char] = ACTIONS(1823), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1823), - [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), - }, - [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(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(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1825), - [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), - }, - [480] = { - [sym__expression] = STATE(2881), - [sym_block] = STATE(2881), - [sym__identifier] = STATE(56), + [56] = { + [sym__expression] = STATE(2642), + [sym_block] = STATE(2642), [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_boolean] = STATE(2642), + [sym_nil] = STATE(2642), + [sym__atom] = STATE(2642), + [sym_quoted_atom] = STATE(2642), + [sym__quoted_i_double] = STATE(2216), + [sym__quoted_i_single] = STATE(2217), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [sym_string] = STATE(2642), + [sym_charlist] = STATE(2642), + [sym_sigil] = STATE(2642), + [sym_keywords] = STATE(2728), + [sym_pair] = STATE(2278), + [sym__keyword] = STATE(850), + [sym_quoted_keyword] = STATE(850), + [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(5624), + [sym_dot] = STATE(2642), + [sym_call] = STATE(2642), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), [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), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym__call_arguments_with_parentheses_immediate] = STATE(2042), + [sym__call_arguments_without_parentheses] = STATE(2653), + [sym_do_block] = STATE(2678), + [sym_access_call] = STATE(2642), + [sym_anonymous_function] = STATE(2642), [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), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_RPAREN] = ACTIONS(183), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(574), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_COMMA] = ACTIONS(183), + [sym_keyword] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(207), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_do] = ACTIONS(183), + [anon_sym_fn] = ACTIONS(609), + [anon_sym_LPAREN2] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(181), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(181), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(615), + }, + [57] = { + [sym__expression] = STATE(2642), + [sym_block] = STATE(2642), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2642), + [sym_nil] = STATE(2642), + [sym__atom] = STATE(2642), + [sym_quoted_atom] = STATE(2642), + [sym__quoted_i_double] = STATE(2216), + [sym__quoted_i_single] = STATE(2217), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [sym_string] = STATE(2642), + [sym_charlist] = STATE(2642), + [sym_sigil] = STATE(2642), + [sym_keywords] = STATE(2728), + [sym_pair] = STATE(2278), + [sym__keyword] = STATE(850), + [sym_quoted_keyword] = STATE(850), + [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(5624), + [sym_dot] = STATE(2642), + [sym_call] = STATE(2642), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym__call_arguments_with_parentheses_immediate] = STATE(2043), + [sym__call_arguments_without_parentheses] = STATE(2654), + [sym_do_block] = STATE(2681), + [sym_access_call] = STATE(2642), + [sym_anonymous_function] = STATE(2642), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_RPAREN] = ACTIONS(285), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(574), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_COMMA] = ACTIONS(285), + [sym_keyword] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(285), + [anon_sym_BSLASH_BSLASH] = ACTIONS(285), + [anon_sym_when] = ACTIONS(285), + [anon_sym_COLON_COLON] = ACTIONS(285), + [anon_sym_EQ_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(285), + [anon_sym_or] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP_AMP] = ACTIONS(285), + [anon_sym_and] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT_GT] = ACTIONS(285), + [anon_sym_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_PIPE_GT] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_CARET_CARET_CARET] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(285), + [anon_sym_LT_GT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(285), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_do] = ACTIONS(285), + [anon_sym_fn] = ACTIONS(609), + [anon_sym_LPAREN2] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(283), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(283), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(283), + [sym__quoted_atom_start] = ACTIONS(615), + }, + [58] = { + [sym__expression] = STATE(2886), + [sym_block] = STATE(2886), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(2886), + [sym_nil] = STATE(2886), + [sym__atom] = STATE(2886), + [sym_quoted_atom] = STATE(2886), + [sym__quoted_i_double] = STATE(2961), + [sym__quoted_i_single] = STATE(2959), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [sym_string] = STATE(2886), + [sym_charlist] = STATE(2886), + [sym_sigil] = STATE(2886), + [sym_keywords] = STATE(3366), + [sym_pair] = STATE(2733), + [sym__keyword] = STATE(476), + [sym_quoted_keyword] = STATE(476), + [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(5616), + [sym_dot] = STATE(2886), + [sym_call] = STATE(2886), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym__call_arguments_with_parentheses_immediate] = STATE(2461), + [sym__call_arguments_without_parentheses] = STATE(3104), + [sym_do_block] = STATE(3233), + [sym_access_call] = STATE(2886), + [sym_anonymous_function] = STATE(2886), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(528), + [sym_integer] = ACTIONS(528), + [sym_float] = ACTIONS(528), + [sym_char] = ACTIONS(528), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(528), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_COMMA] = ACTIONS(285), + [sym_keyword] = ACTIONS(548), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_GT_GT] = ACTIONS(285), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(285), + [anon_sym_BSLASH_BSLASH] = ACTIONS(285), + [anon_sym_when] = ACTIONS(285), + [anon_sym_COLON_COLON] = ACTIONS(285), + [anon_sym_EQ_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(285), + [anon_sym_or] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP_AMP] = ACTIONS(285), + [anon_sym_and] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT_GT] = ACTIONS(285), + [anon_sym_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_PIPE_GT] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_CARET_CARET_CARET] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(285), + [anon_sym_LT_GT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_do] = ACTIONS(285), + [anon_sym_fn] = ACTIONS(562), + [anon_sym_LPAREN2] = ACTIONS(564), + [anon_sym_LBRACK2] = ACTIONS(283), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(283), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(283), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [59] = { + [sym__expression] = STATE(2642), + [sym_block] = STATE(2642), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2642), + [sym_nil] = STATE(2642), + [sym__atom] = STATE(2642), + [sym_quoted_atom] = STATE(2642), + [sym__quoted_i_double] = STATE(2216), + [sym__quoted_i_single] = STATE(2217), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [sym_string] = STATE(2642), + [sym_charlist] = STATE(2642), + [sym_sigil] = STATE(2642), + [sym_keywords] = STATE(2728), + [sym_pair] = STATE(2278), + [sym__keyword] = STATE(850), + [sym_quoted_keyword] = STATE(850), + [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(5624), + [sym_dot] = STATE(2642), + [sym_call] = STATE(2642), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym__call_arguments_with_parentheses_immediate] = STATE(2041), + [sym__call_arguments_without_parentheses] = STATE(2648), + [sym_do_block] = STATE(3794), + [sym_access_call] = STATE(2642), + [sym_anonymous_function] = STATE(2642), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_RPAREN] = ACTIONS(285), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(574), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_COMMA] = ACTIONS(285), + [sym_keyword] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(285), + [anon_sym_BSLASH_BSLASH] = ACTIONS(285), + [anon_sym_when] = ACTIONS(285), + [anon_sym_COLON_COLON] = ACTIONS(285), + [anon_sym_EQ_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(285), + [anon_sym_or] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP_AMP] = ACTIONS(285), + [anon_sym_and] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT_GT] = ACTIONS(285), + [anon_sym_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_PIPE_GT] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_CARET_CARET_CARET] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(285), + [anon_sym_LT_GT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(285), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_do] = ACTIONS(617), + [anon_sym_fn] = ACTIONS(609), + [anon_sym_LPAREN2] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(283), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(619), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(283), + [sym__quoted_atom_start] = ACTIONS(615), + }, + [60] = { + [sym__expression] = STATE(2212), + [sym_block] = STATE(2212), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2212), + [sym_nil] = STATE(2212), + [sym__atom] = STATE(2212), + [sym_quoted_atom] = STATE(2212), + [sym__quoted_i_double] = STATE(2630), + [sym__quoted_i_single] = STATE(2641), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(2212), + [sym_charlist] = STATE(2212), + [sym_sigil] = STATE(2212), + [sym_keywords] = STATE(2695), + [sym_pair] = STATE(2263), + [sym__keyword] = STATE(473), + [sym_quoted_keyword] = STATE(473), + [sym_list] = STATE(2212), + [sym_tuple] = STATE(2212), + [sym_bitstring] = STATE(2212), + [sym_map] = STATE(2212), + [sym_unary_operator] = STATE(2212), + [sym_binary_operator] = STATE(2212), + [sym_operator_identifier] = STATE(5584), + [sym_dot] = STATE(2212), + [sym_call] = STATE(2212), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym__call_arguments_with_parentheses_immediate] = STATE(2198), + [sym__call_arguments_without_parentheses] = STATE(2213), + [sym_do_block] = STATE(3841), + [sym_access_call] = STATE(2212), + [sym_anonymous_function] = STATE(2212), + [ts_builtin_sym_end] = ACTIONS(181), + [aux_sym__terminator_token1] = ACTIONS(181), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(474), + [sym_integer] = ACTIONS(474), + [sym_float] = ACTIONS(474), + [sym_char] = ACTIONS(474), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(474), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_COMMA] = ACTIONS(183), + [sym_keyword] = ACTIONS(494), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(518), + [anon_sym_DASH] = ACTIONS(518), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_do] = ACTIONS(514), + [anon_sym_fn] = ACTIONS(506), + [anon_sym_LPAREN2] = ACTIONS(508), + [anon_sym_LBRACK2] = ACTIONS(181), [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), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(512), }, - [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), + [61] = { + [sym__expression] = STATE(2176), + [sym_block] = STATE(2176), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2176), + [sym_nil] = STATE(2176), + [sym__atom] = STATE(2176), + [sym_quoted_atom] = STATE(2176), + [sym__quoted_i_double] = STATE(1115), + [sym__quoted_i_single] = STATE(1116), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2176), + [sym_charlist] = STATE(2176), + [sym_sigil] = STATE(2176), + [sym_keywords] = STATE(1294), + [sym_pair] = STATE(2100), + [sym__keyword] = STATE(612), + [sym_quoted_keyword] = STATE(612), + [sym_list] = STATE(2176), + [sym_tuple] = STATE(2176), + [sym_bitstring] = STATE(2176), + [sym_map] = STATE(2176), + [sym_unary_operator] = STATE(2176), + [sym_binary_operator] = STATE(2176), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(2176), + [sym_call] = STATE(2176), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym__call_arguments_with_parentheses_immediate] = STATE(1078), + [sym__call_arguments_without_parentheses] = STATE(1084), + [sym_do_block] = STATE(1582), + [sym_access_call] = STATE(2176), + [sym_anonymous_function] = STATE(2176), + [aux_sym__terminator_token1] = ACTIONS(181), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(238), + [anon_sym_RPAREN] = ACTIONS(183), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(420), + [sym_integer] = ACTIONS(420), + [sym_float] = ACTIONS(420), + [sym_char] = ACTIONS(420), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(420), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_COMMA] = ACTIONS(183), + [sym_keyword] = ACTIONS(424), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(428), + [anon_sym_DASH] = ACTIONS(428), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(207), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_do] = ACTIONS(287), + [anon_sym_fn] = ACTIONS(275), + [anon_sym_LPAREN2] = ACTIONS(277), + [anon_sym_LBRACK2] = ACTIONS(181), [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), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(281), }, - [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(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), + [62] = { + [sym__expression] = STATE(2886), + [sym_block] = STATE(2886), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(2886), + [sym_nil] = STATE(2886), + [sym__atom] = STATE(2886), + [sym_quoted_atom] = STATE(2886), + [sym__quoted_i_double] = STATE(2961), + [sym__quoted_i_single] = STATE(2959), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [sym_string] = STATE(2886), + [sym_charlist] = STATE(2886), + [sym_sigil] = STATE(2886), + [sym_keywords] = STATE(3366), + [sym_pair] = STATE(2733), + [sym__keyword] = STATE(476), + [sym_quoted_keyword] = STATE(476), + [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(5616), + [sym_dot] = STATE(2886), + [sym_call] = STATE(2886), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym__call_arguments_with_parentheses_immediate] = STATE(2456), + [sym__call_arguments_without_parentheses] = STATE(3140), + [sym_do_block] = STATE(3237), + [sym_access_call] = STATE(2886), + [sym_anonymous_function] = STATE(2886), [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(1829), - [sym_integer] = ACTIONS(1829), - [sym_float] = ACTIONS(1829), - [sym_char] = ACTIONS(1829), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1829), - [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), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(528), + [sym_integer] = ACTIONS(528), + [sym_float] = ACTIONS(528), + [sym_char] = ACTIONS(528), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(528), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_COMMA] = ACTIONS(183), + [sym_keyword] = ACTIONS(548), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_GT_GT] = ACTIONS(183), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_do] = ACTIONS(183), + [anon_sym_fn] = ACTIONS(562), + [anon_sym_LPAREN2] = ACTIONS(564), + [anon_sym_LBRACK2] = ACTIONS(181), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(181), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [63] = { + [sym__expression] = STATE(2628), + [sym_block] = STATE(2628), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(2628), + [sym_nil] = STATE(2628), + [sym__atom] = STATE(2628), + [sym_quoted_atom] = STATE(2628), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2628), + [sym_charlist] = STATE(2628), + [sym_sigil] = STATE(2628), + [sym_keywords] = STATE(1471), + [sym_pair] = STATE(2203), + [sym__keyword] = STATE(874), + [sym_quoted_keyword] = STATE(874), + [sym_list] = STATE(2628), + [sym_tuple] = STATE(2628), + [sym_bitstring] = STATE(2628), + [sym_map] = STATE(2628), + [sym_unary_operator] = STATE(2628), + [sym_binary_operator] = STATE(2628), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2628), + [sym_call] = STATE(2628), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym__call_arguments_with_parentheses_immediate] = STATE(1088), + [sym__call_arguments_without_parentheses] = STATE(1132), + [sym_do_block] = STATE(1805), + [sym_access_call] = STATE(2628), + [sym_anonymous_function] = STATE(2628), + [aux_sym__terminator_token1] = ACTIONS(181), + [anon_sym_SEMI] = ACTIONS(183), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(439), + [sym_integer] = ACTIONS(439), + [sym_float] = ACTIONS(439), + [sym_char] = ACTIONS(439), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(439), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_COMMA] = ACTIONS(183), + [sym_keyword] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(521), + [anon_sym_DASH] = ACTIONS(521), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_do] = ACTIONS(291), + [anon_sym_end] = ACTIONS(183), + [anon_sym_fn] = ACTIONS(227), + [anon_sym_LPAREN2] = ACTIONS(229), + [anon_sym_LBRACK2] = ACTIONS(181), [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), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(236), }, - [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(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), + [64] = { + [sym__expression] = STATE(1106), + [sym_block] = STATE(1106), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1106), + [sym_nil] = STATE(1106), + [sym__atom] = STATE(1106), + [sym_quoted_atom] = STATE(1106), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1106), + [sym_charlist] = STATE(1106), + [sym_sigil] = STATE(1106), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1106), + [sym_tuple] = STATE(1106), + [sym_bitstring] = STATE(1106), + [sym_map] = STATE(1106), + [sym_unary_operator] = STATE(1106), + [sym_binary_operator] = STATE(1106), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1106), + [sym_call] = STATE(1106), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1106), + [sym_stab_clause] = STATE(4348), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1106), [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(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(1831), - [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), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(624), + [sym_integer] = ACTIONS(624), + [sym_float] = ACTIONS(624), + [sym_char] = ACTIONS(624), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(624), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(626), + [anon_sym_catch] = ACTIONS(626), + [anon_sym_else] = ACTIONS(626), + [anon_sym_end] = ACTIONS(626), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(626), [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), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [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), + [65] = { + [sym__expression] = STATE(2886), + [sym_block] = STATE(2886), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(2886), + [sym_nil] = STATE(2886), + [sym__atom] = STATE(2886), + [sym_quoted_atom] = STATE(2886), + [sym__quoted_i_double] = STATE(2961), + [sym__quoted_i_single] = STATE(2959), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [sym_string] = STATE(2886), + [sym_charlist] = STATE(2886), + [sym_sigil] = STATE(2886), + [sym_keywords] = STATE(3366), + [sym_pair] = STATE(2733), + [sym__keyword] = STATE(476), + [sym_quoted_keyword] = STATE(476), + [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(5616), + [sym_dot] = STATE(2886), + [sym_call] = STATE(2886), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym__call_arguments_with_parentheses_immediate] = STATE(2621), + [sym__call_arguments_without_parentheses] = STATE(2883), + [sym_do_block] = STATE(3989), + [sym_access_call] = STATE(2886), + [sym_anonymous_function] = STATE(2886), [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(1833), - [sym_integer] = ACTIONS(1833), - [sym_float] = ACTIONS(1833), - [sym_char] = ACTIONS(1833), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1833), - [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), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(528), + [sym_integer] = ACTIONS(528), + [sym_float] = ACTIONS(528), + [sym_char] = ACTIONS(528), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(528), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_COMMA] = ACTIONS(183), + [sym_keyword] = ACTIONS(548), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_GT_GT] = ACTIONS(183), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(621), + [anon_sym_DASH] = ACTIONS(621), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_do] = ACTIONS(560), + [anon_sym_fn] = ACTIONS(562), + [anon_sym_LPAREN2] = ACTIONS(564), + [anon_sym_LBRACK2] = ACTIONS(181), [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), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(570), }, - [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(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(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1835), - [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), - }, - [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(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(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1837), - [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), - }, - [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(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(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1839), - [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), - }, - [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(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(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1841), - [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), - }, - [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(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), - [sym_char] = ACTIONS(1843), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1843), - [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), - }, - [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(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(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1845), - [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), - }, - [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(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(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(1847), - [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), - }, - [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(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(511), - [anon_sym_false] = ACTIONS(511), - [anon_sym_nil] = ACTIONS(513), - [sym_atom] = ACTIONS(1849), - [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), - }, - [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(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(511), - [anon_sym_false] = ACTIONS(511), - [anon_sym_nil] = ACTIONS(513), - [sym_atom] = ACTIONS(1851), - [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), - }, - [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(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(511), - [anon_sym_false] = ACTIONS(511), - [anon_sym_nil] = ACTIONS(513), - [sym_atom] = ACTIONS(1853), - [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), - }, - [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(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(511), - [anon_sym_false] = ACTIONS(511), - [anon_sym_nil] = ACTIONS(513), - [sym_atom] = ACTIONS(1855), - [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), - }, - [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(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(511), - [anon_sym_false] = ACTIONS(511), - [anon_sym_nil] = ACTIONS(513), - [sym_atom] = ACTIONS(1857), - [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), - }, - [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(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(511), - [anon_sym_false] = ACTIONS(511), - [anon_sym_nil] = ACTIONS(513), - [sym_atom] = ACTIONS(1859), - [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), - }, - [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(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(511), - [anon_sym_false] = ACTIONS(511), - [anon_sym_nil] = ACTIONS(513), - [sym_atom] = ACTIONS(1861), - [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), - }, - [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(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(511), - [anon_sym_false] = ACTIONS(511), - [anon_sym_nil] = ACTIONS(513), - [sym_atom] = ACTIONS(1863), - [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), - }, - [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(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(511), - [anon_sym_false] = ACTIONS(511), - [anon_sym_nil] = ACTIONS(513), - [sym_atom] = ACTIONS(1865), - [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), - }, - [502] = { - [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(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), - [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), - [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), + [66] = { + [sym__expression] = STATE(2707), + [sym_block] = STATE(2707), [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), - [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(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(1929), - [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(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), - }, - [537] = { - [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(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(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(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), - }, - [538] = { - [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(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(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_nil] = ACTIONS(375), - [sym_atom] = ACTIONS(1933), - [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), - }, - [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(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(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_nil] = ACTIONS(375), - [sym_atom] = ACTIONS(1935), - [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), - }, - [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(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(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_nil] = ACTIONS(375), - [sym_atom] = ACTIONS(1937), - [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), - }, - [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(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(373), - [anon_sym_false] = ACTIONS(373), - [anon_sym_nil] = ACTIONS(375), - [sym_atom] = ACTIONS(1939), - [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), - }, - [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(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(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(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), - }, - [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(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(617), - [anon_sym_false] = ACTIONS(617), - [anon_sym_nil] = ACTIONS(619), - [sym_atom] = ACTIONS(1943), - [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), - }, - [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(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(617), - [anon_sym_false] = ACTIONS(617), - [anon_sym_nil] = ACTIONS(619), - [sym_atom] = ACTIONS(1945), - [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), - }, - [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_boolean] = STATE(2707), + [sym_nil] = STATE(2707), + [sym__atom] = STATE(2707), + [sym_quoted_atom] = STATE(2707), + [sym__quoted_i_double] = STATE(1770), + [sym__quoted_i_single] = STATE(1771), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2707), + [sym_charlist] = STATE(2707), + [sym_sigil] = STATE(2707), + [sym_keywords] = STATE(2097), + [sym_pair] = STATE(2669), + [sym__keyword] = STATE(737), + [sym_quoted_keyword] = STATE(737), + [sym_list] = STATE(2707), + [sym_tuple] = STATE(2707), + [sym_bitstring] = STATE(2707), + [sym_map] = STATE(2707), + [sym_unary_operator] = STATE(2707), + [sym_binary_operator] = STATE(2707), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2707), + [sym_call] = STATE(2707), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), [sym__anonymous_dot] = STATE(5456), - [sym__double_call] = STATE(3811), - [sym_access_call] = STATE(3858), - [sym_anonymous_function] = STATE(3858), + [sym__double_call] = STATE(2156), + [sym__call_arguments_with_parentheses_immediate] = STATE(1687), + [sym__call_arguments_without_parentheses] = STATE(1861), + [sym_do_block] = STATE(3151), + [sym_access_call] = STATE(2707), + [sym_anonymous_function] = STATE(2707), [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(1947), - [sym_integer] = ACTIONS(1947), - [sym_float] = ACTIONS(1947), - [sym_char] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(1947), - [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), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(628), + [sym_integer] = ACTIONS(628), + [sym_float] = ACTIONS(628), + [sym_char] = ACTIONS(628), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(628), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(285), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_COMMA] = ACTIONS(285), + [sym_keyword] = ACTIONS(630), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(285), + [anon_sym_BSLASH_BSLASH] = ACTIONS(285), + [anon_sym_when] = ACTIONS(285), + [anon_sym_COLON_COLON] = ACTIONS(285), + [anon_sym_EQ_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(285), + [anon_sym_or] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP_AMP] = ACTIONS(285), + [anon_sym_and] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT_GT] = ACTIONS(285), + [anon_sym_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_PIPE_GT] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_CARET_CARET_CARET] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(285), + [anon_sym_LT_GT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_do] = ACTIONS(387), + [anon_sym_fn] = ACTIONS(379), + [anon_sym_LPAREN2] = ACTIONS(381), + [anon_sym_LBRACK2] = ACTIONS(283), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(389), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(283), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [67] = { + [sym__expression] = STATE(2642), + [sym_block] = STATE(2642), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2642), + [sym_nil] = STATE(2642), + [sym__atom] = STATE(2642), + [sym_quoted_atom] = STATE(2642), + [sym__quoted_i_double] = STATE(2216), + [sym__quoted_i_single] = STATE(2217), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [sym_string] = STATE(2642), + [sym_charlist] = STATE(2642), + [sym_sigil] = STATE(2642), + [sym_keywords] = STATE(2728), + [sym_pair] = STATE(2278), + [sym__keyword] = STATE(850), + [sym_quoted_keyword] = STATE(850), + [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(5624), + [sym_dot] = STATE(2642), + [sym_call] = STATE(2642), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym__call_arguments_with_parentheses_immediate] = STATE(2069), + [sym__call_arguments_without_parentheses] = STATE(2643), + [sym_do_block] = STATE(3797), + [sym_access_call] = STATE(2642), + [sym_anonymous_function] = STATE(2642), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(572), + [anon_sym_RPAREN] = ACTIONS(183), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(574), + [sym_integer] = ACTIONS(574), + [sym_float] = ACTIONS(574), + [sym_char] = ACTIONS(574), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(574), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_COMMA] = ACTIONS(183), + [sym_keyword] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(602), + [anon_sym_DASH] = ACTIONS(602), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(207), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_do] = ACTIONS(617), + [anon_sym_fn] = ACTIONS(609), + [anon_sym_LPAREN2] = ACTIONS(611), + [anon_sym_LBRACK2] = ACTIONS(181), [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), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(615), }, - [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), + [68] = { + [sym__expression] = STATE(1109), + [sym_block] = STATE(1109), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1109), + [sym_nil] = STATE(1109), + [sym__atom] = STATE(1109), + [sym_quoted_atom] = STATE(1109), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1109), + [sym_charlist] = STATE(1109), + [sym_sigil] = STATE(1109), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1109), + [sym_tuple] = STATE(1109), + [sym_bitstring] = STATE(1109), + [sym_map] = STATE(1109), + [sym_unary_operator] = STATE(1109), + [sym_binary_operator] = STATE(1109), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1109), + [sym_call] = STATE(1109), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1109), + [sym_stab_clause] = STATE(4340), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1109), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(640), + [sym_integer] = ACTIONS(640), + [sym_float] = ACTIONS(640), + [sym_char] = ACTIONS(640), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(640), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(642), + [anon_sym_catch] = ACTIONS(642), + [anon_sym_else] = ACTIONS(642), + [anon_sym_end] = ACTIONS(642), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(642), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [69] = { + [sym__expression] = STATE(1107), + [sym_block] = STATE(1107), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1107), + [sym_nil] = STATE(1107), + [sym__atom] = STATE(1107), + [sym_quoted_atom] = STATE(1107), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1107), + [sym_charlist] = STATE(1107), + [sym_sigil] = STATE(1107), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1107), + [sym_call] = STATE(1107), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1107), + [sym_stab_clause] = STATE(4344), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1107), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(644), + [sym_integer] = ACTIONS(644), + [sym_float] = ACTIONS(644), + [sym_char] = ACTIONS(644), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(644), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(646), + [anon_sym_catch] = ACTIONS(646), + [anon_sym_else] = ACTIONS(646), + [anon_sym_end] = ACTIONS(646), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(646), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [70] = { + [sym__expression] = STATE(2707), + [sym_block] = STATE(2707), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(2707), + [sym_nil] = STATE(2707), + [sym__atom] = STATE(2707), + [sym_quoted_atom] = STATE(2707), + [sym__quoted_i_double] = STATE(1770), + [sym__quoted_i_single] = STATE(1771), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2707), + [sym_charlist] = STATE(2707), + [sym_sigil] = STATE(2707), + [sym_keywords] = STATE(2097), + [sym_pair] = STATE(2669), + [sym__keyword] = STATE(737), + [sym_quoted_keyword] = STATE(737), + [sym_list] = STATE(2707), + [sym_tuple] = STATE(2707), + [sym_bitstring] = STATE(2707), + [sym_map] = STATE(2707), + [sym_unary_operator] = STATE(2707), + [sym_binary_operator] = STATE(2707), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2707), + [sym_call] = STATE(2707), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), [sym__anonymous_dot] = STATE(5456), - [sym__double_call] = STATE(3811), - [sym_access_call] = STATE(3859), - [sym_anonymous_function] = STATE(3859), + [sym__double_call] = STATE(2156), + [sym__call_arguments_with_parentheses_immediate] = STATE(1587), + [sym__call_arguments_without_parentheses] = STATE(1803), + [sym_do_block] = STATE(2145), + [sym_access_call] = STATE(2707), + [sym_anonymous_function] = STATE(2707), [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(1949), - [sym_integer] = ACTIONS(1949), - [sym_float] = ACTIONS(1949), - [sym_char] = ACTIONS(1949), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(1949), - [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), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(628), + [sym_integer] = ACTIONS(628), + [sym_float] = ACTIONS(628), + [sym_char] = ACTIONS(628), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(628), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_COMMA] = ACTIONS(183), + [sym_keyword] = ACTIONS(630), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(651), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_do] = ACTIONS(183), + [anon_sym_fn] = ACTIONS(379), + [anon_sym_LPAREN2] = ACTIONS(381), + [anon_sym_LBRACK2] = ACTIONS(181), [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(181), [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), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(385), }, - [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), - [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(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(1951), - [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), - }, - [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(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(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), - }, - [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(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), - [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(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(1967), - [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), - }, - [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(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(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), - }, - [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(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), + [71] = { + [sym__expression] = STATE(2707), + [sym_block] = STATE(2707), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(2707), + [sym_nil] = STATE(2707), + [sym__atom] = STATE(2707), + [sym_quoted_atom] = STATE(2707), + [sym__quoted_i_double] = STATE(1770), + [sym__quoted_i_single] = STATE(1771), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2707), + [sym_charlist] = STATE(2707), + [sym_sigil] = STATE(2707), + [sym_keywords] = STATE(2097), + [sym_pair] = STATE(2669), + [sym__keyword] = STATE(737), + [sym_quoted_keyword] = STATE(737), + [sym_list] = STATE(2707), + [sym_tuple] = STATE(2707), + [sym_bitstring] = STATE(2707), + [sym_map] = STATE(2707), + [sym_unary_operator] = STATE(2707), + [sym_binary_operator] = STATE(2707), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2707), + [sym_call] = STATE(2707), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), [sym__anonymous_dot] = STATE(5456), - [sym__double_call] = STATE(3811), - [sym_access_call] = STATE(3699), - [sym_anonymous_function] = STATE(3699), + [sym__double_call] = STATE(2156), + [sym__call_arguments_with_parentheses_immediate] = STATE(1588), + [sym__call_arguments_without_parentheses] = STATE(1807), + [sym_do_block] = STATE(2141), + [sym_access_call] = STATE(2707), + [sym_anonymous_function] = STATE(2707), [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), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(628), + [sym_integer] = ACTIONS(628), + [sym_float] = ACTIONS(628), + [sym_char] = ACTIONS(628), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(628), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(285), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(285), + [anon_sym_GT] = ACTIONS(285), + [anon_sym_PIPE] = ACTIONS(285), + [anon_sym_SLASH] = ACTIONS(285), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_COMMA] = ACTIONS(285), + [sym_keyword] = ACTIONS(630), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(285), + [anon_sym_DASH] = ACTIONS(285), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(285), + [anon_sym_BSLASH_BSLASH] = ACTIONS(285), + [anon_sym_when] = ACTIONS(285), + [anon_sym_COLON_COLON] = ACTIONS(285), + [anon_sym_EQ_GT] = ACTIONS(285), + [anon_sym_EQ] = ACTIONS(285), + [anon_sym_PIPE_PIPE] = ACTIONS(285), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(285), + [anon_sym_or] = ACTIONS(285), + [anon_sym_AMP_AMP] = ACTIONS(285), + [anon_sym_AMP_AMP_AMP] = ACTIONS(285), + [anon_sym_and] = ACTIONS(285), + [anon_sym_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ] = ACTIONS(285), + [anon_sym_EQ_TILDE] = ACTIONS(285), + [anon_sym_EQ_EQ_EQ] = ACTIONS(285), + [anon_sym_BANG_EQ_EQ] = ACTIONS(285), + [anon_sym_LT_EQ] = ACTIONS(285), + [anon_sym_GT_EQ] = ACTIONS(285), + [anon_sym_PIPE_GT] = ACTIONS(285), + [anon_sym_LT_LT_LT] = ACTIONS(285), + [anon_sym_GT_GT_GT] = ACTIONS(285), + [anon_sym_LT_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT_GT] = ACTIONS(285), + [anon_sym_LT_TILDE] = ACTIONS(285), + [anon_sym_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_TILDE_GT] = ACTIONS(285), + [anon_sym_LT_PIPE_GT] = ACTIONS(285), + [anon_sym_in] = ACTIONS(285), + [anon_sym_CARET_CARET_CARET] = ACTIONS(285), + [anon_sym_SLASH_SLASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH] = ACTIONS(285), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(285), + [anon_sym_DASH_DASH_DASH] = ACTIONS(285), + [anon_sym_DOT_DOT] = ACTIONS(285), + [anon_sym_LT_GT] = ACTIONS(285), + [anon_sym_STAR] = ACTIONS(285), + [anon_sym_STAR_STAR] = ACTIONS(285), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(285), + [anon_sym_do] = ACTIONS(285), + [anon_sym_fn] = ACTIONS(379), + [anon_sym_LPAREN2] = ACTIONS(381), + [anon_sym_LBRACK2] = ACTIONS(283), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(283), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(283), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [72] = { + [sym__expression] = STATE(1101), + [sym_block] = STATE(1101), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1101), + [sym_nil] = STATE(1101), + [sym__atom] = STATE(1101), + [sym_quoted_atom] = STATE(1101), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1101), + [sym_charlist] = STATE(1101), + [sym_sigil] = STATE(1101), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1101), + [sym_call] = STATE(1101), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1101), + [sym_stab_clause] = STATE(4334), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1101), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(654), + [sym_integer] = ACTIONS(654), + [sym_float] = ACTIONS(654), + [sym_char] = ACTIONS(654), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(654), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(656), + [anon_sym_catch] = ACTIONS(656), + [anon_sym_else] = ACTIONS(656), + [anon_sym_end] = ACTIONS(656), + [anon_sym_fn] = ACTIONS(107), + [anon_sym_rescue] = ACTIONS(656), [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), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [565] = { - [sym__expression] = STATE(3218), - [sym_block] = STATE(3218), - [sym__identifier] = STATE(61), + [73] = { + [sym__terminator] = STATE(122), + [sym__expression] = STATE(1740), + [sym_block] = STATE(1740), [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_boolean] = STATE(1740), + [sym_nil] = STATE(1740), + [sym__atom] = STATE(1740), + [sym_quoted_atom] = STATE(1740), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1740), + [sym_charlist] = STATE(1740), + [sym_sigil] = STATE(1740), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1740), + [sym_call] = STATE(1740), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1740), + [sym_stab_clause] = STATE(5012), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1740), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(662), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(666), + [sym_integer] = ACTIONS(666), + [sym_float] = ACTIONS(666), + [sym_char] = ACTIONS(666), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(666), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), [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), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [566] = { - [sym__expression] = STATE(3219), - [sym_block] = STATE(3219), - [sym__identifier] = STATE(61), + [74] = { + [sym__terminator] = STATE(115), + [sym__expression] = STATE(1735), + [sym_block] = STATE(1735), [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_boolean] = STATE(1735), + [sym_nil] = STATE(1735), + [sym__atom] = STATE(1735), + [sym_quoted_atom] = STATE(1735), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1735), + [sym_charlist] = STATE(1735), + [sym_sigil] = STATE(1735), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1735), + [sym_call] = STATE(1735), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1735), + [sym_stab_clause] = STATE(4938), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1735), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(682), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(684), + [sym_integer] = ACTIONS(684), + [sym_float] = ACTIONS(684), + [sym_char] = ACTIONS(684), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(684), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), [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), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [567] = { - [sym__expression] = STATE(3220), - [sym_block] = STATE(3220), - [sym__identifier] = STATE(61), + [75] = { + [sym__expression] = STATE(2707), + [sym_block] = STATE(2707), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(2707), + [sym_nil] = STATE(2707), + [sym__atom] = STATE(2707), + [sym_quoted_atom] = STATE(2707), + [sym__quoted_i_double] = STATE(1770), + [sym__quoted_i_single] = STATE(1771), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2707), + [sym_charlist] = STATE(2707), + [sym_sigil] = STATE(2707), + [sym_keywords] = STATE(2097), + [sym_pair] = STATE(2669), + [sym__keyword] = STATE(737), + [sym_quoted_keyword] = STATE(737), + [sym_list] = STATE(2707), + [sym_tuple] = STATE(2707), + [sym_bitstring] = STATE(2707), + [sym_map] = STATE(2707), + [sym_unary_operator] = STATE(2707), + [sym_binary_operator] = STATE(2707), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2707), + [sym_call] = STATE(2707), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym__call_arguments_with_parentheses_immediate] = STATE(1686), + [sym__call_arguments_without_parentheses] = STATE(1857), + [sym_do_block] = STATE(3155), + [sym_access_call] = STATE(2707), + [sym_anonymous_function] = STATE(2707), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(628), + [sym_integer] = ACTIONS(628), + [sym_float] = ACTIONS(628), + [sym_char] = ACTIONS(628), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(628), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(648), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_COMMA] = ACTIONS(183), + [sym_keyword] = ACTIONS(630), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(651), + [anon_sym_DASH] = ACTIONS(651), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_do] = ACTIONS(387), + [anon_sym_fn] = ACTIONS(379), + [anon_sym_LPAREN2] = ACTIONS(381), + [anon_sym_LBRACK2] = ACTIONS(181), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [76] = { + [sym__terminator] = STATE(121), + [sym__expression] = STATE(1942), + [sym_block] = STATE(1942), [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_boolean] = STATE(1942), + [sym_nil] = STATE(1942), + [sym__atom] = STATE(1942), + [sym_quoted_atom] = STATE(1942), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1942), + [sym_charlist] = STATE(1942), + [sym_sigil] = STATE(1942), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1942), + [sym_call] = STATE(1942), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1942), + [sym_stab_clause] = STATE(4956), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1942), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(688), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(690), + [sym_integer] = ACTIONS(690), + [sym_float] = ACTIONS(690), + [sym_char] = ACTIONS(690), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(690), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), [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), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [568] = { - [sym__expression] = STATE(3221), - [sym_block] = STATE(3221), - [sym__identifier] = STATE(61), + [77] = { + [sym__terminator] = STATE(121), + [sym__expression] = STATE(1951), + [sym_block] = STATE(1951), [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_boolean] = STATE(1951), + [sym_nil] = STATE(1951), + [sym__atom] = STATE(1951), + [sym_quoted_atom] = STATE(1951), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1951), + [sym_charlist] = STATE(1951), + [sym_sigil] = STATE(1951), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1951), + [sym_tuple] = STATE(1951), + [sym_bitstring] = STATE(1951), + [sym_map] = STATE(1951), + [sym_unary_operator] = STATE(1951), + [sym_binary_operator] = STATE(1951), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1951), + [sym_call] = STATE(1951), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1951), + [sym_stab_clause] = STATE(4956), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1951), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(686), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(688), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(692), + [sym_integer] = ACTIONS(692), + [sym_float] = ACTIONS(692), + [sym_char] = ACTIONS(692), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(692), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), [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), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [569] = { - [sym__expression] = STATE(3222), - [sym_block] = STATE(3222), - [sym__identifier] = STATE(61), + [78] = { + [sym__terminator] = STATE(113), + [sym__expression] = STATE(1949), + [sym_block] = STATE(1949), [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_boolean] = STATE(1949), + [sym_nil] = STATE(1949), + [sym__atom] = STATE(1949), + [sym_quoted_atom] = STATE(1949), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1949), + [sym_charlist] = STATE(1949), + [sym_sigil] = STATE(1949), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1949), + [sym_call] = STATE(1949), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1949), + [sym_stab_clause] = STATE(5023), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1949), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(696), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(698), + [sym_integer] = ACTIONS(698), + [sym_float] = ACTIONS(698), + [sym_char] = ACTIONS(698), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(698), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), [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), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [570] = { - [sym__expression] = STATE(3223), - [sym_block] = STATE(3223), - [sym__identifier] = STATE(61), + [79] = { + [sym__terminator] = STATE(115), + [sym__expression] = STATE(1527), + [sym_block] = STATE(1527), [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_boolean] = STATE(1527), + [sym_nil] = STATE(1527), + [sym__atom] = STATE(1527), + [sym_quoted_atom] = STATE(1527), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1527), + [sym_charlist] = STATE(1527), + [sym_sigil] = STATE(1527), + [sym_keywords] = STATE(5431), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1527), + [sym_call] = STATE(1527), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1527), + [sym_stab_clause] = STATE(4938), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1527), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(700), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(702), + [sym_integer] = ACTIONS(702), + [sym_float] = ACTIONS(702), + [sym_char] = ACTIONS(702), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(702), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), [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), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [571] = { - [sym__expression] = STATE(3224), - [sym_block] = STATE(3224), - [sym__identifier] = STATE(61), + [80] = { + [sym__terminator] = STATE(119), + [sym__expression] = STATE(1724), + [sym_block] = STATE(1724), [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_boolean] = STATE(1724), + [sym_nil] = STATE(1724), + [sym__atom] = STATE(1724), + [sym_quoted_atom] = STATE(1724), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1724), + [sym_charlist] = STATE(1724), + [sym_sigil] = STATE(1724), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1724), + [sym_call] = STATE(1724), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1724), + [sym_stab_clause] = STATE(5009), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1724), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(704), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(706), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(708), + [sym_integer] = ACTIONS(708), + [sym_float] = ACTIONS(708), + [sym_char] = ACTIONS(708), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(708), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), [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), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [572] = { - [sym__expression] = STATE(3225), - [sym_block] = STATE(3225), - [sym__identifier] = STATE(61), + [81] = { + [sym__terminator] = STATE(118), + [sym__expression] = STATE(1932), + [sym_block] = STATE(1932), [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_boolean] = STATE(1932), + [sym_nil] = STATE(1932), + [sym__atom] = STATE(1932), + [sym_quoted_atom] = STATE(1932), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1932), + [sym_charlist] = STATE(1932), + [sym_sigil] = STATE(1932), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1932), + [sym_tuple] = STATE(1932), + [sym_bitstring] = STATE(1932), + [sym_map] = STATE(1932), + [sym_unary_operator] = STATE(1932), + [sym_binary_operator] = STATE(1932), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1932), + [sym_call] = STATE(1932), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1932), + [sym_stab_clause] = STATE(4893), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1932), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(712), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(714), + [sym_integer] = ACTIONS(714), + [sym_float] = ACTIONS(714), + [sym_char] = ACTIONS(714), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(714), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), [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), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [573] = { - [sym__expression] = STATE(3226), - [sym_block] = STATE(3226), - [sym__identifier] = STATE(61), + [82] = { + [sym__terminator] = STATE(117), + [sym__expression] = STATE(1737), + [sym_block] = STATE(1737), [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_boolean] = STATE(1737), + [sym_nil] = STATE(1737), + [sym__atom] = STATE(1737), + [sym_quoted_atom] = STATE(1737), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1737), + [sym_charlist] = STATE(1737), + [sym_sigil] = STATE(1737), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1737), + [sym_call] = STATE(1737), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1737), + [sym_stab_clause] = STATE(4977), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1737), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(718), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(720), + [sym_integer] = ACTIONS(720), + [sym_float] = ACTIONS(720), + [sym_char] = ACTIONS(720), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(720), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), [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), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [574] = { - [sym__expression] = STATE(3227), - [sym_block] = STATE(3227), - [sym__identifier] = STATE(61), + [83] = { + [sym__terminator] = STATE(118), + [sym__expression] = STATE(1944), + [sym_block] = STATE(1944), [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_boolean] = STATE(1944), + [sym_nil] = STATE(1944), + [sym__atom] = STATE(1944), + [sym_quoted_atom] = STATE(1944), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1944), + [sym_charlist] = STATE(1944), + [sym_sigil] = STATE(1944), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1944), + [sym_tuple] = STATE(1944), + [sym_bitstring] = STATE(1944), + [sym_map] = STATE(1944), + [sym_unary_operator] = STATE(1944), + [sym_binary_operator] = STATE(1944), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1944), + [sym_call] = STATE(1944), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1944), + [sym_stab_clause] = STATE(4893), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1944), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(710), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(712), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(722), + [sym_integer] = ACTIONS(722), + [sym_float] = ACTIONS(722), + [sym_char] = ACTIONS(722), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(722), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), [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), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [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), + [84] = { + [sym__terminator] = STATE(117), + [sym__expression] = STATE(1742), + [sym_block] = STATE(1742), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1742), + [sym_nil] = STATE(1742), + [sym__atom] = STATE(1742), + [sym_quoted_atom] = STATE(1742), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1742), + [sym_charlist] = STATE(1742), + [sym_sigil] = STATE(1742), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1742), + [sym_call] = STATE(1742), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1742), + [sym_stab_clause] = STATE(4977), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1742), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(716), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(718), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(724), + [sym_integer] = ACTIONS(724), + [sym_float] = ACTIONS(724), + [sym_char] = ACTIONS(724), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(724), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [85] = { + [sym__terminator] = STATE(120), + [sym__expression] = STATE(1727), + [sym_block] = STATE(1727), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1727), + [sym_nil] = STATE(1727), + [sym__atom] = STATE(1727), + [sym_quoted_atom] = STATE(1727), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1727), + [sym_charlist] = STATE(1727), + [sym_sigil] = STATE(1727), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1727), + [sym_tuple] = STATE(1727), + [sym_bitstring] = STATE(1727), + [sym_map] = STATE(1727), + [sym_unary_operator] = STATE(1727), + [sym_binary_operator] = STATE(1727), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1727), + [sym_call] = STATE(1727), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1727), + [sym_stab_clause] = STATE(4910), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1727), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(726), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(728), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(730), + [sym_integer] = ACTIONS(730), + [sym_float] = ACTIONS(730), + [sym_char] = ACTIONS(730), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(730), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [86] = { + [sym__terminator] = STATE(119), + [sym__expression] = STATE(1722), + [sym_block] = STATE(1722), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1722), + [sym_nil] = STATE(1722), + [sym__atom] = STATE(1722), + [sym_quoted_atom] = STATE(1722), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1722), + [sym_charlist] = STATE(1722), + [sym_sigil] = STATE(1722), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1722), + [sym_call] = STATE(1722), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1722), + [sym_stab_clause] = STATE(5009), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1722), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(704), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(706), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(732), + [sym_integer] = ACTIONS(732), + [sym_float] = ACTIONS(732), + [sym_char] = ACTIONS(732), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(732), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [87] = { + [sym__terminator] = STATE(116), + [sym__expression] = STATE(1730), + [sym_block] = STATE(1730), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1730), + [sym_nil] = STATE(1730), + [sym__atom] = STATE(1730), + [sym_quoted_atom] = STATE(1730), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1730), + [sym_charlist] = STATE(1730), + [sym_sigil] = STATE(1730), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1730), + [sym_call] = STATE(1730), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1730), + [sym_stab_clause] = STATE(4916), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1730), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(736), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(738), + [sym_integer] = ACTIONS(738), + [sym_float] = ACTIONS(738), + [sym_char] = ACTIONS(738), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(738), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [88] = { + [sym__terminator] = STATE(120), + [sym__expression] = STATE(1725), + [sym_block] = STATE(1725), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1725), + [sym_nil] = STATE(1725), + [sym__atom] = STATE(1725), + [sym_quoted_atom] = STATE(1725), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1725), + [sym_charlist] = STATE(1725), + [sym_sigil] = STATE(1725), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1725), + [sym_call] = STATE(1725), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1725), + [sym_stab_clause] = STATE(4910), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1725), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(726), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(728), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(740), + [sym_integer] = ACTIONS(740), + [sym_float] = ACTIONS(740), + [sym_char] = ACTIONS(740), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(740), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [89] = { + [sym__terminator] = STATE(113), + [sym__expression] = STATE(1913), + [sym_block] = STATE(1913), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1913), + [sym_nil] = STATE(1913), + [sym__atom] = STATE(1913), + [sym_quoted_atom] = STATE(1913), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1913), + [sym_charlist] = STATE(1913), + [sym_sigil] = STATE(1913), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1913), + [sym_call] = STATE(1913), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1913), + [sym_stab_clause] = STATE(5023), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1913), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(696), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(742), + [sym_integer] = ACTIONS(742), + [sym_float] = ACTIONS(742), + [sym_char] = ACTIONS(742), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(742), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [90] = { + [sym__terminator] = STATE(123), + [sym__expression] = STATE(1721), + [sym_block] = STATE(1721), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1721), + [sym_nil] = STATE(1721), + [sym__atom] = STATE(1721), + [sym_quoted_atom] = STATE(1721), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1721), + [sym_charlist] = STATE(1721), + [sym_sigil] = STATE(1721), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1721), + [sym_tuple] = STATE(1721), + [sym_bitstring] = STATE(1721), + [sym_map] = STATE(1721), + [sym_unary_operator] = STATE(1721), + [sym_binary_operator] = STATE(1721), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1721), + [sym_call] = STATE(1721), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1721), + [sym_stab_clause] = STATE(5016), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1721), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(746), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(748), + [sym_integer] = ACTIONS(748), + [sym_float] = ACTIONS(748), + [sym_char] = ACTIONS(748), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(748), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [91] = { + [sym__terminator] = STATE(115), + [sym__expression] = STATE(1864), + [sym_block] = STATE(1864), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1864), + [sym_nil] = STATE(1864), + [sym__atom] = STATE(1864), + [sym_quoted_atom] = STATE(1864), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1864), + [sym_charlist] = STATE(1864), + [sym_sigil] = STATE(1864), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1864), + [sym_tuple] = STATE(1864), + [sym_bitstring] = STATE(1864), + [sym_map] = STATE(1864), + [sym_unary_operator] = STATE(1864), + [sym_binary_operator] = STATE(1864), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1864), + [sym_call] = STATE(1864), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1864), + [sym_stab_clause] = STATE(4938), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1864), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(680), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(682), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(750), + [sym_integer] = ACTIONS(750), + [sym_float] = ACTIONS(750), + [sym_char] = ACTIONS(750), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(750), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [92] = { + [sym__terminator] = STATE(114), + [sym__expression] = STATE(1736), + [sym_block] = STATE(1736), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1736), + [sym_nil] = STATE(1736), + [sym__atom] = STATE(1736), + [sym_quoted_atom] = STATE(1736), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1736), + [sym_charlist] = STATE(1736), + [sym_sigil] = STATE(1736), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1736), + [sym_call] = STATE(1736), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1736), + [sym_stab_clause] = STATE(4958), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1736), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(754), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(756), + [sym_integer] = ACTIONS(756), + [sym_float] = ACTIONS(756), + [sym_char] = ACTIONS(756), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(756), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [93] = { + [sym__terminator] = STATE(124), + [sym__expression] = STATE(1733), + [sym_block] = STATE(1733), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1733), + [sym_nil] = STATE(1733), + [sym__atom] = STATE(1733), + [sym_quoted_atom] = STATE(1733), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1733), + [sym_charlist] = STATE(1733), + [sym_sigil] = STATE(1733), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1733), + [sym_call] = STATE(1733), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1733), + [sym_stab_clause] = STATE(4936), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1733), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(760), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(762), + [sym_integer] = ACTIONS(762), + [sym_float] = ACTIONS(762), + [sym_char] = ACTIONS(762), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(762), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [94] = { + [sym__terminator] = STATE(114), + [sym__expression] = STATE(1739), + [sym_block] = STATE(1739), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1739), + [sym_nil] = STATE(1739), + [sym__atom] = STATE(1739), + [sym_quoted_atom] = STATE(1739), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1739), + [sym_charlist] = STATE(1739), + [sym_sigil] = STATE(1739), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1739), + [sym_call] = STATE(1739), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1739), + [sym_stab_clause] = STATE(4958), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1739), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(752), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(754), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(764), + [sym_integer] = ACTIONS(764), + [sym_float] = ACTIONS(764), + [sym_char] = ACTIONS(764), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(764), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [95] = { + [sym__terminator] = STATE(116), + [sym__expression] = STATE(1728), + [sym_block] = STATE(1728), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1728), + [sym_nil] = STATE(1728), + [sym__atom] = STATE(1728), + [sym_quoted_atom] = STATE(1728), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1728), + [sym_charlist] = STATE(1728), + [sym_sigil] = STATE(1728), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1728), + [sym_tuple] = STATE(1728), + [sym_bitstring] = STATE(1728), + [sym_map] = STATE(1728), + [sym_unary_operator] = STATE(1728), + [sym_binary_operator] = STATE(1728), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1728), + [sym_call] = STATE(1728), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1728), + [sym_stab_clause] = STATE(4916), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1728), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(734), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(736), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(766), + [sym_integer] = ACTIONS(766), + [sym_float] = ACTIONS(766), + [sym_char] = ACTIONS(766), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(766), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [96] = { + [sym__terminator] = STATE(122), + [sym__expression] = STATE(1940), + [sym_block] = STATE(1940), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1940), + [sym_nil] = STATE(1940), + [sym__atom] = STATE(1940), + [sym_quoted_atom] = STATE(1940), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1940), + [sym_charlist] = STATE(1940), + [sym_sigil] = STATE(1940), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1940), + [sym_tuple] = STATE(1940), + [sym_bitstring] = STATE(1940), + [sym_map] = STATE(1940), + [sym_unary_operator] = STATE(1940), + [sym_binary_operator] = STATE(1940), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1940), + [sym_call] = STATE(1940), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1940), + [sym_stab_clause] = STATE(5012), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1940), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(660), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(662), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(768), + [sym_integer] = ACTIONS(768), + [sym_float] = ACTIONS(768), + [sym_char] = ACTIONS(768), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(768), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [97] = { + [sym__terminator] = STATE(113), + [sym__expression] = STATE(1700), + [sym_block] = STATE(1700), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1700), + [sym_nil] = STATE(1700), + [sym__atom] = STATE(1700), + [sym_quoted_atom] = STATE(1700), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1700), + [sym_charlist] = STATE(1700), + [sym_sigil] = STATE(1700), + [sym_keywords] = STATE(5431), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1700), + [sym_tuple] = STATE(1700), + [sym_bitstring] = STATE(1700), + [sym_map] = STATE(1700), + [sym_unary_operator] = STATE(1700), + [sym_binary_operator] = STATE(1700), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1700), + [sym_call] = STATE(1700), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1700), + [sym_stab_clause] = STATE(5023), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1700), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(694), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(770), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(772), + [sym_integer] = ACTIONS(772), + [sym_float] = ACTIONS(772), + [sym_char] = ACTIONS(772), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(772), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [98] = { + [sym__terminator] = STATE(123), + [sym__expression] = STATE(1708), + [sym_block] = STATE(1708), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1708), + [sym_nil] = STATE(1708), + [sym__atom] = STATE(1708), + [sym_quoted_atom] = STATE(1708), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1708), + [sym_charlist] = STATE(1708), + [sym_sigil] = STATE(1708), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1708), + [sym_tuple] = STATE(1708), + [sym_bitstring] = STATE(1708), + [sym_map] = STATE(1708), + [sym_unary_operator] = STATE(1708), + [sym_binary_operator] = STATE(1708), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1708), + [sym_call] = STATE(1708), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1708), + [sym_stab_clause] = STATE(5016), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1708), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(744), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(746), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(774), + [sym_integer] = ACTIONS(774), + [sym_float] = ACTIONS(774), + [sym_char] = ACTIONS(774), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(774), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [99] = { + [sym__terminator] = STATE(124), + [sym__expression] = STATE(1731), + [sym_block] = STATE(1731), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1731), + [sym_nil] = STATE(1731), + [sym__atom] = STATE(1731), + [sym_quoted_atom] = STATE(1731), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1731), + [sym_charlist] = STATE(1731), + [sym_sigil] = STATE(1731), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1731), + [sym_call] = STATE(1731), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1731), + [sym_stab_clause] = STATE(4936), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1731), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(758), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(760), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(776), + [sym_integer] = ACTIONS(776), + [sym_float] = ACTIONS(776), + [sym_char] = ACTIONS(776), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(776), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [100] = { + [sym__terminator] = STATE(128), + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(4943), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [101] = { + [sym__terminator] = STATE(129), + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(4921), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(822), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [102] = { + [sym__terminator] = STATE(137), + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(5011), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(824), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [103] = { + [sym__terminator] = STATE(130), + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(4934), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(826), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [104] = { + [sym__terminator] = STATE(139), + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(4980), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(828), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [105] = { + [sym__terminator] = STATE(136), + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(4915), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(830), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [106] = { + [sym__expression] = STATE(2098), + [sym_block] = STATE(2098), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2098), + [sym_nil] = STATE(2098), + [sym__atom] = STATE(2098), + [sym_quoted_atom] = STATE(2098), + [sym__quoted_i_double] = STATE(1770), + [sym__quoted_i_single] = STATE(1771), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2098), + [sym_charlist] = STATE(2098), + [sym_sigil] = STATE(2098), + [sym_keywords] = STATE(2097), + [sym_pair] = STATE(2088), + [sym__keyword] = STATE(510), + [sym_quoted_keyword] = STATE(510), + [sym_list] = STATE(2098), + [sym_tuple] = STATE(2098), + [sym_bitstring] = STATE(2098), + [sym_map] = STATE(2098), + [sym_unary_operator] = STATE(2098), + [sym_binary_operator] = STATE(2098), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2098), + [sym_call] = STATE(2098), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym__call_arguments_with_parentheses_immediate] = STATE(1686), + [sym__call_arguments_without_parentheses] = STATE(1857), + [sym_do_block] = STATE(3155), + [sym_access_call] = STATE(2098), + [sym_anonymous_function] = STATE(2098), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(347), + [sym_integer] = ACTIONS(347), + [sym_float] = ACTIONS(347), + [sym_char] = ACTIONS(347), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(347), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(832), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(207), + [anon_sym_GT] = ACTIONS(207), + [anon_sym_PIPE] = ACTIONS(207), + [anon_sym_SLASH] = ACTIONS(207), + [anon_sym_TILDE] = ACTIONS(365), + [sym_keyword] = ACTIONS(367), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(397), + [anon_sym_DASH] = ACTIONS(397), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(207), + [anon_sym_BSLASH_BSLASH] = ACTIONS(207), + [anon_sym_when] = ACTIONS(207), + [anon_sym_COLON_COLON] = ACTIONS(207), + [anon_sym_EQ_GT] = ACTIONS(183), + [anon_sym_EQ] = ACTIONS(207), + [anon_sym_PIPE_PIPE] = ACTIONS(207), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(207), + [anon_sym_or] = ACTIONS(207), + [anon_sym_AMP_AMP] = ACTIONS(207), + [anon_sym_AMP_AMP_AMP] = ACTIONS(207), + [anon_sym_and] = ACTIONS(207), + [anon_sym_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ] = ACTIONS(207), + [anon_sym_EQ_TILDE] = ACTIONS(207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(207), + [anon_sym_LT_EQ] = ACTIONS(207), + [anon_sym_GT_EQ] = ACTIONS(207), + [anon_sym_PIPE_GT] = ACTIONS(207), + [anon_sym_LT_LT_LT] = ACTIONS(207), + [anon_sym_GT_GT_GT] = ACTIONS(207), + [anon_sym_LT_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT_GT] = ACTIONS(207), + [anon_sym_LT_TILDE] = ACTIONS(207), + [anon_sym_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_TILDE_GT] = ACTIONS(207), + [anon_sym_LT_PIPE_GT] = ACTIONS(207), + [anon_sym_in] = ACTIONS(207), + [anon_sym_CARET_CARET_CARET] = ACTIONS(183), + [anon_sym_SLASH_SLASH] = ACTIONS(183), + [anon_sym_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH] = ACTIONS(207), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(207), + [anon_sym_DASH_DASH_DASH] = ACTIONS(207), + [anon_sym_DOT_DOT] = ACTIONS(207), + [anon_sym_LT_GT] = ACTIONS(207), + [anon_sym_STAR] = ACTIONS(207), + [anon_sym_STAR_STAR] = ACTIONS(207), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(207), + [anon_sym_do] = ACTIONS(387), + [anon_sym_fn] = ACTIONS(379), + [anon_sym_LPAREN2] = ACTIONS(381), + [anon_sym_LBRACK2] = ACTIONS(181), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(233), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [107] = { + [sym__terminator] = STATE(131), + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(4976), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(834), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [108] = { + [sym__terminator] = STATE(132), + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(5029), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(836), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [109] = { + [sym__terminator] = STATE(135), + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(5002), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(838), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [110] = { + [sym__terminator] = STATE(127), + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(5020), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(840), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [111] = { + [sym__terminator] = STATE(125), + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(4957), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(842), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [112] = { + [sym__terminator] = STATE(126), + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(4894), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_repeat1] = STATE(1014), + [aux_sym__terminator_token1] = ACTIONS(658), + [anon_sym_SEMI] = ACTIONS(844), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [113] = { + [sym__expression] = STATE(1950), + [sym_block] = STATE(1950), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1950), + [sym_nil] = STATE(1950), + [sym__atom] = STATE(1950), + [sym_quoted_atom] = STATE(1950), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1950), + [sym_charlist] = STATE(1950), + [sym_sigil] = STATE(1950), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1950), + [sym_call] = STATE(1950), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1950), + [sym_stab_clause] = STATE(5010), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1950), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(846), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(848), + [sym_integer] = ACTIONS(848), + [sym_float] = ACTIONS(848), + [sym_char] = ACTIONS(848), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(848), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [114] = { + [sym__expression] = STATE(1734), + [sym_block] = STATE(1734), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1734), + [sym_nil] = STATE(1734), + [sym__atom] = STATE(1734), + [sym_quoted_atom] = STATE(1734), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1734), + [sym_charlist] = STATE(1734), + [sym_sigil] = STATE(1734), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1734), + [sym_call] = STATE(1734), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1734), + [sym_stab_clause] = STATE(4954), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1734), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(850), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(852), + [sym_integer] = ACTIONS(852), + [sym_float] = ACTIONS(852), + [sym_char] = ACTIONS(852), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(852), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [115] = { + [sym__expression] = STATE(1911), + [sym_block] = STATE(1911), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1911), + [sym_nil] = STATE(1911), + [sym__atom] = STATE(1911), + [sym_quoted_atom] = STATE(1911), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1911), + [sym_charlist] = STATE(1911), + [sym_sigil] = STATE(1911), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1911), + [sym_call] = STATE(1911), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1911), + [sym_stab_clause] = STATE(4948), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1911), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(854), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(856), + [sym_integer] = ACTIONS(856), + [sym_float] = ACTIONS(856), + [sym_char] = ACTIONS(856), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(856), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [116] = { + [sym__expression] = STATE(1729), + [sym_block] = STATE(1729), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1729), + [sym_nil] = STATE(1729), + [sym__atom] = STATE(1729), + [sym_quoted_atom] = STATE(1729), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1729), + [sym_charlist] = STATE(1729), + [sym_sigil] = STATE(1729), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1729), + [sym_call] = STATE(1729), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1729), + [sym_stab_clause] = STATE(4913), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1729), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(858), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(860), + [sym_integer] = ACTIONS(860), + [sym_float] = ACTIONS(860), + [sym_char] = ACTIONS(860), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(860), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [117] = { + [sym__expression] = STATE(1738), + [sym_block] = STATE(1738), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1738), + [sym_nil] = STATE(1738), + [sym__atom] = STATE(1738), + [sym_quoted_atom] = STATE(1738), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1738), + [sym_charlist] = STATE(1738), + [sym_sigil] = STATE(1738), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1738), + [sym_call] = STATE(1738), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1738), + [sym_stab_clause] = STATE(4974), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1738), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(862), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(864), + [sym_integer] = ACTIONS(864), + [sym_float] = ACTIONS(864), + [sym_char] = ACTIONS(864), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(864), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [118] = { + [sym__expression] = STATE(1935), + [sym_block] = STATE(1935), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1935), + [sym_nil] = STATE(1935), + [sym__atom] = STATE(1935), + [sym_quoted_atom] = STATE(1935), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1935), + [sym_charlist] = STATE(1935), + [sym_sigil] = STATE(1935), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1935), + [sym_tuple] = STATE(1935), + [sym_bitstring] = STATE(1935), + [sym_map] = STATE(1935), + [sym_unary_operator] = STATE(1935), + [sym_binary_operator] = STATE(1935), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1935), + [sym_call] = STATE(1935), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1935), + [sym_stab_clause] = STATE(4903), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1935), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(866), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(868), + [sym_integer] = ACTIONS(868), + [sym_float] = ACTIONS(868), + [sym_char] = ACTIONS(868), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(868), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [119] = { + [sym__expression] = STATE(1723), + [sym_block] = STATE(1723), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1723), + [sym_nil] = STATE(1723), + [sym__atom] = STATE(1723), + [sym_quoted_atom] = STATE(1723), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1723), + [sym_charlist] = STATE(1723), + [sym_sigil] = STATE(1723), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1723), + [sym_call] = STATE(1723), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1723), + [sym_stab_clause] = STATE(5026), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1723), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(870), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(872), + [sym_integer] = ACTIONS(872), + [sym_float] = ACTIONS(872), + [sym_char] = ACTIONS(872), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(872), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [120] = { + [sym__expression] = STATE(1726), + [sym_block] = STATE(1726), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1726), + [sym_nil] = STATE(1726), + [sym__atom] = STATE(1726), + [sym_quoted_atom] = STATE(1726), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1726), + [sym_charlist] = STATE(1726), + [sym_sigil] = STATE(1726), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1726), + [sym_call] = STATE(1726), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1726), + [sym_stab_clause] = STATE(4927), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1726), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(874), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(876), + [sym_integer] = ACTIONS(876), + [sym_float] = ACTIONS(876), + [sym_char] = ACTIONS(876), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [121] = { + [sym__expression] = STATE(1943), + [sym_block] = STATE(1943), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1943), + [sym_nil] = STATE(1943), + [sym__atom] = STATE(1943), + [sym_quoted_atom] = STATE(1943), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1943), + [sym_charlist] = STATE(1943), + [sym_sigil] = STATE(1943), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1943), + [sym_tuple] = STATE(1943), + [sym_bitstring] = STATE(1943), + [sym_map] = STATE(1943), + [sym_unary_operator] = STATE(1943), + [sym_binary_operator] = STATE(1943), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1943), + [sym_call] = STATE(1943), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1943), + [sym_stab_clause] = STATE(4981), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1943), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(878), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(880), + [sym_integer] = ACTIONS(880), + [sym_float] = ACTIONS(880), + [sym_char] = ACTIONS(880), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(880), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [122] = { + [sym__expression] = STATE(1741), + [sym_block] = STATE(1741), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1741), + [sym_nil] = STATE(1741), + [sym__atom] = STATE(1741), + [sym_quoted_atom] = STATE(1741), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1741), + [sym_charlist] = STATE(1741), + [sym_sigil] = STATE(1741), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1741), + [sym_call] = STATE(1741), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1741), + [sym_stab_clause] = STATE(5027), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1741), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(882), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(884), + [sym_integer] = ACTIONS(884), + [sym_float] = ACTIONS(884), + [sym_char] = ACTIONS(884), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(884), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [123] = { + [sym__expression] = STATE(1717), + [sym_block] = STATE(1717), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1717), + [sym_nil] = STATE(1717), + [sym__atom] = STATE(1717), + [sym_quoted_atom] = STATE(1717), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1717), + [sym_charlist] = STATE(1717), + [sym_sigil] = STATE(1717), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(1717), + [sym_tuple] = STATE(1717), + [sym_bitstring] = STATE(1717), + [sym_map] = STATE(1717), + [sym_unary_operator] = STATE(1717), + [sym_binary_operator] = STATE(1717), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1717), + [sym_call] = STATE(1717), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1717), + [sym_stab_clause] = STATE(5000), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1717), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(886), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(888), + [sym_integer] = ACTIONS(888), + [sym_float] = ACTIONS(888), + [sym_char] = ACTIONS(888), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(888), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [124] = { + [sym__expression] = STATE(1732), + [sym_block] = STATE(1732), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1732), + [sym_nil] = STATE(1732), + [sym__atom] = STATE(1732), + [sym_quoted_atom] = STATE(1732), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1732), + [sym_charlist] = STATE(1732), + [sym_sigil] = STATE(1732), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5565), + [sym_dot] = STATE(1732), + [sym_call] = STATE(1732), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1732), + [sym_stab_clause] = STATE(4933), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(1732), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(61), + [anon_sym_RPAREN] = ACTIONS(890), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(892), + [sym_integer] = ACTIONS(892), + [sym_float] = ACTIONS(892), + [sym_char] = ACTIONS(892), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(892), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [125] = { + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(4947), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [126] = { + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(4917), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [127] = { + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(5021), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [128] = { + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(4891), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [129] = { + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(4951), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [130] = { + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(4928), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [131] = { + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(4968), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [132] = { + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(5014), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [133] = { + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(5442), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [134] = { + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(4394), + [sym__stab_clause_left] = STATE(5644), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(97), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [135] = { + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(5019), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [136] = { + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(4909), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [137] = { + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(4990), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [138] = { + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(4394), + [sym__stab_clause_left] = STATE(5612), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(676), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [139] = { + [sym__expression] = STATE(3840), + [sym_block] = STATE(3840), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3840), + [sym_nil] = STATE(3840), + [sym__atom] = STATE(3840), + [sym_quoted_atom] = STATE(3840), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3840), + [sym_charlist] = STATE(3840), + [sym_sigil] = STATE(3840), + [sym_keywords] = STATE(5457), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3840), + [sym_tuple] = STATE(3840), + [sym_bitstring] = STATE(3840), + [sym_map] = STATE(3840), + [sym_unary_operator] = STATE(3840), + [sym_binary_operator] = STATE(3840), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3840), + [sym_call] = STATE(3840), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3840), + [sym_stab_clause] = STATE(5017), + [sym__stab_clause_left] = STATE(5601), + [sym__stab_clause_arguments_with_parentheses] = STATE(5460), + [sym__stab_clause_arguments_without_parentheses] = STATE(5461), + [sym__stab_clause_arguments_with_parentheses_with_guard] = STATE(5607), + [sym__stab_clause_arguments_without_parentheses_with_guard] = STATE(5606), + [sym_anonymous_function] = STATE(3840), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(780), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(784), + [sym_integer] = ACTIONS(784), + [sym_float] = ACTIONS(784), + [sym_char] = ACTIONS(784), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(784), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(814), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [140] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), [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), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4299), + [sym_rescue_block] = STATE(4299), + [sym_catch_block] = STATE(4299), + [sym_else_block] = STATE(4299), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4299), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(926), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), [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), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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(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(2009), - [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), - }, - [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), + [141] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), [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), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4313), + [sym_rescue_block] = STATE(4313), + [sym_catch_block] = STATE(4313), + [sym_else_block] = STATE(4313), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4313), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(934), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), [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), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [142] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4314), + [sym_rescue_block] = STATE(4314), + [sym_catch_block] = STATE(4314), + [sym_else_block] = STATE(4314), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4314), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(936), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), [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), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [143] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4272), + [sym_rescue_block] = STATE(4272), + [sym_catch_block] = STATE(4272), + [sym_else_block] = STATE(4272), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4272), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(938), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), [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), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [144] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4270), + [sym_rescue_block] = STATE(4270), + [sym_catch_block] = STATE(4270), + [sym_else_block] = STATE(4270), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4270), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(940), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), [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), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [145] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4305), + [sym_rescue_block] = STATE(4305), + [sym_catch_block] = STATE(4305), + [sym_else_block] = STATE(4305), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4305), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(942), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), [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(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [146] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4310), + [sym_rescue_block] = STATE(4310), + [sym_catch_block] = STATE(4310), + [sym_else_block] = STATE(4310), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4310), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(944), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), [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), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [147] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4304), + [sym_rescue_block] = STATE(4304), + [sym_catch_block] = STATE(4304), + [sym_else_block] = STATE(4304), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4304), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(946), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), [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), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [148] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4297), + [sym_rescue_block] = STATE(4297), + [sym_catch_block] = STATE(4297), + [sym_else_block] = STATE(4297), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4297), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(948), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), [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), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [585] = { - [sym__expression] = STATE(4146), - [sym_block] = STATE(4146), - [sym__identifier] = STATE(48), + [149] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4309), + [sym_rescue_block] = STATE(4309), + [sym_catch_block] = STATE(4309), + [sym_else_block] = STATE(4309), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4309), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(950), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [150] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4302), + [sym_rescue_block] = STATE(4302), + [sym_catch_block] = STATE(4302), + [sym_else_block] = STATE(4302), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4302), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(952), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [151] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4318), + [sym_rescue_block] = STATE(4318), + [sym_catch_block] = STATE(4318), + [sym_else_block] = STATE(4318), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4318), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(954), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [152] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4281), + [sym_rescue_block] = STATE(4281), + [sym_catch_block] = STATE(4281), + [sym_else_block] = STATE(4281), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4281), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(956), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [153] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4312), + [sym_rescue_block] = STATE(4312), + [sym_catch_block] = STATE(4312), + [sym_else_block] = STATE(4312), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4312), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(958), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [154] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4289), + [sym_rescue_block] = STATE(4289), + [sym_catch_block] = STATE(4289), + [sym_else_block] = STATE(4289), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4289), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(960), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [155] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4298), + [sym_rescue_block] = STATE(4298), + [sym_catch_block] = STATE(4298), + [sym_else_block] = STATE(4298), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4298), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(962), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [156] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4282), + [sym_rescue_block] = STATE(4282), + [sym_catch_block] = STATE(4282), + [sym_else_block] = STATE(4282), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4282), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(964), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [157] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4293), + [sym_rescue_block] = STATE(4293), + [sym_catch_block] = STATE(4293), + [sym_else_block] = STATE(4293), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4293), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(966), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [158] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4311), + [sym_rescue_block] = STATE(4311), + [sym_catch_block] = STATE(4311), + [sym_else_block] = STATE(4311), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4311), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(968), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [159] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4296), + [sym_rescue_block] = STATE(4296), + [sym_catch_block] = STATE(4296), + [sym_else_block] = STATE(4296), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4296), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(970), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [160] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4295), + [sym_rescue_block] = STATE(4295), + [sym_catch_block] = STATE(4295), + [sym_else_block] = STATE(4295), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4295), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(972), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [161] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4265), + [sym_rescue_block] = STATE(4265), + [sym_catch_block] = STATE(4265), + [sym_else_block] = STATE(4265), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4265), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(974), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [162] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4294), + [sym_rescue_block] = STATE(4294), + [sym_catch_block] = STATE(4294), + [sym_else_block] = STATE(4294), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4294), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(976), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [163] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4300), + [sym_rescue_block] = STATE(4300), + [sym_catch_block] = STATE(4300), + [sym_else_block] = STATE(4300), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4300), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(978), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [164] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4301), + [sym_rescue_block] = STATE(4301), + [sym_catch_block] = STATE(4301), + [sym_else_block] = STATE(4301), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4301), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(980), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [165] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4274), + [sym_rescue_block] = STATE(4274), + [sym_catch_block] = STATE(4274), + [sym_else_block] = STATE(4274), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4274), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(982), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [166] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4262), + [sym_rescue_block] = STATE(4262), + [sym_catch_block] = STATE(4262), + [sym_else_block] = STATE(4262), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4262), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(984), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [167] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4268), + [sym_rescue_block] = STATE(4268), + [sym_catch_block] = STATE(4268), + [sym_else_block] = STATE(4268), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4268), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(986), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [168] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4306), + [sym_rescue_block] = STATE(4306), + [sym_catch_block] = STATE(4306), + [sym_else_block] = STATE(4306), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4306), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(988), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [169] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4288), + [sym_rescue_block] = STATE(4288), + [sym_catch_block] = STATE(4288), + [sym_else_block] = STATE(4288), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4288), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(990), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [170] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4261), + [sym_rescue_block] = STATE(4261), + [sym_catch_block] = STATE(4261), + [sym_else_block] = STATE(4261), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4261), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(992), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [171] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4286), + [sym_rescue_block] = STATE(4286), + [sym_catch_block] = STATE(4286), + [sym_else_block] = STATE(4286), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4286), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(994), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [172] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4273), + [sym_rescue_block] = STATE(4273), + [sym_catch_block] = STATE(4273), + [sym_else_block] = STATE(4273), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4273), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(996), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [173] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4260), + [sym_rescue_block] = STATE(4260), + [sym_catch_block] = STATE(4260), + [sym_else_block] = STATE(4260), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4260), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(998), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [174] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4263), + [sym_rescue_block] = STATE(4263), + [sym_catch_block] = STATE(4263), + [sym_else_block] = STATE(4263), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4263), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(1000), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [175] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_after_block] = STATE(4303), + [sym_rescue_block] = STATE(4303), + [sym_catch_block] = STATE(4303), + [sym_else_block] = STATE(4303), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym_do_block_repeat1] = STATE(4303), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(1002), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(109), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [176] = { + [sym__terminator] = STATE(668), + [sym__expression] = STATE(1635), + [sym_block] = STATE(1635), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(1635), + [sym_nil] = STATE(1635), + [sym__atom] = STATE(1635), + [sym_quoted_atom] = STATE(1635), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(1635), + [sym_charlist] = STATE(1635), + [sym_sigil] = STATE(1635), + [sym_list] = STATE(1635), + [sym_tuple] = STATE(1635), + [sym_bitstring] = STATE(1635), + [sym_map] = STATE(1635), + [sym_unary_operator] = STATE(1635), + [sym_binary_operator] = STATE(1635), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(1635), + [sym_call] = STATE(1635), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(1635), + [sym_body] = STATE(4395), + [sym_anonymous_function] = STATE(1635), + [aux_sym__terminator_repeat1] = STATE(1020), + [aux_sym__terminator_token1] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(1008), + [sym_integer] = ACTIONS(1008), + [sym_float] = ACTIONS(1008), + [sym_char] = ACTIONS(1008), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(1013), + [anon_sym_catch] = ACTIONS(1013), + [anon_sym_else] = ACTIONS(1013), + [anon_sym_end] = ACTIONS(1013), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(1013), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [177] = { + [sym__terminator] = STATE(668), + [sym__expression] = STATE(1635), + [sym_block] = STATE(1635), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(1635), + [sym_nil] = STATE(1635), + [sym__atom] = STATE(1635), + [sym_quoted_atom] = STATE(1635), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(1635), + [sym_charlist] = STATE(1635), + [sym_sigil] = STATE(1635), + [sym_list] = STATE(1635), + [sym_tuple] = STATE(1635), + [sym_bitstring] = STATE(1635), + [sym_map] = STATE(1635), + [sym_unary_operator] = STATE(1635), + [sym_binary_operator] = STATE(1635), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(1635), + [sym_call] = STATE(1635), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(1635), + [sym_body] = STATE(4396), + [sym_anonymous_function] = STATE(1635), + [aux_sym__terminator_repeat1] = STATE(1020), + [aux_sym__terminator_token1] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1006), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(1008), + [sym_integer] = ACTIONS(1008), + [sym_float] = ACTIONS(1008), + [sym_char] = ACTIONS(1008), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1008), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(1015), + [anon_sym_catch] = ACTIONS(1015), + [anon_sym_else] = ACTIONS(1015), + [anon_sym_end] = ACTIONS(1015), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(1015), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [178] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), [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), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5589), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), [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), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1037), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), [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), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, - [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), + [179] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), [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), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5599), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), [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), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1059), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), [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), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, - [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), + [180] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), [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), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5637), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), [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), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1061), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), [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), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, - [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), + [181] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5598), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), [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), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1063), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), [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), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, - [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), + [182] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5636), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), [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), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1065), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), [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), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, - [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), + [183] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5626), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), [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), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), [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), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, - [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), + [184] = { + [sym__expression] = STATE(3943), + [sym_block] = STATE(3943), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3943), + [sym_nil] = STATE(3943), + [sym__atom] = STATE(3943), + [sym_quoted_atom] = STATE(3943), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3943), + [sym_charlist] = STATE(3943), + [sym_sigil] = STATE(3943), + [sym__keywords_with_trailing_separator] = STATE(5623), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3943), + [sym_tuple] = STATE(3943), + [sym_bitstring] = STATE(3943), + [sym_map] = STATE(3943), + [sym_unary_operator] = STATE(3943), + [sym_binary_operator] = STATE(3943), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3943), + [sym_call] = STATE(3943), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym__call_arguments_with_trailing_separator] = STATE(5623), + [sym_access_call] = STATE(3943), + [sym_anonymous_function] = STATE(3943), [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), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1069), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), [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), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, - [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), + [185] = { + [sym__expression] = STATE(3943), + [sym_block] = STATE(3943), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3943), + [sym_nil] = STATE(3943), + [sym__atom] = STATE(3943), + [sym_quoted_atom] = STATE(3943), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3943), + [sym_charlist] = STATE(3943), + [sym_sigil] = STATE(3943), + [sym__keywords_with_trailing_separator] = STATE(5622), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3943), + [sym_tuple] = STATE(3943), + [sym_bitstring] = STATE(3943), + [sym_map] = STATE(3943), + [sym_unary_operator] = STATE(3943), + [sym_binary_operator] = STATE(3943), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3943), + [sym_call] = STATE(3943), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym__call_arguments_with_trailing_separator] = STATE(5622), + [sym_access_call] = STATE(3943), + [sym_anonymous_function] = STATE(3943), [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), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1073), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), [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), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, - [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), + [186] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5635), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), [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), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), [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), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, - [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), + [187] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5555), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), [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), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1077), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), [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), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, - [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), + [188] = { + [sym__expression] = STATE(3717), + [sym_block] = STATE(3717), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3717), + [sym_nil] = STATE(3717), + [sym__atom] = STATE(3717), + [sym_quoted_atom] = STATE(3717), + [sym__quoted_i_double] = STATE(3814), + [sym__quoted_i_single] = STATE(3817), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(3717), + [sym_charlist] = STATE(3717), + [sym_sigil] = STATE(3717), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5430), + [sym__keyword] = STATE(673), + [sym_quoted_keyword] = STATE(673), + [sym_list] = STATE(3717), + [sym_tuple] = STATE(3717), + [sym_bitstring] = STATE(3717), + [sym_map] = STATE(3717), + [sym__items_with_trailing_separator] = STATE(5652), + [sym_unary_operator] = STATE(3717), + [sym_binary_operator] = STATE(3717), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(3717), + [sym_call] = STATE(3717), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [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(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), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1083), + [sym_integer] = ACTIONS(1083), + [sym_float] = ACTIONS(1083), + [sym_char] = ACTIONS(1083), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [sym_keyword] = ACTIONS(1103), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1107), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), [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), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), }, - [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), + [189] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5542), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), [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), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1123), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), [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), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, - [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), + [190] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5653), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1125), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [191] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5619), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [192] = { + [sym__expression] = STATE(3943), + [sym_block] = STATE(3943), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3943), + [sym_nil] = STATE(3943), + [sym__atom] = STATE(3943), + [sym_quoted_atom] = STATE(3943), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3943), + [sym_charlist] = STATE(3943), + [sym_sigil] = STATE(3943), + [sym__keywords_with_trailing_separator] = STATE(5615), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3943), + [sym_tuple] = STATE(3943), + [sym_bitstring] = STATE(3943), + [sym_map] = STATE(3943), + [sym_unary_operator] = STATE(3943), + [sym_binary_operator] = STATE(3943), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3943), + [sym_call] = STATE(3943), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym__call_arguments_with_trailing_separator] = STATE(5615), + [sym_access_call] = STATE(3943), + [sym_anonymous_function] = STATE(3943), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1129), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [193] = { + [sym__expression] = STATE(3943), + [sym_block] = STATE(3943), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3943), + [sym_nil] = STATE(3943), + [sym__atom] = STATE(3943), + [sym_quoted_atom] = STATE(3943), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3943), + [sym_charlist] = STATE(3943), + [sym_sigil] = STATE(3943), + [sym__keywords_with_trailing_separator] = STATE(5627), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3943), + [sym_tuple] = STATE(3943), + [sym_bitstring] = STATE(3943), + [sym_map] = STATE(3943), + [sym_unary_operator] = STATE(3943), + [sym_binary_operator] = STATE(3943), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3943), + [sym_call] = STATE(3943), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym__call_arguments_with_trailing_separator] = STATE(5627), + [sym_access_call] = STATE(3943), + [sym_anonymous_function] = STATE(3943), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1131), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [194] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5553), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1133), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [195] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5646), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [196] = { + [sym__expression] = STATE(3717), + [sym_block] = STATE(3717), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3717), + [sym_nil] = STATE(3717), + [sym__atom] = STATE(3717), + [sym_quoted_atom] = STATE(3717), + [sym__quoted_i_double] = STATE(3814), + [sym__quoted_i_single] = STATE(3817), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(3717), + [sym_charlist] = STATE(3717), + [sym_sigil] = STATE(3717), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5430), + [sym__keyword] = STATE(673), + [sym_quoted_keyword] = STATE(673), + [sym_list] = STATE(3717), + [sym_tuple] = STATE(3717), + [sym_bitstring] = STATE(3717), + [sym_map] = STATE(3717), + [sym__items_with_trailing_separator] = STATE(5561), + [sym_unary_operator] = STATE(3717), + [sym_binary_operator] = STATE(3717), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(3717), + [sym_call] = STATE(3717), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(3717), + [sym_anonymous_function] = STATE(3717), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1083), + [sym_integer] = ACTIONS(1083), + [sym_float] = ACTIONS(1083), + [sym_char] = ACTIONS(1083), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [sym_keyword] = ACTIONS(1103), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1137), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [197] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5560), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1139), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [198] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5617), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1141), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [199] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5558), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1143), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [200] = { + [sym__expression] = STATE(3717), + [sym_block] = STATE(3717), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3717), + [sym_nil] = STATE(3717), + [sym__atom] = STATE(3717), + [sym_quoted_atom] = STATE(3717), + [sym__quoted_i_double] = STATE(3814), + [sym__quoted_i_single] = STATE(3817), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(3717), + [sym_charlist] = STATE(3717), + [sym_sigil] = STATE(3717), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5430), + [sym__keyword] = STATE(673), + [sym_quoted_keyword] = STATE(673), + [sym_list] = STATE(3717), + [sym_tuple] = STATE(3717), + [sym_bitstring] = STATE(3717), + [sym_map] = STATE(3717), + [sym__items_with_trailing_separator] = STATE(5614), + [sym_unary_operator] = STATE(3717), + [sym_binary_operator] = STATE(3717), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(3717), + [sym_call] = STATE(3717), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(3717), + [sym_anonymous_function] = STATE(3717), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1083), + [sym_integer] = ACTIONS(1083), + [sym_float] = ACTIONS(1083), + [sym_char] = ACTIONS(1083), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [sym_keyword] = ACTIONS(1103), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1145), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [201] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5530), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1147), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [202] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5566), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1149), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [203] = { + [sym__expression] = STATE(3943), + [sym_block] = STATE(3943), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3943), + [sym_nil] = STATE(3943), + [sym__atom] = STATE(3943), + [sym_quoted_atom] = STATE(3943), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3943), + [sym_charlist] = STATE(3943), + [sym_sigil] = STATE(3943), + [sym__keywords_with_trailing_separator] = STATE(5638), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3943), + [sym_tuple] = STATE(3943), + [sym_bitstring] = STATE(3943), + [sym_map] = STATE(3943), + [sym_unary_operator] = STATE(3943), + [sym_binary_operator] = STATE(3943), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3943), + [sym_call] = STATE(3943), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym__call_arguments_with_trailing_separator] = STATE(5638), + [sym_access_call] = STATE(3943), + [sym_anonymous_function] = STATE(3943), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1151), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [204] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5547), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1153), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [205] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5611), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1155), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [206] = { + [sym__expression] = STATE(3717), + [sym_block] = STATE(3717), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3717), + [sym_nil] = STATE(3717), + [sym__atom] = STATE(3717), + [sym_quoted_atom] = STATE(3717), + [sym__quoted_i_double] = STATE(3814), + [sym__quoted_i_single] = STATE(3817), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(3717), + [sym_charlist] = STATE(3717), + [sym_sigil] = STATE(3717), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5430), + [sym__keyword] = STATE(673), + [sym_quoted_keyword] = STATE(673), + [sym_list] = STATE(3717), + [sym_tuple] = STATE(3717), + [sym_bitstring] = STATE(3717), + [sym_map] = STATE(3717), + [sym__items_with_trailing_separator] = STATE(5585), + [sym_unary_operator] = STATE(3717), + [sym_binary_operator] = STATE(3717), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(3717), + [sym_call] = STATE(3717), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(3717), + [sym_anonymous_function] = STATE(3717), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1083), + [sym_integer] = ACTIONS(1083), + [sym_float] = ACTIONS(1083), + [sym_char] = ACTIONS(1083), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [sym_keyword] = ACTIONS(1103), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1157), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [207] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5649), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [208] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5605), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1161), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [209] = { + [sym__expression] = STATE(3943), + [sym_block] = STATE(3943), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3943), + [sym_nil] = STATE(3943), + [sym__atom] = STATE(3943), + [sym_quoted_atom] = STATE(3943), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3943), + [sym_charlist] = STATE(3943), + [sym_sigil] = STATE(3943), + [sym__keywords_with_trailing_separator] = STATE(5551), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3943), + [sym_tuple] = STATE(3943), + [sym_bitstring] = STATE(3943), + [sym_map] = STATE(3943), + [sym_unary_operator] = STATE(3943), + [sym_binary_operator] = STATE(3943), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3943), + [sym_call] = STATE(3943), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym__call_arguments_with_trailing_separator] = STATE(5551), + [sym_access_call] = STATE(3943), + [sym_anonymous_function] = STATE(3943), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1163), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [210] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5587), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1165), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [211] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5629), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1167), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [212] = { + [sym__expression] = STATE(3717), + [sym_block] = STATE(3717), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3717), + [sym_nil] = STATE(3717), + [sym__atom] = STATE(3717), + [sym_quoted_atom] = STATE(3717), + [sym__quoted_i_double] = STATE(3814), + [sym__quoted_i_single] = STATE(3817), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(3717), + [sym_charlist] = STATE(3717), + [sym_sigil] = STATE(3717), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5430), + [sym__keyword] = STATE(673), + [sym_quoted_keyword] = STATE(673), + [sym_list] = STATE(3717), + [sym_tuple] = STATE(3717), + [sym_bitstring] = STATE(3717), + [sym_map] = STATE(3717), + [sym__items_with_trailing_separator] = STATE(5538), + [sym_unary_operator] = STATE(3717), + [sym_binary_operator] = STATE(3717), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(3717), + [sym_call] = STATE(3717), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(3717), + [sym_anonymous_function] = STATE(3717), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1083), + [sym_integer] = ACTIONS(1083), + [sym_float] = ACTIONS(1083), + [sym_char] = ACTIONS(1083), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [sym_keyword] = ACTIONS(1103), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1169), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [213] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5533), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [214] = { + [sym__expression] = STATE(3943), + [sym_block] = STATE(3943), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3943), + [sym_nil] = STATE(3943), + [sym__atom] = STATE(3943), + [sym_quoted_atom] = STATE(3943), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3943), + [sym_charlist] = STATE(3943), + [sym_sigil] = STATE(3943), + [sym__keywords_with_trailing_separator] = STATE(5604), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3943), + [sym_tuple] = STATE(3943), + [sym_bitstring] = STATE(3943), + [sym_map] = STATE(3943), + [sym_unary_operator] = STATE(3943), + [sym_binary_operator] = STATE(3943), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3943), + [sym_call] = STATE(3943), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym__call_arguments_with_trailing_separator] = STATE(5604), + [sym_access_call] = STATE(3943), + [sym_anonymous_function] = STATE(3943), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1173), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [215] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5621), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1175), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [216] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5590), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1177), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [217] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5591), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1179), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [218] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5628), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1181), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [219] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5620), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1183), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [220] = { + [sym__expression] = STATE(3943), + [sym_block] = STATE(3943), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3943), + [sym_nil] = STATE(3943), + [sym__atom] = STATE(3943), + [sym_quoted_atom] = STATE(3943), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3943), + [sym_charlist] = STATE(3943), + [sym_sigil] = STATE(3943), + [sym__keywords_with_trailing_separator] = STATE(5609), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3943), + [sym_tuple] = STATE(3943), + [sym_bitstring] = STATE(3943), + [sym_map] = STATE(3943), + [sym_unary_operator] = STATE(3943), + [sym_binary_operator] = STATE(3943), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3943), + [sym_call] = STATE(3943), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym__call_arguments_with_trailing_separator] = STATE(5609), + [sym_access_call] = STATE(3943), + [sym_anonymous_function] = STATE(3943), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1185), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [221] = { + [sym__expression] = STATE(3943), + [sym_block] = STATE(3943), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3943), + [sym_nil] = STATE(3943), + [sym__atom] = STATE(3943), + [sym_quoted_atom] = STATE(3943), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3943), + [sym_charlist] = STATE(3943), + [sym_sigil] = STATE(3943), + [sym__keywords_with_trailing_separator] = STATE(5588), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3943), + [sym_tuple] = STATE(3943), + [sym_bitstring] = STATE(3943), + [sym_map] = STATE(3943), + [sym_unary_operator] = STATE(3943), + [sym_binary_operator] = STATE(3943), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3943), + [sym_call] = STATE(3943), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym__call_arguments_with_trailing_separator] = STATE(5588), + [sym_access_call] = STATE(3943), + [sym_anonymous_function] = STATE(3943), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1187), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [222] = { + [sym__expression] = STATE(3717), + [sym_block] = STATE(3717), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3717), + [sym_nil] = STATE(3717), + [sym__atom] = STATE(3717), + [sym_quoted_atom] = STATE(3717), + [sym__quoted_i_double] = STATE(3814), + [sym__quoted_i_single] = STATE(3817), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(3717), + [sym_charlist] = STATE(3717), + [sym_sigil] = STATE(3717), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5430), + [sym__keyword] = STATE(673), + [sym_quoted_keyword] = STATE(673), + [sym_list] = STATE(3717), + [sym_tuple] = STATE(3717), + [sym_bitstring] = STATE(3717), + [sym_map] = STATE(3717), + [sym__items_with_trailing_separator] = STATE(5639), + [sym_unary_operator] = STATE(3717), + [sym_binary_operator] = STATE(3717), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(3717), + [sym_call] = STATE(3717), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(3717), + [sym_anonymous_function] = STATE(3717), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1083), + [sym_integer] = ACTIONS(1083), + [sym_float] = ACTIONS(1083), + [sym_char] = ACTIONS(1083), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [sym_keyword] = ACTIONS(1103), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1189), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [223] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5642), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1191), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [224] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5641), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1193), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [225] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5572), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [226] = { + [sym__expression] = STATE(3552), + [sym_block] = STATE(3552), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3552), + [sym_nil] = STATE(3552), + [sym__atom] = STATE(3552), + [sym_quoted_atom] = STATE(3552), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3552), + [sym_charlist] = STATE(3552), + [sym_sigil] = STATE(3552), + [sym__keywords_with_trailing_separator] = STATE(5438), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3552), + [sym_tuple] = STATE(3552), + [sym_bitstring] = STATE(3552), + [sym_map] = STATE(3552), + [sym_unary_operator] = STATE(3552), + [sym_binary_operator] = STATE(3552), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3552), + [sym_call] = STATE(3552), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3552), + [sym_anonymous_function] = STATE(3552), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1197), + [sym_integer] = ACTIONS(1197), + [sym_float] = ACTIONS(1197), + [sym_char] = ACTIONS(1197), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1199), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [227] = { + [sym__expression] = STATE(3717), + [sym_block] = STATE(3717), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3717), + [sym_nil] = STATE(3717), + [sym__atom] = STATE(3717), + [sym_quoted_atom] = STATE(3717), + [sym__quoted_i_double] = STATE(3814), + [sym__quoted_i_single] = STATE(3817), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(3717), + [sym_charlist] = STATE(3717), + [sym_sigil] = STATE(3717), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5430), + [sym__keyword] = STATE(673), + [sym_quoted_keyword] = STATE(673), + [sym_list] = STATE(3717), + [sym_tuple] = STATE(3717), + [sym_bitstring] = STATE(3717), + [sym_map] = STATE(3717), + [sym__items_with_trailing_separator] = STATE(5567), + [sym_unary_operator] = STATE(3717), + [sym_binary_operator] = STATE(3717), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(3717), + [sym_call] = STATE(3717), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(3717), + [sym_anonymous_function] = STATE(3717), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1083), + [sym_integer] = ACTIONS(1083), + [sym_float] = ACTIONS(1083), + [sym_char] = ACTIONS(1083), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [sym_keyword] = ACTIONS(1103), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1201), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [228] = { + [sym__expression] = STATE(3943), + [sym_block] = STATE(3943), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3943), + [sym_nil] = STATE(3943), + [sym__atom] = STATE(3943), + [sym_quoted_atom] = STATE(3943), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3943), + [sym_charlist] = STATE(3943), + [sym_sigil] = STATE(3943), + [sym__keywords_with_trailing_separator] = STATE(5571), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3943), + [sym_tuple] = STATE(3943), + [sym_bitstring] = STATE(3943), + [sym_map] = STATE(3943), + [sym_unary_operator] = STATE(3943), + [sym_binary_operator] = STATE(3943), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3943), + [sym_call] = STATE(3943), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym__call_arguments_with_trailing_separator] = STATE(5571), + [sym_access_call] = STATE(3943), + [sym_anonymous_function] = STATE(3943), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1203), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [229] = { + [sym__expression] = STATE(3943), + [sym_block] = STATE(3943), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3943), + [sym_nil] = STATE(3943), + [sym__atom] = STATE(3943), + [sym_quoted_atom] = STATE(3943), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3943), + [sym_charlist] = STATE(3943), + [sym_sigil] = STATE(3943), + [sym__keywords_with_trailing_separator] = STATE(5597), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3943), + [sym_tuple] = STATE(3943), + [sym_bitstring] = STATE(3943), + [sym_map] = STATE(3943), + [sym_unary_operator] = STATE(3943), + [sym_binary_operator] = STATE(3943), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3943), + [sym_call] = STATE(3943), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym__call_arguments_with_trailing_separator] = STATE(5597), + [sym_access_call] = STATE(3943), + [sym_anonymous_function] = STATE(3943), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1205), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [230] = { + [sym__expression] = STATE(3943), + [sym_block] = STATE(3943), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3943), + [sym_nil] = STATE(3943), + [sym__atom] = STATE(3943), + [sym_quoted_atom] = STATE(3943), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3943), + [sym_charlist] = STATE(3943), + [sym_sigil] = STATE(3943), + [sym__keywords_with_trailing_separator] = STATE(5596), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3943), + [sym_tuple] = STATE(3943), + [sym_bitstring] = STATE(3943), + [sym_map] = STATE(3943), + [sym_unary_operator] = STATE(3943), + [sym_binary_operator] = STATE(3943), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3943), + [sym_call] = STATE(3943), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym__call_arguments_with_trailing_separator] = STATE(5596), + [sym_access_call] = STATE(3943), + [sym_anonymous_function] = STATE(3943), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1207), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [231] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5557), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1209), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [232] = { + [sym__expression] = STATE(3552), + [sym_block] = STATE(3552), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3552), + [sym_nil] = STATE(3552), + [sym__atom] = STATE(3552), + [sym_quoted_atom] = STATE(3552), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3552), + [sym_charlist] = STATE(3552), + [sym_sigil] = STATE(3552), + [sym__keywords_with_trailing_separator] = STATE(5435), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3552), + [sym_tuple] = STATE(3552), + [sym_bitstring] = STATE(3552), + [sym_map] = STATE(3552), + [sym_unary_operator] = STATE(3552), + [sym_binary_operator] = STATE(3552), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3552), + [sym_call] = STATE(3552), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3552), + [sym_anonymous_function] = STATE(3552), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1197), + [sym_integer] = ACTIONS(1197), + [sym_float] = ACTIONS(1197), + [sym_char] = ACTIONS(1197), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1211), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [233] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5529), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1213), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [234] = { + [sym__expression] = STATE(3717), + [sym_block] = STATE(3717), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3717), + [sym_nil] = STATE(3717), + [sym__atom] = STATE(3717), + [sym_quoted_atom] = STATE(3717), + [sym__quoted_i_double] = STATE(3814), + [sym__quoted_i_single] = STATE(3817), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(3717), + [sym_charlist] = STATE(3717), + [sym_sigil] = STATE(3717), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5430), + [sym__keyword] = STATE(673), + [sym_quoted_keyword] = STATE(673), + [sym_list] = STATE(3717), + [sym_tuple] = STATE(3717), + [sym_bitstring] = STATE(3717), + [sym_map] = STATE(3717), + [sym__items_with_trailing_separator] = STATE(5543), + [sym_unary_operator] = STATE(3717), + [sym_binary_operator] = STATE(3717), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(3717), + [sym_call] = STATE(3717), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(3717), + [sym_anonymous_function] = STATE(3717), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1083), + [sym_integer] = ACTIONS(1083), + [sym_float] = ACTIONS(1083), + [sym_char] = ACTIONS(1083), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [sym_keyword] = ACTIONS(1103), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1215), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [235] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5540), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1217), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [236] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5539), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1219), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [237] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5564), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1221), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [238] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5556), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [239] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5603), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1225), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [240] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5544), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1227), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [241] = { + [sym__expression] = STATE(3943), + [sym_block] = STATE(3943), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3943), + [sym_nil] = STATE(3943), + [sym__atom] = STATE(3943), + [sym_quoted_atom] = STATE(3943), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3943), + [sym_charlist] = STATE(3943), + [sym_sigil] = STATE(3943), + [sym__keywords_with_trailing_separator] = STATE(5593), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3943), + [sym_tuple] = STATE(3943), + [sym_bitstring] = STATE(3943), + [sym_map] = STATE(3943), + [sym_unary_operator] = STATE(3943), + [sym_binary_operator] = STATE(3943), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3943), + [sym_call] = STATE(3943), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym__call_arguments_with_trailing_separator] = STATE(5593), + [sym_access_call] = STATE(3943), + [sym_anonymous_function] = STATE(3943), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1229), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [242] = { + [sym__expression] = STATE(3943), + [sym_block] = STATE(3943), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3943), + [sym_nil] = STATE(3943), + [sym__atom] = STATE(3943), + [sym_quoted_atom] = STATE(3943), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3943), + [sym_charlist] = STATE(3943), + [sym_sigil] = STATE(3943), + [sym__keywords_with_trailing_separator] = STATE(5634), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3943), + [sym_tuple] = STATE(3943), + [sym_bitstring] = STATE(3943), + [sym_map] = STATE(3943), + [sym_unary_operator] = STATE(3943), + [sym_binary_operator] = STATE(3943), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3943), + [sym_call] = STATE(3943), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym__call_arguments_with_trailing_separator] = STATE(5634), + [sym_access_call] = STATE(3943), + [sym_anonymous_function] = STATE(3943), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1231), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [243] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5532), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1233), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [244] = { + [sym__expression] = STATE(3943), + [sym_block] = STATE(3943), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3943), + [sym_nil] = STATE(3943), + [sym__atom] = STATE(3943), + [sym_quoted_atom] = STATE(3943), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3943), + [sym_charlist] = STATE(3943), + [sym_sigil] = STATE(3943), + [sym__keywords_with_trailing_separator] = STATE(5531), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3943), + [sym_tuple] = STATE(3943), + [sym_bitstring] = STATE(3943), + [sym_map] = STATE(3943), + [sym_unary_operator] = STATE(3943), + [sym_binary_operator] = STATE(3943), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3943), + [sym_call] = STATE(3943), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym__call_arguments_with_trailing_separator] = STATE(5531), + [sym_access_call] = STATE(3943), + [sym_anonymous_function] = STATE(3943), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1235), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [245] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5647), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [246] = { + [sym__expression] = STATE(3717), + [sym_block] = STATE(3717), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3717), + [sym_nil] = STATE(3717), + [sym__atom] = STATE(3717), + [sym_quoted_atom] = STATE(3717), + [sym__quoted_i_double] = STATE(3814), + [sym__quoted_i_single] = STATE(3817), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(3717), + [sym_charlist] = STATE(3717), + [sym_sigil] = STATE(3717), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5430), + [sym__keyword] = STATE(673), + [sym_quoted_keyword] = STATE(673), + [sym_list] = STATE(3717), + [sym_tuple] = STATE(3717), + [sym_bitstring] = STATE(3717), + [sym_map] = STATE(3717), + [sym__items_with_trailing_separator] = STATE(5536), + [sym_unary_operator] = STATE(3717), + [sym_binary_operator] = STATE(3717), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(3717), + [sym_call] = STATE(3717), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(3717), + [sym_anonymous_function] = STATE(3717), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1083), + [sym_integer] = ACTIONS(1083), + [sym_float] = ACTIONS(1083), + [sym_char] = ACTIONS(1083), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [sym_keyword] = ACTIONS(1103), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1239), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [247] = { + [sym__expression] = STATE(3717), + [sym_block] = STATE(3717), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3717), + [sym_nil] = STATE(3717), + [sym__atom] = STATE(3717), + [sym_quoted_atom] = STATE(3717), + [sym__quoted_i_double] = STATE(3814), + [sym__quoted_i_single] = STATE(3817), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(3717), + [sym_charlist] = STATE(3717), + [sym_sigil] = STATE(3717), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5430), + [sym__keyword] = STATE(673), + [sym_quoted_keyword] = STATE(673), + [sym_list] = STATE(3717), + [sym_tuple] = STATE(3717), + [sym_bitstring] = STATE(3717), + [sym_map] = STATE(3717), + [sym__items_with_trailing_separator] = STATE(5580), + [sym_unary_operator] = STATE(3717), + [sym_binary_operator] = STATE(3717), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(3717), + [sym_call] = STATE(3717), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(3717), + [sym_anonymous_function] = STATE(3717), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1083), + [sym_integer] = ACTIONS(1083), + [sym_float] = ACTIONS(1083), + [sym_char] = ACTIONS(1083), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [sym_keyword] = ACTIONS(1103), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1241), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [248] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5534), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [249] = { + [sym__expression] = STATE(3717), + [sym_block] = STATE(3717), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3717), + [sym_nil] = STATE(3717), + [sym__atom] = STATE(3717), + [sym_quoted_atom] = STATE(3717), + [sym__quoted_i_double] = STATE(3814), + [sym__quoted_i_single] = STATE(3817), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(3717), + [sym_charlist] = STATE(3717), + [sym_sigil] = STATE(3717), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5430), + [sym__keyword] = STATE(673), + [sym_quoted_keyword] = STATE(673), + [sym_list] = STATE(3717), + [sym_tuple] = STATE(3717), + [sym_bitstring] = STATE(3717), + [sym_map] = STATE(3717), + [sym__items_with_trailing_separator] = STATE(5645), + [sym_unary_operator] = STATE(3717), + [sym_binary_operator] = STATE(3717), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(3717), + [sym_call] = STATE(3717), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(3717), + [sym_anonymous_function] = STATE(3717), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1083), + [sym_integer] = ACTIONS(1083), + [sym_float] = ACTIONS(1083), + [sym_char] = ACTIONS(1083), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [sym_keyword] = ACTIONS(1103), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1245), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [250] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5633), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1247), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [251] = { + [sym__expression] = STATE(3943), + [sym_block] = STATE(3943), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3943), + [sym_nil] = STATE(3943), + [sym__atom] = STATE(3943), + [sym_quoted_atom] = STATE(3943), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3943), + [sym_charlist] = STATE(3943), + [sym_sigil] = STATE(3943), + [sym__keywords_with_trailing_separator] = STATE(5577), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3943), + [sym_tuple] = STATE(3943), + [sym_bitstring] = STATE(3943), + [sym_map] = STATE(3943), + [sym_unary_operator] = STATE(3943), + [sym_binary_operator] = STATE(3943), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3943), + [sym_call] = STATE(3943), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym__call_arguments_with_trailing_separator] = STATE(5577), + [sym_access_call] = STATE(3943), + [sym_anonymous_function] = STATE(3943), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1249), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [252] = { + [sym__expression] = STATE(3717), + [sym_block] = STATE(3717), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(3717), + [sym_nil] = STATE(3717), + [sym__atom] = STATE(3717), + [sym_quoted_atom] = STATE(3717), + [sym__quoted_i_double] = STATE(3814), + [sym__quoted_i_single] = STATE(3817), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(3717), + [sym_charlist] = STATE(3717), + [sym_sigil] = STATE(3717), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5430), + [sym__keyword] = STATE(673), + [sym_quoted_keyword] = STATE(673), + [sym_list] = STATE(3717), + [sym_tuple] = STATE(3717), + [sym_bitstring] = STATE(3717), + [sym_map] = STATE(3717), + [sym__items_with_trailing_separator] = STATE(5579), + [sym_unary_operator] = STATE(3717), + [sym_binary_operator] = STATE(3717), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(3717), + [sym_call] = STATE(3717), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(3717), + [sym_anonymous_function] = STATE(3717), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1083), + [sym_integer] = ACTIONS(1083), + [sym_float] = ACTIONS(1083), + [sym_char] = ACTIONS(1083), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1083), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [sym_keyword] = ACTIONS(1103), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1251), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [253] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5582), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_RBRACK] = ACTIONS(1253), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [254] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5583), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1255), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [255] = { + [sym__expression] = STATE(3635), + [sym_block] = STATE(3635), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3635), + [sym_nil] = STATE(3635), + [sym__atom] = STATE(3635), + [sym_quoted_atom] = STATE(3635), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3635), + [sym_charlist] = STATE(3635), + [sym_sigil] = STATE(3635), + [sym__keywords_with_trailing_separator] = STATE(5436), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3635), + [sym_tuple] = STATE(3635), + [sym_bitstring] = STATE(3635), + [sym_map] = STATE(3635), + [sym__items_with_trailing_separator] = STATE(5546), + [sym_unary_operator] = STATE(3635), + [sym_binary_operator] = STATE(3635), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3635), + [sym_call] = STATE(3635), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3635), + [sym_anonymous_function] = STATE(3635), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1019), + [sym_integer] = ACTIONS(1019), + [sym_float] = ACTIONS(1019), + [sym_char] = ACTIONS(1019), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1019), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_RBRACE] = ACTIONS(1257), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [256] = { + [sym__expression] = STATE(3943), + [sym_block] = STATE(3943), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3943), + [sym_nil] = STATE(3943), + [sym__atom] = STATE(3943), + [sym_quoted_atom] = STATE(3943), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3943), + [sym_charlist] = STATE(3943), + [sym_sigil] = STATE(3943), + [sym__keywords_with_trailing_separator] = STATE(5569), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3943), + [sym_tuple] = STATE(3943), + [sym_bitstring] = STATE(3943), + [sym_map] = STATE(3943), + [sym_unary_operator] = STATE(3943), + [sym_binary_operator] = STATE(3943), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3943), + [sym_call] = STATE(3943), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym__call_arguments_with_trailing_separator] = STATE(5569), + [sym_access_call] = STATE(3943), + [sym_anonymous_function] = STATE(3943), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1259), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [257] = { + [sym__expression] = STATE(3943), + [sym_block] = STATE(3943), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3943), + [sym_nil] = STATE(3943), + [sym__atom] = STATE(3943), + [sym_quoted_atom] = STATE(3943), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3943), + [sym_charlist] = STATE(3943), + [sym_sigil] = STATE(3943), + [sym__keywords_with_trailing_separator] = STATE(5554), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3943), + [sym_tuple] = STATE(3943), + [sym_bitstring] = STATE(3943), + [sym_map] = STATE(3943), + [sym_unary_operator] = STATE(3943), + [sym_binary_operator] = STATE(3943), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3943), + [sym_call] = STATE(3943), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym__call_arguments_with_trailing_separator] = STATE(5554), + [sym_access_call] = STATE(3943), + [sym_anonymous_function] = STATE(3943), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [anon_sym_RPAREN] = ACTIONS(1261), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1071), + [sym_integer] = ACTIONS(1071), + [sym_float] = ACTIONS(1071), + [sym_char] = ACTIONS(1071), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1071), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [258] = { + [sym__expression] = STATE(4029), + [sym_block] = STATE(4029), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4029), + [sym_nil] = STATE(4029), + [sym__atom] = STATE(4029), + [sym_quoted_atom] = STATE(4029), + [sym__quoted_i_double] = STATE(3814), + [sym__quoted_i_single] = STATE(3817), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4029), + [sym_charlist] = STATE(4029), + [sym_sigil] = STATE(4029), + [sym__keywords_with_trailing_separator] = STATE(5438), + [sym_pair] = STATE(5430), + [sym__keyword] = STATE(673), + [sym_quoted_keyword] = STATE(673), + [sym_list] = STATE(4029), + [sym_tuple] = STATE(4029), + [sym_bitstring] = STATE(4029), + [sym_map] = STATE(4029), + [sym_unary_operator] = STATE(4029), + [sym_binary_operator] = STATE(4029), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(4029), + [sym_call] = STATE(4029), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4029), + [sym_anonymous_function] = STATE(4029), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1263), + [sym_integer] = ACTIONS(1263), + [sym_float] = ACTIONS(1263), + [sym_char] = ACTIONS(1263), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [sym_keyword] = ACTIONS(1103), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1199), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [259] = { + [sym__expression] = STATE(2623), + [sym_block] = STATE(2623), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2623), + [sym_nil] = STATE(2623), + [sym__atom] = STATE(2623), + [sym_quoted_atom] = STATE(2623), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2623), + [sym_charlist] = STATE(2623), + [sym_sigil] = STATE(2623), + [sym_list] = STATE(2623), + [sym_tuple] = STATE(2623), + [sym_bitstring] = STATE(2623), + [sym_map] = STATE(2623), + [sym_unary_operator] = STATE(2623), + [sym_binary_operator] = STATE(2623), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2623), + [sym_call] = STATE(2623), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), [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__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2623), + [sym_anonymous_function] = STATE(2623), + [aux_sym__terminator_token1] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(1269), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1269), + [sym_char] = ACTIONS(1269), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(1267), + [anon_sym_catch] = ACTIONS(1267), + [anon_sym_else] = ACTIONS(1267), + [anon_sym_end] = ACTIONS(1267), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(1267), [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), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [260] = { + [sym__expression] = STATE(4029), + [sym_block] = STATE(4029), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4029), + [sym_nil] = STATE(4029), + [sym__atom] = STATE(4029), + [sym_quoted_atom] = STATE(4029), + [sym__quoted_i_double] = STATE(3814), + [sym__quoted_i_single] = STATE(3817), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4029), + [sym_charlist] = STATE(4029), + [sym_sigil] = STATE(4029), + [sym__keywords_with_trailing_separator] = STATE(5435), + [sym_pair] = STATE(5430), + [sym__keyword] = STATE(673), + [sym_quoted_keyword] = STATE(673), + [sym_list] = STATE(4029), + [sym_tuple] = STATE(4029), + [sym_bitstring] = STATE(4029), + [sym_map] = STATE(4029), + [sym_unary_operator] = STATE(4029), + [sym_binary_operator] = STATE(4029), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(4029), + [sym_call] = STATE(4029), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4029), + [sym_anonymous_function] = STATE(4029), [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), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1263), + [sym_integer] = ACTIONS(1263), + [sym_float] = ACTIONS(1263), + [sym_char] = ACTIONS(1263), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [sym_keyword] = ACTIONS(1103), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_GT_GT] = ACTIONS(1211), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), [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), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), }, - [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), + [261] = { + [sym__expression] = STATE(2623), + [sym_block] = STATE(2623), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2623), + [sym_nil] = STATE(2623), + [sym__atom] = STATE(2623), + [sym_quoted_atom] = STATE(2623), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2623), + [sym_charlist] = STATE(2623), + [sym_sigil] = STATE(2623), + [sym_list] = STATE(2623), + [sym_tuple] = STATE(2623), + [sym_bitstring] = STATE(2623), + [sym_map] = STATE(2623), + [sym_unary_operator] = STATE(2623), + [sym_binary_operator] = STATE(2623), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2623), + [sym_call] = STATE(2623), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2623), + [sym_anonymous_function] = STATE(2623), + [aux_sym__terminator_token1] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(1269), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1269), + [sym_char] = ACTIONS(1269), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(1273), + [anon_sym_catch] = ACTIONS(1273), + [anon_sym_else] = ACTIONS(1273), + [anon_sym_end] = ACTIONS(1273), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(1273), [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), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [616] = { + [262] = { + [sym__expression] = STATE(2623), + [sym_block] = STATE(2623), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2623), + [sym_nil] = STATE(2623), + [sym__atom] = STATE(2623), + [sym_quoted_atom] = STATE(2623), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2623), + [sym_charlist] = STATE(2623), + [sym_sigil] = STATE(2623), + [sym_list] = STATE(2623), + [sym_tuple] = STATE(2623), + [sym_bitstring] = STATE(2623), + [sym_map] = STATE(2623), + [sym_unary_operator] = STATE(2623), + [sym_binary_operator] = STATE(2623), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2623), + [sym_call] = STATE(2623), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2623), + [sym_anonymous_function] = STATE(2623), + [aux_sym__terminator_token1] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(1269), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1269), + [sym_char] = ACTIONS(1269), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(1277), + [anon_sym_catch] = ACTIONS(1277), + [anon_sym_else] = ACTIONS(1277), + [anon_sym_end] = ACTIONS(1277), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(1277), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [263] = { [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__quoted_i_double] = STATE(1603), + [sym__quoted_i_single] = STATE(1604), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), [sym_string] = STATE(3677), [sym_charlist] = STATE(3677), [sym_sigil] = STATE(3677), + [sym_keywords] = STATE(1853), + [sym_pair] = STATE(3613), + [sym__keyword] = STATE(775), + [sym_quoted_keyword] = STATE(775), [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_operator_identifier] = STATE(5592), [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__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(1281), + [sym_integer] = ACTIONS(1281), + [sym_float] = ACTIONS(1281), + [sym_char] = ACTIONS(1281), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1281), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [sym_keyword] = ACTIONS(1285), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), [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), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), - [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(2085), - [sym_integer] = ACTIONS(2085), - [sym_float] = ACTIONS(2085), - [sym_char] = ACTIONS(2085), - [anon_sym_true] = ACTIONS(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2085), - [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), - }, - [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(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(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2087), - [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), - }, - [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(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), - [sym_char] = ACTIONS(2089), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2089), - [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), - }, - [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(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), - [sym_char] = ACTIONS(2091), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2091), - [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), - }, - [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(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), - [sym_char] = ACTIONS(2093), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2093), - [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), - }, - [622] = { - [sym__expression] = STATE(4137), - [sym_block] = STATE(4137), - [sym__identifier] = STATE(48), + [264] = { + [sym__expression] = STATE(3260), + [sym_block] = STATE(3260), [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), + [sym_boolean] = STATE(3260), + [sym_nil] = STATE(3260), + [sym__atom] = STATE(3260), + [sym_quoted_atom] = STATE(3260), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3260), + [sym_charlist] = STATE(3260), + [sym_sigil] = STATE(3260), + [sym_keywords] = STATE(3090), + [sym_pair] = STATE(3049), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3260), + [sym_tuple] = STATE(3260), + [sym_bitstring] = STATE(3260), + [sym_map] = STATE(3260), + [sym_unary_operator] = STATE(3260), + [sym_binary_operator] = STATE(3260), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3260), + [sym_call] = STATE(3260), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3260), + [sym_anonymous_function] = STATE(3260), [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(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(2095), - [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), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1295), + [sym_integer] = ACTIONS(1295), + [sym_float] = ACTIONS(1295), + [sym_char] = ACTIONS(1295), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1295), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), [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), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, - [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(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(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(2097), - [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), - }, - [624] = { + [265] = { [sym__expression] = STATE(3774), [sym_block] = STATE(3774), - [sym__identifier] = STATE(64), - [sym_identifier] = STATE(64), - [sym_special_identifier] = STATE(64), + [sym_identifier] = STATE(67), [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__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), [sym_string] = STATE(3774), [sym_charlist] = STATE(3774), [sym_sigil] = STATE(3774), + [sym_keywords] = STATE(3773), + [sym_pair] = STATE(3411), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), [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_operator_identifier] = STATE(5576), [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__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), [sym_access_call] = STATE(3774), [sym_anonymous_function] = STATE(3774), [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(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(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), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1299), + [sym_integer] = ACTIONS(1299), + [sym_float] = ACTIONS(1299), + [sym_char] = ACTIONS(1299), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(1299), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), [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(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), }, - [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), + [266] = { + [sym__expression] = STATE(3130), + [sym_block] = STATE(3130), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(3130), + [sym_nil] = STATE(3130), + [sym__atom] = STATE(3130), + [sym_quoted_atom] = STATE(3130), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(3130), + [sym_charlist] = STATE(3130), + [sym_sigil] = STATE(3130), + [sym_keywords] = STATE(1390), + [sym_pair] = STATE(2375), + [sym__keyword] = STATE(522), + [sym_quoted_keyword] = STATE(522), + [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(5631), + [sym_dot] = STATE(3130), + [sym_call] = STATE(3130), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3130), + [sym_anonymous_function] = STATE(3130), [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(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(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), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(1301), + [sym_integer] = ACTIONS(1301), + [sym_float] = ACTIONS(1301), + [sym_char] = ACTIONS(1301), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1301), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [sym_keyword] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), [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(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), }, - [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(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(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), - }, - [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(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(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), - }, - [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(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(2107), - [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), - }, - [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(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(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), - }, - [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(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(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), - }, - [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(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(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), - }, - [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(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(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), - }, - [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(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(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), - }, - [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), + [267] = { + [sym__expression] = STATE(3603), + [sym_block] = STATE(3603), [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), + [sym_boolean] = STATE(3603), + [sym_nil] = STATE(3603), + [sym__atom] = STATE(3603), + [sym_quoted_atom] = STATE(3603), + [sym__quoted_i_double] = STATE(1770), + [sym__quoted_i_single] = STATE(1771), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(3603), + [sym_charlist] = STATE(3603), + [sym_sigil] = STATE(3603), + [sym_keywords] = STATE(2090), + [sym_pair] = STATE(2669), + [sym__keyword] = STATE(737), + [sym_quoted_keyword] = STATE(737), + [sym_list] = STATE(3603), + [sym_tuple] = STATE(3603), + [sym_bitstring] = STATE(3603), + [sym_map] = STATE(3603), + [sym_unary_operator] = STATE(3603), + [sym_binary_operator] = STATE(3603), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(3603), + [sym_call] = STATE(3603), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3603), + [sym_anonymous_function] = STATE(3603), [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), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1303), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1303), + [sym_char] = ACTIONS(1303), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [sym_keyword] = ACTIONS(630), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), [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), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), }, - [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), + [268] = { + [sym__expression] = STATE(3126), + [sym_block] = STATE(3126), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(3126), + [sym_nil] = STATE(3126), + [sym__atom] = STATE(3126), + [sym_quoted_atom] = STATE(3126), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(3126), + [sym_charlist] = STATE(3126), + [sym_sigil] = STATE(3126), + [sym_keywords] = STATE(1391), + [sym_pair] = STATE(2375), + [sym__keyword] = STATE(522), + [sym_quoted_keyword] = STATE(522), + [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(5631), + [sym_dot] = STATE(3126), + [sym_call] = STATE(3126), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3126), + [sym_anonymous_function] = STATE(3126), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(1305), + [sym_integer] = ACTIONS(1305), + [sym_float] = ACTIONS(1305), + [sym_char] = ACTIONS(1305), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1305), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [sym_keyword] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [269] = { + [sym__expression] = STATE(3107), + [sym_block] = STATE(3107), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(3107), + [sym_nil] = STATE(3107), + [sym__atom] = STATE(3107), + [sym_quoted_atom] = STATE(3107), + [sym__quoted_i_double] = STATE(2216), + [sym__quoted_i_single] = STATE(2217), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [sym_string] = STATE(3107), + [sym_charlist] = STATE(3107), + [sym_sigil] = STATE(3107), + [sym_keywords] = STATE(2714), + [sym_pair] = STATE(2278), + [sym__keyword] = STATE(850), + [sym_quoted_keyword] = STATE(850), + [sym_list] = STATE(3107), + [sym_tuple] = STATE(3107), + [sym_bitstring] = STATE(3107), + [sym_map] = STATE(3107), + [sym_unary_operator] = STATE(3107), + [sym_binary_operator] = STATE(3107), + [sym_operator_identifier] = STATE(5624), + [sym_dot] = STATE(3107), + [sym_call] = STATE(3107), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(3107), + [sym_anonymous_function] = STATE(3107), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1307), + [sym_integer] = ACTIONS(1307), + [sym_float] = ACTIONS(1307), + [sym_char] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [sym_keyword] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), + }, + [270] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), [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), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(1309), + [anon_sym_catch] = ACTIONS(1309), + [anon_sym_else] = ACTIONS(1309), + [anon_sym_end] = ACTIONS(1309), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(1309), [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), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [271] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), [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), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(1311), + [anon_sym_catch] = ACTIONS(1311), + [anon_sym_else] = ACTIONS(1311), + [anon_sym_end] = ACTIONS(1311), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(1311), [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), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [272] = { + [sym__expression] = STATE(4110), + [sym_block] = STATE(4110), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(4110), + [sym_nil] = STATE(4110), + [sym__atom] = STATE(4110), + [sym_quoted_atom] = STATE(4110), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(4110), + [sym_charlist] = STATE(4110), + [sym_sigil] = STATE(4110), + [sym_keywords] = STATE(5516), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(4110), + [sym_tuple] = STATE(4110), + [sym_bitstring] = STATE(4110), + [sym_map] = STATE(4110), + [sym_unary_operator] = STATE(4110), + [sym_binary_operator] = STATE(4110), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(4110), + [sym_call] = STATE(4110), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(4110), + [sym_anonymous_function] = STATE(4110), [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), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1313), + [sym_integer] = ACTIONS(1313), + [sym_float] = ACTIONS(1313), + [sym_char] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(1313), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), [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(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), }, - [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(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(2151), - [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), - }, - [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(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(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), - }, - [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(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(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(2163), - [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), - }, - [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(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), - [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(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(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), - [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), - }, - [669] = { - [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(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), - [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(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(2183), - [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), - }, - [670] = { - [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(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(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2185), - [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), - }, - [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), - [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(2187), - [sym_integer] = ACTIONS(2187), - [sym_float] = ACTIONS(2187), - [sym_char] = ACTIONS(2187), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2187), - [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), - }, - [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(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(2189), - [sym_integer] = ACTIONS(2189), - [sym_float] = ACTIONS(2189), - [sym_char] = ACTIONS(2189), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2189), - [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), - }, - [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(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(2191), - [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(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), - [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), - }, - [678] = { - [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), + [273] = { + [sym__expression] = STATE(3603), + [sym_block] = STATE(3603), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3603), + [sym_nil] = STATE(3603), + [sym__atom] = STATE(3603), + [sym_quoted_atom] = STATE(3603), + [sym__quoted_i_double] = STATE(1770), + [sym__quoted_i_single] = STATE(1771), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(3603), + [sym_charlist] = STATE(3603), + [sym_sigil] = STATE(3603), + [sym_keywords] = STATE(2089), + [sym_pair] = STATE(2669), + [sym__keyword] = STATE(737), + [sym_quoted_keyword] = STATE(737), + [sym_list] = STATE(3603), + [sym_tuple] = STATE(3603), + [sym_bitstring] = STATE(3603), + [sym_map] = STATE(3603), + [sym_unary_operator] = STATE(3603), + [sym_binary_operator] = STATE(3603), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(3603), + [sym_call] = STATE(3603), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), [sym__anonymous_dot] = STATE(5456), - [sym__double_call] = STATE(3811), - [sym_access_call] = STATE(3980), - [sym_anonymous_function] = STATE(3980), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3603), + [sym_anonymous_function] = STATE(3603), [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(2201), - [sym_integer] = ACTIONS(2201), - [sym_float] = ACTIONS(2201), - [sym_char] = ACTIONS(2201), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2201), - [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), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1303), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1303), + [sym_char] = ACTIONS(1303), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [sym_keyword] = ACTIONS(630), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), [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), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), }, - [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), + [274] = { + [sym__expression] = STATE(2627), + [sym_block] = STATE(2627), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2627), + [sym_nil] = STATE(2627), + [sym__atom] = STATE(2627), + [sym_quoted_atom] = STATE(2627), + [sym__quoted_i_double] = STATE(1115), + [sym__quoted_i_single] = STATE(1116), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2627), + [sym_charlist] = STATE(2627), + [sym_sigil] = STATE(2627), + [sym_keywords] = STATE(1306), + [sym_pair] = STATE(2100), + [sym__keyword] = STATE(612), + [sym_quoted_keyword] = STATE(612), + [sym_list] = STATE(2627), + [sym_tuple] = STATE(2627), + [sym_bitstring] = STATE(2627), + [sym_map] = STATE(2627), + [sym_unary_operator] = STATE(2627), + [sym_binary_operator] = STATE(2627), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(2627), + [sym_call] = STATE(2627), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2627), + [sym_anonymous_function] = STATE(2627), [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(2203), - [sym_integer] = ACTIONS(2203), - [sym_float] = ACTIONS(2203), - [sym_char] = ACTIONS(2203), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2203), - [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), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(1315), + [sym_integer] = ACTIONS(1315), + [sym_float] = ACTIONS(1315), + [sym_char] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [sym_keyword] = ACTIONS(424), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), [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), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), }, - [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), + [275] = { + [sym__expression] = STATE(3055), + [sym_block] = STATE(3055), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(3055), + [sym_nil] = STATE(3055), + [sym__atom] = STATE(3055), + [sym_quoted_atom] = STATE(3055), + [sym__quoted_i_double] = STATE(2630), + [sym__quoted_i_single] = STATE(2641), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(3055), + [sym_charlist] = STATE(3055), + [sym_sigil] = STATE(3055), + [sym_keywords] = STATE(2713), + [sym_pair] = STATE(2263), + [sym__keyword] = STATE(473), + [sym_quoted_keyword] = STATE(473), + [sym_list] = STATE(3055), + [sym_tuple] = STATE(3055), + [sym_bitstring] = STATE(3055), + [sym_map] = STATE(3055), + [sym_unary_operator] = STATE(3055), + [sym_binary_operator] = STATE(3055), + [sym_operator_identifier] = STATE(5584), + [sym_dot] = STATE(3055), + [sym_call] = STATE(3055), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(3055), + [sym_anonymous_function] = STATE(3055), [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(2205), - [sym_integer] = ACTIONS(2205), - [sym_float] = ACTIONS(2205), - [sym_char] = ACTIONS(2205), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2205), - [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), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1317), + [sym_integer] = ACTIONS(1317), + [sym_float] = ACTIONS(1317), + [sym_char] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [sym_keyword] = ACTIONS(494), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), [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), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), }, - [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(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(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2207), - [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), - }, - [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(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(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2209), - [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), - }, - [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(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(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2211), - [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), - }, - [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(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(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2213), - [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), - }, - [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), + [276] = { + [sym__expression] = STATE(1488), + [sym_block] = STATE(1488), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1488), + [sym_nil] = STATE(1488), + [sym__atom] = STATE(1488), + [sym_quoted_atom] = STATE(1488), + [sym__quoted_i_double] = STATE(1115), + [sym__quoted_i_single] = STATE(1116), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1488), + [sym_charlist] = STATE(1488), + [sym_sigil] = STATE(1488), + [sym_keywords] = STATE(1306), + [sym_pair] = STATE(1273), + [sym__keyword] = STATE(894), + [sym_quoted_keyword] = STATE(894), + [sym_list] = STATE(1488), + [sym_tuple] = STATE(1488), + [sym_bitstring] = STATE(1488), + [sym_map] = STATE(1488), + [sym_unary_operator] = STATE(1488), + [sym_binary_operator] = STATE(1488), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1488), + [sym_call] = STATE(1488), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), [sym__remote_dot] = STATE(19), - [sym__anonymous_call] = STATE(1335), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1488), + [sym_anonymous_function] = STATE(1488), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1319), + [sym_integer] = ACTIONS(1319), + [sym_float] = ACTIONS(1319), + [sym_char] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [sym_keyword] = ACTIONS(260), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [277] = { + [sym__expression] = STATE(4019), + [sym_block] = STATE(4019), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(4019), + [sym_nil] = STATE(4019), + [sym__atom] = STATE(4019), + [sym_quoted_atom] = STATE(4019), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(4019), + [sym_charlist] = STATE(4019), + [sym_sigil] = STATE(4019), + [sym_keywords] = STATE(5650), + [sym_pair] = STATE(5432), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(4019), + [sym_tuple] = STATE(4019), + [sym_bitstring] = STATE(4019), + [sym_map] = STATE(4019), + [sym_unary_operator] = STATE(4019), + [sym_binary_operator] = STATE(4019), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4019), + [sym_call] = STATE(4019), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4019), + [sym_anonymous_function] = STATE(4019), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1321), + [sym_integer] = ACTIONS(1321), + [sym_float] = ACTIONS(1321), + [sym_char] = ACTIONS(1321), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [278] = { + [sym__expression] = STATE(2293), + [sym_block] = STATE(2293), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2293), + [sym_nil] = STATE(2293), + [sym__atom] = STATE(2293), + [sym_quoted_atom] = STATE(2293), + [sym__quoted_i_double] = STATE(1770), + [sym__quoted_i_single] = STATE(1771), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2293), + [sym_charlist] = STATE(2293), + [sym_sigil] = STATE(2293), + [sym_keywords] = STATE(2079), + [sym_pair] = STATE(2088), + [sym__keyword] = STATE(510), + [sym_quoted_keyword] = STATE(510), + [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(5608), + [sym_dot] = STATE(2293), + [sym_call] = STATE(2293), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2293), + [sym_anonymous_function] = STATE(2293), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1323), + [sym_integer] = ACTIONS(1323), + [sym_float] = ACTIONS(1323), + [sym_char] = ACTIONS(1323), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1323), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [sym_keyword] = ACTIONS(367), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [279] = { + [sym__expression] = STATE(2940), + [sym_block] = STATE(2940), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2940), + [sym_nil] = STATE(2940), + [sym__atom] = STATE(2940), + [sym_quoted_atom] = STATE(2940), + [sym__quoted_i_double] = STATE(2216), + [sym__quoted_i_single] = STATE(2217), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [sym_string] = STATE(2940), + [sym_charlist] = STATE(2940), + [sym_sigil] = STATE(2940), + [sym_keywords] = STATE(2726), + [sym_pair] = STATE(2278), + [sym__keyword] = STATE(850), + [sym_quoted_keyword] = STATE(850), + [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(5624), + [sym_dot] = STATE(2940), + [sym_call] = STATE(2940), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), [sym__anonymous_dot] = STATE(5522), - [sym__double_call] = STATE(1770), - [sym_access_call] = STATE(2124), - [sym_anonymous_function] = STATE(2124), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2940), + [sym_anonymous_function] = STATE(2940), [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(2215), - [sym_integer] = ACTIONS(2215), - [sym_float] = ACTIONS(2215), - [sym_char] = ACTIONS(2215), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2215), - [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), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1325), + [sym_integer] = ACTIONS(1325), + [sym_float] = ACTIONS(1325), + [sym_char] = ACTIONS(1325), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1325), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [sym_keyword] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), [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), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), }, - [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), + [280] = { + [sym__expression] = STATE(2970), + [sym_block] = STATE(2970), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2970), + [sym_nil] = STATE(2970), + [sym__atom] = STATE(2970), + [sym_quoted_atom] = STATE(2970), + [sym__quoted_i_double] = STATE(2630), + [sym__quoted_i_single] = STATE(2641), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(2970), + [sym_charlist] = STATE(2970), + [sym_sigil] = STATE(2970), + [sym_keywords] = STATE(2971), + [sym_pair] = STATE(2263), + [sym__keyword] = STATE(473), + [sym_quoted_keyword] = STATE(473), + [sym_list] = STATE(2970), + [sym_tuple] = STATE(2970), + [sym_bitstring] = STATE(2970), + [sym_map] = STATE(2970), + [sym_unary_operator] = STATE(2970), + [sym_binary_operator] = STATE(2970), + [sym_operator_identifier] = STATE(5584), + [sym_dot] = STATE(2970), + [sym_call] = STATE(2970), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(2970), + [sym_anonymous_function] = STATE(2970), [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(2217), - [sym_integer] = ACTIONS(2217), - [sym_float] = ACTIONS(2217), - [sym_char] = ACTIONS(2217), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(2217), - [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), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1327), + [sym_integer] = ACTIONS(1327), + [sym_float] = ACTIONS(1327), + [sym_char] = ACTIONS(1327), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1327), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [sym_keyword] = ACTIONS(494), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), [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(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), }, - [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), + [281] = { + [sym__expression] = STATE(4050), + [sym_block] = STATE(4050), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4050), + [sym_nil] = STATE(4050), + [sym__atom] = STATE(4050), + [sym_quoted_atom] = STATE(4050), + [sym__quoted_i_double] = STATE(3814), + [sym__quoted_i_single] = STATE(3817), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4050), + [sym_charlist] = STATE(4050), + [sym_sigil] = STATE(4050), + [sym_keywords] = STATE(4048), + [sym_pair] = STATE(3681), + [sym__keyword] = STATE(673), + [sym_quoted_keyword] = STATE(673), + [sym_list] = STATE(4050), + [sym_tuple] = STATE(4050), + [sym_bitstring] = STATE(4050), + [sym_map] = STATE(4050), + [sym_unary_operator] = STATE(4050), + [sym_binary_operator] = STATE(4050), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(4050), + [sym_call] = STATE(4050), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4050), + [sym_anonymous_function] = STATE(4050), [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(2219), - [sym_integer] = ACTIONS(2219), - [sym_float] = ACTIONS(2219), - [sym_char] = ACTIONS(2219), - [anon_sym_true] = ACTIONS(834), - [anon_sym_false] = ACTIONS(834), - [anon_sym_nil] = ACTIONS(836), - [sym_atom] = ACTIONS(2219), - [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), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1329), + [sym_integer] = ACTIONS(1329), + [sym_float] = ACTIONS(1329), + [sym_char] = ACTIONS(1329), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1329), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [sym_keyword] = ACTIONS(1103), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), [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(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), }, - [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), + [282] = { + [sym__expression] = STATE(3023), + [sym_block] = STATE(3023), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3023), + [sym_nil] = STATE(3023), + [sym__atom] = STATE(3023), + [sym_quoted_atom] = STATE(3023), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(3023), + [sym_charlist] = STATE(3023), + [sym_sigil] = STATE(3023), + [sym_keywords] = STATE(1390), + [sym_pair] = STATE(2203), + [sym__keyword] = STATE(874), + [sym_quoted_keyword] = STATE(874), + [sym_list] = STATE(3023), + [sym_tuple] = STATE(3023), + [sym_bitstring] = STATE(3023), + [sym_map] = STATE(3023), + [sym_unary_operator] = STATE(3023), + [sym_binary_operator] = STATE(3023), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(3023), + [sym_call] = STATE(3023), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3023), + [sym_anonymous_function] = STATE(3023), [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(2221), - [sym_integer] = ACTIONS(2221), - [sym_float] = ACTIONS(2221), - [sym_char] = ACTIONS(2221), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2221), - [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), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(1331), + [sym_integer] = ACTIONS(1331), + [sym_float] = ACTIONS(1331), + [sym_char] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1331), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [sym_keyword] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), [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), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), }, - [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), + [283] = { + [sym__expression] = STATE(3019), + [sym_block] = STATE(3019), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3019), + [sym_nil] = STATE(3019), + [sym__atom] = STATE(3019), + [sym_quoted_atom] = STATE(3019), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(3019), + [sym_charlist] = STATE(3019), + [sym_sigil] = STATE(3019), + [sym_keywords] = STATE(1391), + [sym_pair] = STATE(2203), + [sym__keyword] = STATE(874), + [sym_quoted_keyword] = STATE(874), + [sym_list] = STATE(3019), + [sym_tuple] = STATE(3019), + [sym_bitstring] = STATE(3019), + [sym_map] = STATE(3019), + [sym_unary_operator] = STATE(3019), + [sym_binary_operator] = STATE(3019), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(3019), + [sym_call] = STATE(3019), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3019), + [sym_anonymous_function] = STATE(3019), [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(2223), - [sym_integer] = ACTIONS(2223), - [sym_float] = ACTIONS(2223), - [sym_char] = ACTIONS(2223), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2223), - [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), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(1333), + [sym_integer] = ACTIONS(1333), + [sym_float] = ACTIONS(1333), + [sym_char] = ACTIONS(1333), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1333), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [sym_keyword] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), [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), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), }, - [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), + [284] = { + [sym__expression] = STATE(3264), + [sym_block] = STATE(3264), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3264), + [sym_nil] = STATE(3264), + [sym__atom] = STATE(3264), + [sym_quoted_atom] = STATE(3264), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3264), + [sym_charlist] = STATE(3264), + [sym_sigil] = STATE(3264), + [sym_keywords] = STATE(3008), + [sym_pair] = STATE(3049), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3264), + [sym_tuple] = STATE(3264), + [sym_bitstring] = STATE(3264), + [sym_map] = STATE(3264), + [sym_unary_operator] = STATE(3264), + [sym_binary_operator] = STATE(3264), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3264), + [sym_call] = STATE(3264), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3264), + [sym_anonymous_function] = STATE(3264), [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(2225), - [sym_integer] = ACTIONS(2225), - [sym_float] = ACTIONS(2225), - [sym_char] = ACTIONS(2225), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2225), - [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), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1335), + [sym_integer] = ACTIONS(1335), + [sym_float] = ACTIONS(1335), + [sym_char] = ACTIONS(1335), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1335), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), [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), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, - [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), + [285] = { + [sym__expression] = STATE(4078), + [sym_block] = STATE(4078), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4078), + [sym_nil] = STATE(4078), + [sym__atom] = STATE(4078), + [sym_quoted_atom] = STATE(4078), + [sym__quoted_i_double] = STATE(3814), + [sym__quoted_i_single] = STATE(3817), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4078), + [sym_charlist] = STATE(4078), + [sym_sigil] = STATE(4078), + [sym_keywords] = STATE(4056), + [sym_pair] = STATE(3681), + [sym__keyword] = STATE(673), + [sym_quoted_keyword] = STATE(673), + [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(5568), + [sym_dot] = STATE(4078), + [sym_call] = STATE(4078), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4078), + [sym_anonymous_function] = STATE(4078), [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(2227), - [sym_integer] = ACTIONS(2227), - [sym_float] = ACTIONS(2227), - [sym_char] = ACTIONS(2227), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2227), - [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), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1337), + [sym_integer] = ACTIONS(1337), + [sym_float] = ACTIONS(1337), + [sym_char] = ACTIONS(1337), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1337), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [sym_keyword] = ACTIONS(1103), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), [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), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), }, - [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(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(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2229), - [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), + [286] = { + [sym__terminator] = STATE(470), + [sym__expression] = STATE(2701), + [sym_block] = STATE(2701), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(2701), + [sym_nil] = STATE(2701), + [sym__atom] = STATE(2701), + [sym_quoted_atom] = STATE(2701), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2701), + [sym_call] = STATE(2701), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2701), + [sym_body] = STATE(4395), + [sym_anonymous_function] = STATE(2701), + [aux_sym__terminator_repeat1] = STATE(1020), + [aux_sym__terminator_token1] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1013), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1341), + [sym_integer] = ACTIONS(1341), + [sym_float] = ACTIONS(1341), + [sym_char] = ACTIONS(1341), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), [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), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [693] = { + [287] = { + [sym__expression] = STATE(3710), + [sym_block] = STATE(3710), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3710), + [sym_nil] = STATE(3710), + [sym__atom] = STATE(3710), + [sym_quoted_atom] = STATE(3710), + [sym__quoted_i_double] = STATE(1603), + [sym__quoted_i_single] = STATE(1604), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3710), + [sym_charlist] = STATE(3710), + [sym_sigil] = STATE(3710), + [sym_keywords] = STATE(1853), + [sym_pair] = STATE(3287), + [sym__keyword] = STATE(899), + [sym_quoted_keyword] = STATE(899), + [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(5592), + [sym_dot] = STATE(3710), + [sym_call] = STATE(3710), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3710), + [sym_anonymous_function] = STATE(3710), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1353), + [sym_integer] = ACTIONS(1353), + [sym_float] = ACTIONS(1353), + [sym_char] = ACTIONS(1353), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1353), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [sym_keyword] = ACTIONS(1355), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [288] = { [sym__expression] = STATE(3965), [sym_block] = STATE(3965), - [sym__identifier] = STATE(54), - [sym_identifier] = STATE(54), - [sym_special_identifier] = STATE(54), + [sym_identifier] = STATE(60), [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__quoted_i_double] = STATE(3289), + [sym__quoted_i_single] = STATE(3288), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), [sym_string] = STATE(3965), [sym_charlist] = STATE(3965), [sym_sigil] = STATE(3965), + [sym_keywords] = STATE(3964), + [sym_pair] = STATE(3447), + [sym__keyword] = STATE(562), + [sym_quoted_keyword] = STATE(562), [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_operator_identifier] = STATE(5643), [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__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), [sym_access_call] = STATE(3965), [sym_anonymous_function] = STATE(3965), [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(2231), - [sym_integer] = ACTIONS(2231), - [sym_float] = ACTIONS(2231), - [sym_char] = ACTIONS(2231), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2231), - [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_alias] = ACTIONS(1357), + [sym_integer] = ACTIONS(1357), + [sym_float] = ACTIONS(1357), + [sym_char] = ACTIONS(1357), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1357), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [sym_keyword] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), [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), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), }, - [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), + [289] = { + [sym__expression] = STATE(3673), + [sym_block] = STATE(3673), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3673), + [sym_nil] = STATE(3673), + [sym__atom] = STATE(3673), + [sym_quoted_atom] = STATE(3673), + [sym__quoted_i_double] = STATE(1603), + [sym__quoted_i_single] = STATE(1604), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3673), + [sym_charlist] = STATE(3673), + [sym_sigil] = STATE(3673), + [sym_keywords] = STATE(1858), + [sym_pair] = STATE(3613), + [sym__keyword] = STATE(775), + [sym_quoted_keyword] = STATE(775), + [sym_list] = STATE(3673), + [sym_tuple] = STATE(3673), + [sym_bitstring] = STATE(3673), + [sym_map] = STATE(3673), + [sym_unary_operator] = STATE(3673), + [sym_binary_operator] = STATE(3673), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3673), + [sym_call] = STATE(3673), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3673), + [sym_anonymous_function] = STATE(3673), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(1361), + [sym_integer] = ACTIONS(1361), + [sym_float] = ACTIONS(1361), + [sym_char] = ACTIONS(1361), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1361), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [sym_keyword] = ACTIONS(1285), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [290] = { + [sym__expression] = STATE(2816), + [sym_block] = STATE(2816), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2816), + [sym_nil] = STATE(2816), + [sym__atom] = STATE(2816), + [sym_quoted_atom] = STATE(2816), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2816), + [sym_charlist] = STATE(2816), + [sym_sigil] = STATE(2816), + [sym_keywords] = STATE(1312), + [sym_pair] = STATE(2375), + [sym__keyword] = STATE(522), + [sym_quoted_keyword] = STATE(522), + [sym_list] = STATE(2816), + [sym_tuple] = STATE(2816), + [sym_bitstring] = STATE(2816), + [sym_map] = STATE(2816), + [sym_unary_operator] = STATE(2816), + [sym_binary_operator] = STATE(2816), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2816), + [sym_call] = STATE(2816), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2816), + [sym_anonymous_function] = STATE(2816), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(1363), + [sym_integer] = ACTIONS(1363), + [sym_float] = ACTIONS(1363), + [sym_char] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [sym_keyword] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [291] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(1365), + [anon_sym_catch] = ACTIONS(1365), + [anon_sym_else] = ACTIONS(1365), + [anon_sym_end] = ACTIONS(1365), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(1365), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [292] = { + [sym__expression] = STATE(3417), + [sym_block] = STATE(3417), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3417), + [sym_nil] = STATE(3417), + [sym__atom] = STATE(3417), + [sym_quoted_atom] = STATE(3417), + [sym__quoted_i_double] = STATE(2961), + [sym__quoted_i_single] = STATE(2959), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [sym_string] = STATE(3417), + [sym_charlist] = STATE(3417), + [sym_sigil] = STATE(3417), + [sym_keywords] = STATE(3436), + [sym_pair] = STATE(2733), + [sym__keyword] = STATE(476), + [sym_quoted_keyword] = STATE(476), + [sym_list] = STATE(3417), + [sym_tuple] = STATE(3417), + [sym_bitstring] = STATE(3417), + [sym_map] = STATE(3417), + [sym_unary_operator] = STATE(3417), + [sym_binary_operator] = STATE(3417), + [sym_operator_identifier] = STATE(5616), + [sym_dot] = STATE(3417), + [sym_call] = STATE(3417), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3417), + [sym_anonymous_function] = STATE(3417), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(1367), + [sym_integer] = ACTIONS(1367), + [sym_float] = ACTIONS(1367), + [sym_char] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [sym_keyword] = ACTIONS(548), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [293] = { + [sym__expression] = STATE(3779), + [sym_block] = STATE(3779), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3779), + [sym_nil] = STATE(3779), + [sym__atom] = STATE(3779), + [sym_quoted_atom] = STATE(3779), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3779), + [sym_charlist] = STATE(3779), + [sym_sigil] = STATE(3779), + [sym_keywords] = STATE(3778), + [sym_pair] = STATE(3411), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [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(5576), + [sym_dot] = STATE(3779), + [sym_call] = STATE(3779), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3779), + [sym_anonymous_function] = STATE(3779), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1369), + [sym_integer] = ACTIONS(1369), + [sym_float] = ACTIONS(1369), + [sym_char] = ACTIONS(1369), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(1369), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [294] = { + [sym__expression] = STATE(3055), + [sym_block] = STATE(3055), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(3055), + [sym_nil] = STATE(3055), + [sym__atom] = STATE(3055), + [sym_quoted_atom] = STATE(3055), + [sym__quoted_i_double] = STATE(2630), + [sym__quoted_i_single] = STATE(2641), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(3055), + [sym_charlist] = STATE(3055), + [sym_sigil] = STATE(3055), + [sym_keywords] = STATE(2722), + [sym_pair] = STATE(2263), + [sym__keyword] = STATE(473), + [sym_quoted_keyword] = STATE(473), + [sym_list] = STATE(3055), + [sym_tuple] = STATE(3055), + [sym_bitstring] = STATE(3055), + [sym_map] = STATE(3055), + [sym_unary_operator] = STATE(3055), + [sym_binary_operator] = STATE(3055), + [sym_operator_identifier] = STATE(5584), + [sym_dot] = STATE(3055), + [sym_call] = STATE(3055), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(3055), + [sym_anonymous_function] = STATE(3055), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1317), + [sym_integer] = ACTIONS(1317), + [sym_float] = ACTIONS(1317), + [sym_char] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [sym_keyword] = ACTIONS(494), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), + }, + [295] = { + [sym__expression] = STATE(2980), + [sym_block] = STATE(2980), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2980), + [sym_nil] = STATE(2980), + [sym__atom] = STATE(2980), + [sym_quoted_atom] = STATE(2980), + [sym__quoted_i_double] = STATE(2630), + [sym__quoted_i_single] = STATE(2641), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(2980), + [sym_charlist] = STATE(2980), + [sym_sigil] = STATE(2980), + [sym_keywords] = STATE(2981), + [sym_pair] = STATE(2263), + [sym__keyword] = STATE(473), + [sym_quoted_keyword] = STATE(473), + [sym_list] = STATE(2980), + [sym_tuple] = STATE(2980), + [sym_bitstring] = STATE(2980), + [sym_map] = STATE(2980), + [sym_unary_operator] = STATE(2980), + [sym_binary_operator] = STATE(2980), + [sym_operator_identifier] = STATE(5584), + [sym_dot] = STATE(2980), + [sym_call] = STATE(2980), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(2980), + [sym_anonymous_function] = STATE(2980), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1371), + [sym_integer] = ACTIONS(1371), + [sym_float] = ACTIONS(1371), + [sym_char] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1371), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [sym_keyword] = ACTIONS(494), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), + }, + [296] = { + [sym__expression] = STATE(3818), + [sym_block] = STATE(3818), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3818), + [sym_nil] = STATE(3818), + [sym__atom] = STATE(3818), + [sym_quoted_atom] = STATE(3818), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3818), + [sym_charlist] = STATE(3818), + [sym_sigil] = STATE(3818), + [sym_keywords] = STATE(5439), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(3818), + [sym_tuple] = STATE(3818), + [sym_bitstring] = STATE(3818), + [sym_map] = STATE(3818), + [sym_unary_operator] = STATE(3818), + [sym_binary_operator] = STATE(3818), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3818), + [sym_call] = STATE(3818), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3818), + [sym_anonymous_function] = STATE(3818), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1373), + [sym_integer] = ACTIONS(1373), + [sym_float] = ACTIONS(1373), + [sym_char] = ACTIONS(1373), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(1373), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [297] = { + [sym__expression] = STATE(3552), + [sym_block] = STATE(3552), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3552), + [sym_nil] = STATE(3552), + [sym__atom] = STATE(3552), + [sym_quoted_atom] = STATE(3552), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3552), + [sym_charlist] = STATE(3552), + [sym_sigil] = STATE(3552), + [sym__keywords_with_trailing_separator] = STATE(5595), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3552), + [sym_tuple] = STATE(3552), + [sym_bitstring] = STATE(3552), + [sym_map] = STATE(3552), + [sym_unary_operator] = STATE(3552), + [sym_binary_operator] = STATE(3552), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3552), + [sym_call] = STATE(3552), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3552), + [sym_anonymous_function] = STATE(3552), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1197), + [sym_integer] = ACTIONS(1197), + [sym_float] = ACTIONS(1197), + [sym_char] = ACTIONS(1197), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [298] = { + [sym__terminator] = STATE(470), + [sym__expression] = STATE(2701), + [sym_block] = STATE(2701), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(2701), + [sym_nil] = STATE(2701), + [sym__atom] = STATE(2701), + [sym_quoted_atom] = STATE(2701), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2701), + [sym_call] = STATE(2701), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2701), + [sym_body] = STATE(4396), + [sym_anonymous_function] = STATE(2701), + [aux_sym__terminator_repeat1] = STATE(1020), + [aux_sym__terminator_token1] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1015), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1341), + [sym_integer] = ACTIONS(1341), + [sym_float] = ACTIONS(1341), + [sym_char] = ACTIONS(1341), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1341), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [299] = { + [sym__expression] = STATE(3417), + [sym_block] = STATE(3417), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3417), + [sym_nil] = STATE(3417), + [sym__atom] = STATE(3417), + [sym_quoted_atom] = STATE(3417), + [sym__quoted_i_double] = STATE(2961), + [sym__quoted_i_single] = STATE(2959), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [sym_string] = STATE(3417), + [sym_charlist] = STATE(3417), + [sym_sigil] = STATE(3417), + [sym_keywords] = STATE(3438), + [sym_pair] = STATE(2733), + [sym__keyword] = STATE(476), + [sym_quoted_keyword] = STATE(476), + [sym_list] = STATE(3417), + [sym_tuple] = STATE(3417), + [sym_bitstring] = STATE(3417), + [sym_map] = STATE(3417), + [sym_unary_operator] = STATE(3417), + [sym_binary_operator] = STATE(3417), + [sym_operator_identifier] = STATE(5616), + [sym_dot] = STATE(3417), + [sym_call] = STATE(3417), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3417), + [sym_anonymous_function] = STATE(3417), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(1367), + [sym_integer] = ACTIONS(1367), + [sym_float] = ACTIONS(1367), + [sym_char] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [sym_keyword] = ACTIONS(548), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [300] = { + [sym__terminator] = STATE(880), + [sym__expression] = STATE(2735), + [sym_block] = STATE(2735), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2735), + [sym_nil] = STATE(2735), + [sym__atom] = STATE(2735), + [sym_quoted_atom] = STATE(2735), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2735), + [sym_charlist] = STATE(2735), + [sym_sigil] = STATE(2735), + [sym_list] = STATE(2735), + [sym_tuple] = STATE(2735), + [sym_bitstring] = STATE(2735), + [sym_map] = STATE(2735), + [sym_unary_operator] = STATE(2735), + [sym_binary_operator] = STATE(2735), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2735), + [sym_call] = STATE(2735), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2735), + [sym_body] = STATE(4396), + [sym_anonymous_function] = STATE(2735), + [aux_sym__terminator_repeat1] = STATE(1020), + [aux_sym__terminator_token1] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(1377), + [sym_integer] = ACTIONS(1377), + [sym_float] = ACTIONS(1377), + [sym_char] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_end] = ACTIONS(1015), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [301] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(1379), + [anon_sym_catch] = ACTIONS(1379), + [anon_sym_else] = ACTIONS(1379), + [anon_sym_end] = ACTIONS(1379), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(1379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [302] = { + [sym__expression] = STATE(3706), + [sym_block] = STATE(3706), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3706), + [sym_nil] = STATE(3706), + [sym__atom] = STATE(3706), + [sym_quoted_atom] = STATE(3706), + [sym__quoted_i_double] = STATE(1603), + [sym__quoted_i_single] = STATE(1604), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3706), + [sym_charlist] = STATE(3706), + [sym_sigil] = STATE(3706), + [sym_keywords] = STATE(1858), + [sym_pair] = STATE(3287), + [sym__keyword] = STATE(899), + [sym_quoted_keyword] = STATE(899), + [sym_list] = STATE(3706), + [sym_tuple] = STATE(3706), + [sym_bitstring] = STATE(3706), + [sym_map] = STATE(3706), + [sym_unary_operator] = STATE(3706), + [sym_binary_operator] = STATE(3706), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3706), + [sym_call] = STATE(3706), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3706), + [sym_anonymous_function] = STATE(3706), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1381), + [sym_integer] = ACTIONS(1381), + [sym_float] = ACTIONS(1381), + [sym_char] = ACTIONS(1381), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1381), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [sym_keyword] = ACTIONS(1355), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [303] = { + [sym__expression] = STATE(2816), + [sym_block] = STATE(2816), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2816), + [sym_nil] = STATE(2816), + [sym__atom] = STATE(2816), + [sym_quoted_atom] = STATE(2816), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2816), + [sym_charlist] = STATE(2816), + [sym_sigil] = STATE(2816), + [sym_keywords] = STATE(1310), + [sym_pair] = STATE(2375), + [sym__keyword] = STATE(522), + [sym_quoted_keyword] = STATE(522), + [sym_list] = STATE(2816), + [sym_tuple] = STATE(2816), + [sym_bitstring] = STATE(2816), + [sym_map] = STATE(2816), + [sym_unary_operator] = STATE(2816), + [sym_binary_operator] = STATE(2816), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2816), + [sym_call] = STATE(2816), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2816), + [sym_anonymous_function] = STATE(2816), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(1363), + [sym_integer] = ACTIONS(1363), + [sym_float] = ACTIONS(1363), + [sym_char] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [sym_keyword] = ACTIONS(457), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [304] = { + [sym__expression] = STATE(3552), + [sym_block] = STATE(3552), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3552), + [sym_nil] = STATE(3552), + [sym__atom] = STATE(3552), + [sym_quoted_atom] = STATE(3552), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3552), + [sym_charlist] = STATE(3552), + [sym_sigil] = STATE(3552), + [sym__keywords_with_trailing_separator] = STATE(5537), + [sym_pair] = STATE(5015), + [sym__keyword] = STATE(870), + [sym_quoted_keyword] = STATE(870), + [sym_list] = STATE(3552), + [sym_tuple] = STATE(3552), + [sym_bitstring] = STATE(3552), + [sym_map] = STATE(3552), + [sym_unary_operator] = STATE(3552), + [sym_binary_operator] = STATE(3552), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3552), + [sym_call] = STATE(3552), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3552), + [sym_anonymous_function] = STATE(3552), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1197), + [sym_integer] = ACTIONS(1197), + [sym_float] = ACTIONS(1197), + [sym_char] = ACTIONS(1197), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1041), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [305] = { + [sym__expression] = STATE(2401), + [sym_block] = STATE(2401), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2401), + [sym_nil] = STATE(2401), + [sym__atom] = STATE(2401), + [sym_quoted_atom] = STATE(2401), + [sym__quoted_i_double] = STATE(1770), + [sym__quoted_i_single] = STATE(1771), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2401), + [sym_charlist] = STATE(2401), + [sym_sigil] = STATE(2401), + [sym_keywords] = STATE(2089), + [sym_pair] = STATE(2088), + [sym__keyword] = STATE(510), + [sym_quoted_keyword] = STATE(510), + [sym_list] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_bitstring] = STATE(2401), + [sym_map] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_binary_operator] = STATE(2401), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2401), + [sym_call] = STATE(2401), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), [sym__anonymous_dot] = STATE(5456), - [sym__double_call] = STATE(3811), - [sym_access_call] = STATE(3964), - [sym_anonymous_function] = STATE(3964), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2401), + [sym_anonymous_function] = STATE(2401), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1383), + [sym_integer] = ACTIONS(1383), + [sym_float] = ACTIONS(1383), + [sym_char] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [sym_keyword] = ACTIONS(367), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [306] = { + [sym__expression] = STATE(3388), + [sym_block] = STATE(3388), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3388), + [sym_nil] = STATE(3388), + [sym__atom] = STATE(3388), + [sym_quoted_atom] = STATE(3388), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(3388), + [sym_charlist] = STATE(3388), + [sym_sigil] = STATE(3388), + [sym_keywords] = STATE(1600), + [sym_pair] = STATE(2697), + [sym__keyword] = STATE(647), + [sym_quoted_keyword] = STATE(647), + [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(5565), + [sym_dot] = STATE(3388), + [sym_call] = STATE(3388), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3388), + [sym_anonymous_function] = STATE(3388), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1387), + [sym_integer] = ACTIONS(1387), + [sym_float] = ACTIONS(1387), + [sym_char] = ACTIONS(1387), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1387), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(1389), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [307] = { + [sym__expression] = STATE(3384), + [sym_block] = STATE(3384), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3384), + [sym_nil] = STATE(3384), + [sym__atom] = STATE(3384), + [sym_quoted_atom] = STATE(3384), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(3384), + [sym_charlist] = STATE(3384), + [sym_sigil] = STATE(3384), + [sym_keywords] = STATE(1683), + [sym_pair] = STATE(2697), + [sym__keyword] = STATE(647), + [sym_quoted_keyword] = STATE(647), + [sym_list] = STATE(3384), + [sym_tuple] = STATE(3384), + [sym_bitstring] = STATE(3384), + [sym_map] = STATE(3384), + [sym_unary_operator] = STATE(3384), + [sym_binary_operator] = STATE(3384), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(3384), + [sym_call] = STATE(3384), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3384), + [sym_anonymous_function] = STATE(3384), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1391), + [sym_integer] = ACTIONS(1391), + [sym_float] = ACTIONS(1391), + [sym_char] = ACTIONS(1391), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1391), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [sym_keyword] = ACTIONS(1389), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [308] = { + [sym__expression] = STATE(3960), + [sym_block] = STATE(3960), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3960), + [sym_nil] = STATE(3960), + [sym__atom] = STATE(3960), + [sym_quoted_atom] = STATE(3960), + [sym__quoted_i_double] = STATE(3289), + [sym__quoted_i_single] = STATE(3288), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(3960), + [sym_charlist] = STATE(3960), + [sym_sigil] = STATE(3960), + [sym_keywords] = STATE(3959), + [sym_pair] = STATE(3447), + [sym__keyword] = STATE(562), + [sym_quoted_keyword] = STATE(562), + [sym_list] = STATE(3960), + [sym_tuple] = STATE(3960), + [sym_bitstring] = STATE(3960), + [sym_map] = STATE(3960), + [sym_unary_operator] = STATE(3960), + [sym_binary_operator] = STATE(3960), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3960), + [sym_call] = STATE(3960), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3960), + [sym_anonymous_function] = STATE(3960), [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(2233), - [sym_integer] = ACTIONS(2233), - [sym_float] = ACTIONS(2233), - [sym_char] = ACTIONS(2233), - [anon_sym_true] = ACTIONS(23), - [anon_sym_false] = ACTIONS(23), - [anon_sym_nil] = ACTIONS(25), - [sym_atom] = ACTIONS(2233), - [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_alias] = ACTIONS(1393), + [sym_integer] = ACTIONS(1393), + [sym_float] = ACTIONS(1393), + [sym_char] = ACTIONS(1393), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1393), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [sym_keyword] = ACTIONS(1359), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), [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), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), }, - [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(1335), - [sym__anonymous_dot] = STATE(5522), - [sym__double_call] = STATE(1770), - [sym_access_call] = STATE(2639), - [sym_anonymous_function] = STATE(2639), + [309] = { + [sym__expression] = STATE(1578), + [sym_block] = STATE(1578), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1578), + [sym_nil] = STATE(1578), + [sym__atom] = STATE(1578), + [sym_quoted_atom] = STATE(1578), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1578), + [sym_charlist] = STATE(1578), + [sym_sigil] = STATE(1578), + [sym_keywords] = STATE(1312), + [sym_pair] = STATE(1320), + [sym__keyword] = STATE(756), + [sym_quoted_keyword] = STATE(756), + [sym_list] = STATE(1578), + [sym_tuple] = STATE(1578), + [sym_bitstring] = STATE(1578), + [sym_map] = STATE(1578), + [sym_unary_operator] = STATE(1578), + [sym_binary_operator] = STATE(1578), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1578), + [sym_call] = STATE(1578), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1578), + [sym_anonymous_function] = STATE(1578), [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_fn] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1395), + [sym_integer] = ACTIONS(1395), + [sym_float] = ACTIONS(1395), + [sym_char] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [sym_keyword] = ACTIONS(212), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), [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), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), }, - [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), + [310] = { + [sym__expression] = STATE(4110), + [sym_block] = STATE(4110), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(4110), + [sym_nil] = STATE(4110), + [sym__atom] = STATE(4110), + [sym_quoted_atom] = STATE(4110), + [sym__quoted_i_double] = STATE(3364), + [sym__quoted_i_single] = STATE(3365), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(4110), + [sym_charlist] = STATE(4110), + [sym_sigil] = STATE(4110), + [sym_keywords] = STATE(5450), + [sym_pair] = STATE(5022), + [sym__keyword] = STATE(856), + [sym_quoted_keyword] = STATE(856), + [sym_list] = STATE(4110), + [sym_tuple] = STATE(4110), + [sym_bitstring] = STATE(4110), + [sym_map] = STATE(4110), + [sym_unary_operator] = STATE(4110), + [sym_binary_operator] = STATE(4110), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(4110), + [sym_call] = STATE(4110), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(4110), + [sym_anonymous_function] = STATE(4110), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1313), + [sym_integer] = ACTIONS(1313), + [sym_float] = ACTIONS(1313), + [sym_char] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(1313), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [sym_keyword] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [311] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(1397), + [anon_sym_catch] = ACTIONS(1397), + [anon_sym_else] = ACTIONS(1397), + [anon_sym_end] = ACTIONS(1397), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(1397), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [312] = { + [sym__expression] = STATE(3208), + [sym_block] = STATE(3208), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3208), + [sym_nil] = STATE(3208), + [sym__atom] = STATE(3208), + [sym_quoted_atom] = STATE(3208), + [sym__quoted_i_double] = STATE(2961), + [sym__quoted_i_single] = STATE(2959), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [sym_string] = STATE(3208), + [sym_charlist] = STATE(3208), + [sym_sigil] = STATE(3208), + [sym_keywords] = STATE(3209), + [sym_pair] = STATE(2733), + [sym__keyword] = STATE(476), + [sym_quoted_keyword] = STATE(476), + [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(5616), + [sym_dot] = STATE(3208), + [sym_call] = STATE(3208), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), [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), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3208), + [sym_anonymous_function] = STATE(3208), [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), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(1399), + [sym_integer] = ACTIONS(1399), + [sym_float] = ACTIONS(1399), + [sym_char] = ACTIONS(1399), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(1399), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [sym_keyword] = ACTIONS(548), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [313] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(1401), + [anon_sym_catch] = ACTIONS(1401), + [anon_sym_else] = ACTIONS(1401), + [anon_sym_end] = ACTIONS(1401), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(1401), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [314] = { + [sym__expression] = STATE(1578), + [sym_block] = STATE(1578), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1578), + [sym_nil] = STATE(1578), + [sym__atom] = STATE(1578), + [sym_quoted_atom] = STATE(1578), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1578), + [sym_charlist] = STATE(1578), + [sym_sigil] = STATE(1578), + [sym_keywords] = STATE(1310), + [sym_pair] = STATE(1320), + [sym__keyword] = STATE(756), + [sym_quoted_keyword] = STATE(756), + [sym_list] = STATE(1578), + [sym_tuple] = STATE(1578), + [sym_bitstring] = STATE(1578), + [sym_map] = STATE(1578), + [sym_unary_operator] = STATE(1578), + [sym_binary_operator] = STATE(1578), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1578), + [sym_call] = STATE(1578), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1578), + [sym_anonymous_function] = STATE(1578), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1395), + [sym_integer] = ACTIONS(1395), + [sym_float] = ACTIONS(1395), + [sym_char] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [sym_keyword] = ACTIONS(212), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [315] = { + [sym__expression] = STATE(1488), + [sym_block] = STATE(1488), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1488), + [sym_nil] = STATE(1488), + [sym__atom] = STATE(1488), + [sym_quoted_atom] = STATE(1488), + [sym__quoted_i_double] = STATE(1115), + [sym__quoted_i_single] = STATE(1116), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1488), + [sym_charlist] = STATE(1488), + [sym_sigil] = STATE(1488), + [sym_keywords] = STATE(1304), + [sym_pair] = STATE(1273), + [sym__keyword] = STATE(894), + [sym_quoted_keyword] = STATE(894), + [sym_list] = STATE(1488), + [sym_tuple] = STATE(1488), + [sym_bitstring] = STATE(1488), + [sym_map] = STATE(1488), + [sym_unary_operator] = STATE(1488), + [sym_binary_operator] = STATE(1488), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1488), + [sym_call] = STATE(1488), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1488), + [sym_anonymous_function] = STATE(1488), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), [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), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), [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), - [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), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [sym_keyword] = ACTIONS(260), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), [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), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), }, - [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(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(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), - }, - [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(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(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), - }, - [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(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(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), - }, - [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(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(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(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), - }, - [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), + [316] = { + [sym__expression] = STATE(2935), + [sym_block] = STATE(2935), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2935), + [sym_nil] = STATE(2935), + [sym__atom] = STATE(2935), + [sym_quoted_atom] = STATE(2935), + [sym__quoted_i_double] = STATE(2216), + [sym__quoted_i_single] = STATE(2217), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [sym_string] = STATE(2935), + [sym_charlist] = STATE(2935), + [sym_sigil] = STATE(2935), + [sym_keywords] = STATE(2721), + [sym_pair] = STATE(2278), + [sym__keyword] = STATE(850), + [sym_quoted_keyword] = STATE(850), + [sym_list] = STATE(2935), + [sym_tuple] = STATE(2935), + [sym_bitstring] = STATE(2935), + [sym_map] = STATE(2935), + [sym_unary_operator] = STATE(2935), + [sym_binary_operator] = STATE(2935), + [sym_operator_identifier] = STATE(5624), + [sym_dot] = STATE(2935), + [sym_call] = STATE(2935), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), [sym__anonymous_dot] = STATE(5522), - [sym__double_call] = STATE(1770), - [sym_access_call] = STATE(1824), - [sym_anonymous_function] = STATE(1824), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2935), + [sym_anonymous_function] = STATE(2935), [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), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1403), + [sym_integer] = ACTIONS(1403), + [sym_float] = ACTIONS(1403), + [sym_char] = ACTIONS(1403), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1403), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [sym_keyword] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), [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), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), }, - [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), + [317] = { + [sym__expression] = STATE(2314), + [sym_block] = STATE(2314), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2314), + [sym_nil] = STATE(2314), + [sym__atom] = STATE(2314), + [sym_quoted_atom] = STATE(2314), + [sym__quoted_i_double] = STATE(1115), + [sym__quoted_i_single] = STATE(1116), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2314), + [sym_charlist] = STATE(2314), + [sym_sigil] = STATE(2314), + [sym_keywords] = STATE(1219), + [sym_pair] = STATE(2100), + [sym__keyword] = STATE(612), + [sym_quoted_keyword] = STATE(612), + [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(5600), + [sym_dot] = STATE(2314), + [sym_call] = STATE(2314), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2314), + [sym_anonymous_function] = STATE(2314), [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), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(1405), + [sym_integer] = ACTIONS(1405), + [sym_float] = ACTIONS(1405), + [sym_char] = ACTIONS(1405), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1405), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [sym_keyword] = ACTIONS(424), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), [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), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), }, - [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), + [318] = { + [sym__expression] = STATE(2401), + [sym_block] = STATE(2401), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2401), + [sym_nil] = STATE(2401), + [sym__atom] = STATE(2401), + [sym_quoted_atom] = STATE(2401), + [sym__quoted_i_double] = STATE(1770), + [sym__quoted_i_single] = STATE(1771), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2401), + [sym_charlist] = STATE(2401), + [sym_sigil] = STATE(2401), + [sym_keywords] = STATE(2090), + [sym_pair] = STATE(2088), + [sym__keyword] = STATE(510), + [sym_quoted_keyword] = STATE(510), + [sym_list] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_bitstring] = STATE(2401), + [sym_map] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_binary_operator] = STATE(2401), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2401), + [sym_call] = STATE(2401), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2401), + [sym_anonymous_function] = STATE(2401), [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), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1383), + [sym_integer] = ACTIONS(1383), + [sym_float] = ACTIONS(1383), + [sym_char] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [sym_keyword] = ACTIONS(367), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), [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), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), }, - [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), + [319] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), [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), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), [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(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(1407), + [anon_sym_catch] = ACTIONS(1407), + [anon_sym_else] = ACTIONS(1407), + [anon_sym_end] = ACTIONS(1407), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(1407), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [320] = { + [sym__expression] = STATE(3107), + [sym_block] = STATE(3107), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(3107), + [sym_nil] = STATE(3107), + [sym__atom] = STATE(3107), + [sym_quoted_atom] = STATE(3107), + [sym__quoted_i_double] = STATE(2216), + [sym__quoted_i_single] = STATE(2217), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [sym_string] = STATE(3107), + [sym_charlist] = STATE(3107), + [sym_sigil] = STATE(3107), + [sym_keywords] = STATE(2863), + [sym_pair] = STATE(2278), + [sym__keyword] = STATE(850), + [sym_quoted_keyword] = STATE(850), + [sym_list] = STATE(3107), + [sym_tuple] = STATE(3107), + [sym_bitstring] = STATE(3107), + [sym_map] = STATE(3107), + [sym_unary_operator] = STATE(3107), + [sym_binary_operator] = STATE(3107), + [sym_operator_identifier] = STATE(5624), + [sym_dot] = STATE(3107), + [sym_call] = STATE(3107), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(3107), + [sym_anonymous_function] = STATE(3107), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1307), + [sym_integer] = ACTIONS(1307), + [sym_float] = ACTIONS(1307), + [sym_char] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [sym_keyword] = ACTIONS(594), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), + }, + [321] = { + [sym__expression] = STATE(2835), + [sym_block] = STATE(2835), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(2835), + [sym_nil] = STATE(2835), + [sym__atom] = STATE(2835), + [sym_quoted_atom] = STATE(2835), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2835), + [sym_charlist] = STATE(2835), + [sym_sigil] = STATE(2835), + [sym_keywords] = STATE(1310), + [sym_pair] = STATE(2203), + [sym__keyword] = STATE(874), + [sym_quoted_keyword] = STATE(874), + [sym_list] = STATE(2835), + [sym_tuple] = STATE(2835), + [sym_bitstring] = STATE(2835), + [sym_map] = STATE(2835), + [sym_unary_operator] = STATE(2835), + [sym_binary_operator] = STATE(2835), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2835), + [sym_call] = STATE(2835), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2835), + [sym_anonymous_function] = STATE(2835), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(1409), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1409), + [sym_char] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [sym_keyword] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [322] = { + [sym__expression] = STATE(2835), + [sym_block] = STATE(2835), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(2835), + [sym_nil] = STATE(2835), + [sym__atom] = STATE(2835), + [sym_quoted_atom] = STATE(2835), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2835), + [sym_charlist] = STATE(2835), + [sym_sigil] = STATE(2835), + [sym_keywords] = STATE(1312), + [sym_pair] = STATE(2203), + [sym__keyword] = STATE(874), + [sym_quoted_keyword] = STATE(874), + [sym_list] = STATE(2835), + [sym_tuple] = STATE(2835), + [sym_bitstring] = STATE(2835), + [sym_map] = STATE(2835), + [sym_unary_operator] = STATE(2835), + [sym_binary_operator] = STATE(2835), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2835), + [sym_call] = STATE(2835), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2835), + [sym_anonymous_function] = STATE(2835), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(1409), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1409), + [sym_char] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [sym_keyword] = ACTIONS(443), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [323] = { + [sym__expression] = STATE(2114), + [sym_block] = STATE(2114), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2114), + [sym_nil] = STATE(2114), + [sym__atom] = STATE(2114), + [sym_quoted_atom] = STATE(2114), + [sym__quoted_i_double] = STATE(1603), + [sym__quoted_i_single] = STATE(1604), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2114), + [sym_charlist] = STATE(2114), + [sym_sigil] = STATE(2114), + [sym_keywords] = STATE(1853), + [sym_pair] = STATE(1711), + [sym__keyword] = STATE(681), + [sym_quoted_keyword] = STATE(681), + [sym_list] = STATE(2114), + [sym_tuple] = STATE(2114), + [sym_bitstring] = STATE(2114), + [sym_map] = STATE(2114), + [sym_unary_operator] = STATE(2114), + [sym_binary_operator] = STATE(2114), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2114), + [sym_call] = STATE(2114), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2114), + [sym_anonymous_function] = STATE(2114), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(1411), + [sym_integer] = ACTIONS(1411), + [sym_float] = ACTIONS(1411), + [sym_char] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1411), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [sym_keyword] = ACTIONS(1413), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [324] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(1415), + [anon_sym_catch] = ACTIONS(1415), + [anon_sym_else] = ACTIONS(1415), + [anon_sym_end] = ACTIONS(1415), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(1415), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [325] = { + [sym__expression] = STATE(2139), + [sym_block] = STATE(2139), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2139), + [sym_nil] = STATE(2139), + [sym__atom] = STATE(2139), + [sym_quoted_atom] = STATE(2139), + [sym__quoted_i_double] = STATE(1603), + [sym__quoted_i_single] = STATE(1604), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2139), + [sym_charlist] = STATE(2139), + [sym_sigil] = STATE(2139), + [sym_keywords] = STATE(1858), + [sym_pair] = STATE(1711), + [sym__keyword] = STATE(681), + [sym_quoted_keyword] = STATE(681), + [sym_list] = STATE(2139), + [sym_tuple] = STATE(2139), + [sym_bitstring] = STATE(2139), + [sym_map] = STATE(2139), + [sym_unary_operator] = STATE(2139), + [sym_binary_operator] = STATE(2139), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2139), + [sym_call] = STATE(2139), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2139), + [sym_anonymous_function] = STATE(2139), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(1417), + [sym_integer] = ACTIONS(1417), + [sym_float] = ACTIONS(1417), + [sym_char] = ACTIONS(1417), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1417), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [sym_keyword] = ACTIONS(1413), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [326] = { + [sym__expression] = STATE(2627), + [sym_block] = STATE(2627), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2627), + [sym_nil] = STATE(2627), + [sym__atom] = STATE(2627), + [sym_quoted_atom] = STATE(2627), + [sym__quoted_i_double] = STATE(1115), + [sym__quoted_i_single] = STATE(1116), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2627), + [sym_charlist] = STATE(2627), + [sym_sigil] = STATE(2627), + [sym_keywords] = STATE(1304), + [sym_pair] = STATE(2100), + [sym__keyword] = STATE(612), + [sym_quoted_keyword] = STATE(612), + [sym_list] = STATE(2627), + [sym_tuple] = STATE(2627), + [sym_bitstring] = STATE(2627), + [sym_map] = STATE(2627), + [sym_unary_operator] = STATE(2627), + [sym_binary_operator] = STATE(2627), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(2627), + [sym_call] = STATE(2627), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2627), + [sym_anonymous_function] = STATE(2627), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(1315), + [sym_integer] = ACTIONS(1315), + [sym_float] = ACTIONS(1315), + [sym_char] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [sym_keyword] = ACTIONS(424), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [327] = { + [sym__expression] = STATE(3199), + [sym_block] = STATE(3199), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3199), + [sym_nil] = STATE(3199), + [sym__atom] = STATE(3199), + [sym_quoted_atom] = STATE(3199), + [sym__quoted_i_double] = STATE(2961), + [sym__quoted_i_single] = STATE(2959), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [sym_string] = STATE(3199), + [sym_charlist] = STATE(3199), + [sym_sigil] = STATE(3199), + [sym_keywords] = STATE(3200), + [sym_pair] = STATE(2733), + [sym__keyword] = STATE(476), + [sym_quoted_keyword] = STATE(476), + [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(5616), + [sym_dot] = STATE(3199), + [sym_call] = STATE(3199), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3199), + [sym_anonymous_function] = STATE(3199), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(1419), + [sym_integer] = ACTIONS(1419), + [sym_float] = ACTIONS(1419), + [sym_char] = ACTIONS(1419), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(1419), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [sym_keyword] = ACTIONS(548), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [328] = { + [sym__expression] = STATE(1641), + [sym_block] = STATE(1641), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1641), + [sym_nil] = STATE(1641), + [sym__atom] = STATE(1641), + [sym_quoted_atom] = STATE(1641), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1641), + [sym_charlist] = STATE(1641), + [sym_sigil] = STATE(1641), + [sym_keywords] = STATE(1391), + [sym_pair] = STATE(1320), + [sym__keyword] = STATE(756), + [sym_quoted_keyword] = STATE(756), + [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(5631), + [sym_dot] = STATE(1641), + [sym_call] = STATE(1641), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1641), + [sym_anonymous_function] = STATE(1641), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1421), + [sym_integer] = ACTIONS(1421), + [sym_float] = ACTIONS(1421), + [sym_char] = ACTIONS(1421), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1421), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [sym_keyword] = ACTIONS(212), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [329] = { + [sym__expression] = STATE(2308), + [sym_block] = STATE(2308), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2308), + [sym_nil] = STATE(2308), + [sym__atom] = STATE(2308), + [sym_quoted_atom] = STATE(2308), + [sym__quoted_i_double] = STATE(1115), + [sym__quoted_i_single] = STATE(1116), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2308), + [sym_charlist] = STATE(2308), + [sym_sigil] = STATE(2308), + [sym_keywords] = STATE(1220), + [sym_pair] = STATE(2100), + [sym__keyword] = STATE(612), + [sym_quoted_keyword] = STATE(612), + [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(5600), + [sym_dot] = STATE(2308), + [sym_call] = STATE(2308), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2308), + [sym_anonymous_function] = STATE(2308), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(1423), + [sym_integer] = ACTIONS(1423), + [sym_float] = ACTIONS(1423), + [sym_char] = ACTIONS(1423), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1423), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [sym_keyword] = ACTIONS(424), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [330] = { + [sym__expression] = STATE(3425), + [sym_block] = STATE(3425), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3425), + [sym_nil] = STATE(3425), + [sym__atom] = STATE(3425), + [sym_quoted_atom] = STATE(3425), + [sym__quoted_i_double] = STATE(1770), + [sym__quoted_i_single] = STATE(1771), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(3425), + [sym_charlist] = STATE(3425), + [sym_sigil] = STATE(3425), + [sym_keywords] = STATE(2079), + [sym_pair] = STATE(2669), + [sym__keyword] = STATE(737), + [sym_quoted_keyword] = STATE(737), + [sym_list] = STATE(3425), + [sym_tuple] = STATE(3425), + [sym_bitstring] = STATE(3425), + [sym_map] = STATE(3425), + [sym_unary_operator] = STATE(3425), + [sym_binary_operator] = STATE(3425), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(3425), + [sym_call] = STATE(3425), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3425), + [sym_anonymous_function] = STATE(3425), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1425), + [sym_integer] = ACTIONS(1425), + [sym_float] = ACTIONS(1425), + [sym_char] = ACTIONS(1425), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1425), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [sym_keyword] = ACTIONS(630), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [331] = { + [sym__expression] = STATE(3432), + [sym_block] = STATE(3432), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3432), + [sym_nil] = STATE(3432), + [sym__atom] = STATE(3432), + [sym_quoted_atom] = STATE(3432), + [sym__quoted_i_double] = STATE(1770), + [sym__quoted_i_single] = STATE(1771), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(3432), + [sym_charlist] = STATE(3432), + [sym_sigil] = STATE(3432), + [sym_keywords] = STATE(2080), + [sym_pair] = STATE(2669), + [sym__keyword] = STATE(737), + [sym_quoted_keyword] = STATE(737), + [sym_list] = STATE(3432), + [sym_tuple] = STATE(3432), + [sym_bitstring] = STATE(3432), + [sym_map] = STATE(3432), + [sym_unary_operator] = STATE(3432), + [sym_binary_operator] = STATE(3432), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(3432), + [sym_call] = STATE(3432), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3432), + [sym_anonymous_function] = STATE(3432), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), [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), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), [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), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [sym_keyword] = ACTIONS(630), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), [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), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), }, - [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), + [332] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(1429), + [anon_sym_catch] = ACTIONS(1429), + [anon_sym_else] = ACTIONS(1429), + [anon_sym_end] = ACTIONS(1429), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(1429), [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), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [333] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(1431), + [anon_sym_catch] = ACTIONS(1431), + [anon_sym_else] = ACTIONS(1431), + [anon_sym_end] = ACTIONS(1431), + [anon_sym_fn] = ACTIONS(928), + [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(1511), - [sym__not_in] = ACTIONS(57), - [sym__quoted_atom_start] = ACTIONS(1109), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [334] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(1433), + [anon_sym_catch] = ACTIONS(1433), + [anon_sym_else] = ACTIONS(1433), + [anon_sym_end] = ACTIONS(1433), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(1433), [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), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [335] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_after] = ACTIONS(1435), + [anon_sym_catch] = ACTIONS(1435), + [anon_sym_else] = ACTIONS(1435), + [anon_sym_end] = ACTIONS(1435), + [anon_sym_fn] = ACTIONS(928), + [anon_sym_rescue] = ACTIONS(1435), [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), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [714] = { + [336] = { + [sym__expression] = STATE(4072), + [sym_block] = STATE(4072), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(4072), + [sym_nil] = STATE(4072), + [sym__atom] = STATE(4072), + [sym_quoted_atom] = STATE(4072), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(4072), + [sym_charlist] = STATE(4072), + [sym_sigil] = STATE(4072), + [sym_keywords] = STATE(3008), + [sym_pair] = STATE(3861), + [sym__keyword] = STATE(906), + [sym_quoted_keyword] = STATE(906), + [sym_list] = STATE(4072), + [sym_tuple] = STATE(4072), + [sym_bitstring] = STATE(4072), + [sym_map] = STATE(4072), + [sym_unary_operator] = STATE(4072), + [sym_binary_operator] = STATE(4072), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4072), + [sym_call] = STATE(4072), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4072), + [sym_anonymous_function] = STATE(4072), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1437), + [sym_integer] = ACTIONS(1437), + [sym_float] = ACTIONS(1437), + [sym_char] = ACTIONS(1437), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1439), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [337] = { + [sym__expression] = STATE(1457), + [sym_block] = STATE(1457), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1457), + [sym_nil] = STATE(1457), + [sym__atom] = STATE(1457), + [sym_quoted_atom] = STATE(1457), + [sym__quoted_i_double] = STATE(1115), + [sym__quoted_i_single] = STATE(1116), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1457), + [sym_charlist] = STATE(1457), + [sym_sigil] = STATE(1457), + [sym_keywords] = STATE(1219), + [sym_pair] = STATE(1273), + [sym__keyword] = STATE(894), + [sym_quoted_keyword] = STATE(894), + [sym_list] = STATE(1457), + [sym_tuple] = STATE(1457), + [sym_bitstring] = STATE(1457), + [sym_map] = STATE(1457), + [sym_unary_operator] = STATE(1457), + [sym_binary_operator] = STATE(1457), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1457), + [sym_call] = STATE(1457), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1457), + [sym_anonymous_function] = STATE(1457), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1449), + [sym_integer] = ACTIONS(1449), + [sym_float] = ACTIONS(1449), + [sym_char] = ACTIONS(1449), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1449), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [sym_keyword] = ACTIONS(260), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [338] = { + [sym__expression] = STATE(4076), + [sym_block] = STATE(4076), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(4076), + [sym_nil] = STATE(4076), + [sym__atom] = STATE(4076), + [sym_quoted_atom] = STATE(4076), + [sym__quoted_i_double] = STATE(2261), + [sym__quoted_i_single] = STATE(2262), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(4076), + [sym_charlist] = STATE(4076), + [sym_sigil] = STATE(4076), + [sym_keywords] = STATE(3090), + [sym_pair] = STATE(3861), + [sym__keyword] = STATE(906), + [sym_quoted_keyword] = STATE(906), + [sym_list] = STATE(4076), + [sym_tuple] = STATE(4076), + [sym_bitstring] = STATE(4076), + [sym_map] = STATE(4076), + [sym_unary_operator] = STATE(4076), + [sym_binary_operator] = STATE(4076), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4076), + [sym_call] = STATE(4076), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4076), + [sym_anonymous_function] = STATE(4076), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1451), + [sym_integer] = ACTIONS(1451), + [sym_float] = ACTIONS(1451), + [sym_char] = ACTIONS(1451), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1451), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [sym_keyword] = ACTIONS(1439), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [339] = { + [sym__expression] = STATE(1463), + [sym_block] = STATE(1463), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1463), + [sym_nil] = STATE(1463), + [sym__atom] = STATE(1463), + [sym_quoted_atom] = STATE(1463), + [sym__quoted_i_double] = STATE(1115), + [sym__quoted_i_single] = STATE(1116), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1463), + [sym_charlist] = STATE(1463), + [sym_sigil] = STATE(1463), + [sym_keywords] = STATE(1220), + [sym_pair] = STATE(1273), + [sym__keyword] = STATE(894), + [sym_quoted_keyword] = STATE(894), + [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(5600), + [sym_dot] = STATE(1463), + [sym_call] = STATE(1463), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1463), + [sym_anonymous_function] = STATE(1463), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1453), + [sym_integer] = ACTIONS(1453), + [sym_float] = ACTIONS(1453), + [sym_char] = ACTIONS(1453), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1453), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [sym_keyword] = ACTIONS(260), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [340] = { + [sym__expression] = STATE(2288), + [sym_block] = STATE(2288), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2288), + [sym_nil] = STATE(2288), + [sym__atom] = STATE(2288), + [sym_quoted_atom] = STATE(2288), + [sym__quoted_i_double] = STATE(1770), + [sym__quoted_i_single] = STATE(1771), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2288), + [sym_charlist] = STATE(2288), + [sym_sigil] = STATE(2288), + [sym_keywords] = STATE(2080), + [sym_pair] = STATE(2088), + [sym__keyword] = STATE(510), + [sym_quoted_keyword] = STATE(510), + [sym_list] = STATE(2288), + [sym_tuple] = STATE(2288), + [sym_bitstring] = STATE(2288), + [sym_map] = STATE(2288), + [sym_unary_operator] = STATE(2288), + [sym_binary_operator] = STATE(2288), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2288), + [sym_call] = STATE(2288), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2288), + [sym_anonymous_function] = STATE(2288), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1455), + [sym_integer] = ACTIONS(1455), + [sym_float] = ACTIONS(1455), + [sym_char] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1455), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [sym_keyword] = ACTIONS(367), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [341] = { + [sym__expression] = STATE(1887), + [sym_block] = STATE(1887), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1887), + [sym_nil] = STATE(1887), + [sym__atom] = STATE(1887), + [sym_quoted_atom] = STATE(1887), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1887), + [sym_charlist] = STATE(1887), + [sym_sigil] = STATE(1887), + [sym_keywords] = STATE(1683), + [sym_pair] = STATE(1555), + [sym__keyword] = STATE(700), + [sym_quoted_keyword] = STATE(700), + [sym_list] = STATE(1887), + [sym_tuple] = STATE(1887), + [sym_bitstring] = STATE(1887), + [sym_map] = STATE(1887), + [sym_unary_operator] = STATE(1887), + [sym_binary_operator] = STATE(1887), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1887), + [sym_call] = STATE(1887), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1887), + [sym_anonymous_function] = STATE(1887), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(1457), + [sym_integer] = ACTIONS(1457), + [sym_float] = ACTIONS(1457), + [sym_char] = ACTIONS(1457), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1457), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(1459), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [342] = { + [sym__expression] = STATE(1891), + [sym_block] = STATE(1891), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1891), + [sym_nil] = STATE(1891), + [sym__atom] = STATE(1891), + [sym_quoted_atom] = STATE(1891), + [sym__quoted_i_double] = STATE(1362), + [sym__quoted_i_single] = STATE(1357), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1891), + [sym_charlist] = STATE(1891), + [sym_sigil] = STATE(1891), + [sym_keywords] = STATE(1600), + [sym_pair] = STATE(1555), + [sym__keyword] = STATE(700), + [sym_quoted_keyword] = STATE(700), + [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(5565), + [sym_dot] = STATE(1891), + [sym_call] = STATE(1891), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1891), + [sym_anonymous_function] = STATE(1891), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(1461), + [sym_integer] = ACTIONS(1461), + [sym_float] = ACTIONS(1461), + [sym_char] = ACTIONS(1461), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1461), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [sym_keyword] = ACTIONS(1459), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [343] = { + [sym__expression] = STATE(1654), + [sym_block] = STATE(1654), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1654), + [sym_nil] = STATE(1654), + [sym__atom] = STATE(1654), + [sym_quoted_atom] = STATE(1654), + [sym__quoted_i_double] = STATE(1303), + [sym__quoted_i_single] = STATE(1302), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1654), + [sym_charlist] = STATE(1654), + [sym_sigil] = STATE(1654), + [sym_keywords] = STATE(1390), + [sym_pair] = STATE(1320), + [sym__keyword] = STATE(756), + [sym_quoted_keyword] = STATE(756), + [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(5631), + [sym_dot] = STATE(1654), + [sym_call] = STATE(1654), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1654), + [sym_anonymous_function] = STATE(1654), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1463), + [sym_integer] = ACTIONS(1463), + [sym_float] = ACTIONS(1463), + [sym_char] = ACTIONS(1463), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1463), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [sym_keyword] = ACTIONS(212), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [344] = { + [sym__terminator] = STATE(880), + [sym__expression] = STATE(2735), + [sym_block] = STATE(2735), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2735), + [sym_nil] = STATE(2735), + [sym__atom] = STATE(2735), + [sym_quoted_atom] = STATE(2735), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2735), + [sym_charlist] = STATE(2735), + [sym_sigil] = STATE(2735), + [sym_list] = STATE(2735), + [sym_tuple] = STATE(2735), + [sym_bitstring] = STATE(2735), + [sym_map] = STATE(2735), + [sym_unary_operator] = STATE(2735), + [sym_binary_operator] = STATE(2735), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2735), + [sym_call] = STATE(2735), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2735), + [sym_body] = STATE(4395), + [sym_anonymous_function] = STATE(2735), + [aux_sym__terminator_repeat1] = STATE(1020), + [aux_sym__terminator_token1] = ACTIONS(1004), + [anon_sym_SEMI] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(1377), + [sym_integer] = ACTIONS(1377), + [sym_float] = ACTIONS(1377), + [sym_char] = ACTIONS(1377), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1377), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_end] = ACTIONS(1013), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [345] = { [sym__expression] = STATE(4082), [sym_block] = STATE(4082), - [sym__identifier] = STATE(93), - [sym_identifier] = STATE(93), - [sym_special_identifier] = STATE(93), + [sym_identifier] = STATE(63), [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__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), [sym_string] = STATE(4082), [sym_charlist] = STATE(4082), [sym_sigil] = STATE(4082), @@ -116830,9372 +65191,12386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_map] = STATE(4082), [sym_unary_operator] = STATE(4082), [sym_binary_operator] = STATE(4082), - [sym_operator_identifier] = STATE(5560), + [sym_operator_identifier] = STATE(5592), [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__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), [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), + [aux_sym__terminator_token1] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(1465), + [sym_integer] = ACTIONS(1465), + [sym_float] = ACTIONS(1465), + [sym_char] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_end] = ACTIONS(1267), + [anon_sym_fn] = ACTIONS(928), [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), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [346] = { + [sym__expression] = STATE(4034), + [sym_block] = STATE(4034), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4034), + [sym_nil] = STATE(4034), + [sym__atom] = STATE(4034), + [sym_quoted_atom] = STATE(4034), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4034), + [sym_charlist] = STATE(4034), + [sym_sigil] = STATE(4034), + [sym_list] = STATE(4034), + [sym_tuple] = STATE(4034), + [sym_bitstring] = STATE(4034), + [sym_map] = STATE(4034), + [sym_unary_operator] = STATE(4034), + [sym_binary_operator] = STATE(4034), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4034), + [sym_call] = STATE(4034), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), [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__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4034), + [sym_anonymous_function] = STATE(4034), + [aux_sym__terminator_token1] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1277), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1467), + [sym_integer] = ACTIONS(1467), + [sym_float] = ACTIONS(1467), + [sym_char] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), [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), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [347] = { + [sym__expression] = STATE(4034), + [sym_block] = STATE(4034), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4034), + [sym_nil] = STATE(4034), + [sym__atom] = STATE(4034), + [sym_quoted_atom] = STATE(4034), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4034), + [sym_charlist] = STATE(4034), + [sym_sigil] = STATE(4034), + [sym_list] = STATE(4034), + [sym_tuple] = STATE(4034), + [sym_bitstring] = STATE(4034), + [sym_map] = STATE(4034), + [sym_unary_operator] = STATE(4034), + [sym_binary_operator] = STATE(4034), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4034), + [sym_call] = STATE(4034), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), [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__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4034), + [sym_anonymous_function] = STATE(4034), + [aux_sym__terminator_token1] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1267), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1267), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1467), + [sym_integer] = ACTIONS(1467), + [sym_float] = ACTIONS(1467), + [sym_char] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), [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), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [348] = { + [sym__expression] = STATE(4082), + [sym_block] = STATE(4082), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(4082), + [sym_nil] = STATE(4082), + [sym__atom] = STATE(4082), + [sym_quoted_atom] = STATE(4082), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(4082), + [sym_call] = STATE(4082), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4082), + [sym_anonymous_function] = STATE(4082), + [aux_sym__terminator_token1] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(1465), + [sym_integer] = ACTIONS(1465), + [sym_float] = ACTIONS(1465), + [sym_char] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_end] = ACTIONS(1273), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [349] = { + [sym__expression] = STATE(4082), + [sym_block] = STATE(4082), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(4082), + [sym_nil] = STATE(4082), + [sym__atom] = STATE(4082), + [sym_quoted_atom] = STATE(4082), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(4082), + [sym_call] = STATE(4082), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4082), + [sym_anonymous_function] = STATE(4082), + [aux_sym__terminator_token1] = ACTIONS(1275), + [anon_sym_SEMI] = ACTIONS(1277), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(1465), + [sym_integer] = ACTIONS(1465), + [sym_float] = ACTIONS(1465), + [sym_char] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_end] = ACTIONS(1277), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [350] = { + [sym__expression] = STATE(4034), + [sym_block] = STATE(4034), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4034), + [sym_nil] = STATE(4034), + [sym__atom] = STATE(4034), + [sym_quoted_atom] = STATE(4034), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4034), + [sym_charlist] = STATE(4034), + [sym_sigil] = STATE(4034), + [sym_list] = STATE(4034), + [sym_tuple] = STATE(4034), + [sym_bitstring] = STATE(4034), + [sym_map] = STATE(4034), + [sym_unary_operator] = STATE(4034), + [sym_binary_operator] = STATE(4034), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4034), + [sym_call] = STATE(4034), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), [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__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4034), + [sym_anonymous_function] = STATE(4034), + [aux_sym__terminator_token1] = ACTIONS(1271), + [anon_sym_SEMI] = ACTIONS(1273), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1273), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1467), + [sym_integer] = ACTIONS(1467), + [sym_float] = ACTIONS(1467), + [sym_char] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), [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), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [351] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), [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), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1469), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), [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), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [352] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), [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), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1473), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), [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), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [353] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1475), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), [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), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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(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(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), - [sym_list] = STATE(3446), - [sym_tuple] = STATE(3446), - [sym_bitstring] = STATE(3446), - [sym_map] = STATE(3446), - [sym_unary_operator] = STATE(3446), - [sym_binary_operator] = STATE(3446), - [sym_operator_identifier] = STATE(5620), - [sym_dot] = STATE(3446), - [sym_call] = STATE(3446), - [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(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(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), - }, - [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(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(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), - }, - [745] = { - [sym__expression] = STATE(3443), - [sym_block] = STATE(3443), - [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(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), - [sym_list] = STATE(3443), - [sym_tuple] = STATE(3443), - [sym_bitstring] = STATE(3443), - [sym_map] = STATE(3443), - [sym_unary_operator] = STATE(3443), - [sym_binary_operator] = STATE(3443), - [sym_operator_identifier] = STATE(5620), - [sym_dot] = STATE(3443), - [sym_call] = STATE(3443), - [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(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(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), - }, - [746] = { - [sym__expression] = STATE(4046), - [sym_block] = STATE(4046), - [sym__identifier] = STATE(62), + [354] = { + [sym__expression] = STATE(3247), + [sym_block] = STATE(3247), [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(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(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), - [sym_list] = STATE(3437), - [sym_tuple] = STATE(3437), - [sym_bitstring] = STATE(3437), - [sym_map] = STATE(3437), - [sym_unary_operator] = STATE(3437), - [sym_binary_operator] = STATE(3437), - [sym_operator_identifier] = STATE(5620), - [sym_dot] = STATE(3437), - [sym_call] = STATE(3437), - [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(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(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), - }, - [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(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(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), - }, - [755] = { - [sym__expression] = STATE(3433), - [sym_block] = STATE(3433), - [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(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), - [sym_list] = STATE(3433), - [sym_tuple] = STATE(3433), - [sym_bitstring] = STATE(3433), - [sym_map] = STATE(3433), - [sym_unary_operator] = STATE(3433), - [sym_binary_operator] = STATE(3433), - [sym_operator_identifier] = STATE(5620), - [sym_dot] = STATE(3433), - [sym_call] = STATE(3433), - [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(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_boolean] = STATE(3247), + [sym_nil] = STATE(3247), + [sym__atom] = STATE(3247), + [sym_quoted_atom] = STATE(3247), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [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__capture_expression] = STATE(3246), + [sym_binary_operator] = STATE(3247), + [sym_operator_identifier] = STATE(5616), + [sym_dot] = STATE(3247), + [sym_call] = STATE(3247), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), [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), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3247), + [sym_anonymous_function] = STATE(3247), [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), + [anon_sym_LPAREN] = ACTIONS(1477), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(1479), + [sym_integer] = ACTIONS(1481), + [sym_float] = ACTIONS(1479), + [sym_char] = ACTIONS(1479), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), [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), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), }, - [760] = { - [sym__expression] = STATE(3020), - [sym_block] = STATE(3020), - [sym__identifier] = STATE(41), + [355] = { + [sym__expression] = STATE(2365), + [sym_block] = STATE(2365), [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_boolean] = STATE(2365), + [sym_nil] = STATE(2365), + [sym__atom] = STATE(2365), + [sym_quoted_atom] = STATE(2365), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2365), + [sym_charlist] = STATE(2365), + [sym_sigil] = STATE(2365), + [sym_list] = STATE(2365), + [sym_tuple] = STATE(2365), + [sym_bitstring] = STATE(2365), + [sym_map] = STATE(2365), + [sym_unary_operator] = STATE(2365), + [sym__capture_expression] = STATE(1173), + [sym_binary_operator] = STATE(2365), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(2365), + [sym_call] = STATE(2365), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), [sym__remote_dot] = STATE(45), - [sym__anonymous_call] = STATE(1335), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2365), + [sym_anonymous_function] = STATE(2365), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1483), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(1485), + [sym_integer] = ACTIONS(1487), + [sym_float] = ACTIONS(1485), + [sym_char] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1485), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [356] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1489), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [357] = { + [sym__expression] = STATE(3487), + [sym_block] = STATE(3487), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3487), + [sym_nil] = STATE(3487), + [sym__atom] = STATE(3487), + [sym_quoted_atom] = STATE(3487), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [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__capture_expression] = STATE(1586), + [sym_binary_operator] = STATE(3487), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(3487), + [sym_call] = STATE(3487), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3487), + [sym_anonymous_function] = STATE(3487), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1491), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1493), + [sym_integer] = ACTIONS(1495), + [sym_float] = ACTIONS(1493), + [sym_char] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [358] = { + [sym__expression] = STATE(1948), + [sym_block] = STATE(1948), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1948), + [sym_nil] = STATE(1948), + [sym__atom] = STATE(1948), + [sym_quoted_atom] = STATE(1948), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1948), + [sym_charlist] = STATE(1948), + [sym_sigil] = STATE(1948), + [sym_list] = STATE(1948), + [sym_tuple] = STATE(1948), + [sym_bitstring] = STATE(1948), + [sym_map] = STATE(1948), + [sym_unary_operator] = STATE(1948), + [sym__capture_expression] = STATE(1580), + [sym_binary_operator] = STATE(1948), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1948), + [sym_call] = STATE(1948), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1948), + [sym_anonymous_function] = STATE(1948), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1491), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(1497), + [sym_integer] = ACTIONS(1499), + [sym_float] = ACTIONS(1497), + [sym_char] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [359] = { + [sym__expression] = STATE(2219), + [sym_block] = STATE(2219), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2219), + [sym_nil] = STATE(2219), + [sym__atom] = STATE(2219), + [sym_quoted_atom] = STATE(2219), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2219), + [sym_charlist] = STATE(2219), + [sym_sigil] = STATE(2219), + [sym_list] = STATE(2219), + [sym_tuple] = STATE(2219), + [sym_bitstring] = STATE(2219), + [sym_map] = STATE(2219), + [sym_unary_operator] = STATE(2219), + [sym__capture_expression] = STATE(2137), + [sym_binary_operator] = STATE(2219), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2219), + [sym_call] = STATE(2219), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2219), + [sym_anonymous_function] = STATE(2219), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1501), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1503), + [sym_integer] = ACTIONS(1505), + [sym_float] = ACTIONS(1503), + [sym_char] = ACTIONS(1503), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [360] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1507), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [361] = { + [sym__expression] = STATE(2219), + [sym_block] = STATE(2219), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2219), + [sym_nil] = STATE(2219), + [sym__atom] = STATE(2219), + [sym_quoted_atom] = STATE(2219), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2219), + [sym_charlist] = STATE(2219), + [sym_sigil] = STATE(2219), + [sym_list] = STATE(2219), + [sym_tuple] = STATE(2219), + [sym_bitstring] = STATE(2219), + [sym_map] = STATE(2219), + [sym_unary_operator] = STATE(2219), + [sym__capture_expression] = STATE(2194), + [sym_binary_operator] = STATE(2219), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2219), + [sym_call] = STATE(2219), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2219), + [sym_anonymous_function] = STATE(2219), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1501), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1503), + [sym_integer] = ACTIONS(1509), + [sym_float] = ACTIONS(1503), + [sym_char] = ACTIONS(1503), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1503), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [362] = { + [sym__expression] = STATE(3487), + [sym_block] = STATE(3487), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3487), + [sym_nil] = STATE(3487), + [sym__atom] = STATE(3487), + [sym_quoted_atom] = STATE(3487), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [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__capture_expression] = STATE(1580), + [sym_binary_operator] = STATE(3487), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(3487), + [sym_call] = STATE(3487), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3487), + [sym_anonymous_function] = STATE(3487), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1491), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1493), + [sym_integer] = ACTIONS(1499), + [sym_float] = ACTIONS(1493), + [sym_char] = ACTIONS(1493), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1493), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [363] = { + [sym__expression] = STATE(1705), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym__atom] = STATE(1705), + [sym_quoted_atom] = STATE(1705), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym__capture_expression] = STATE(1371), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1511), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1513), + [sym_integer] = ACTIONS(1515), + [sym_float] = ACTIONS(1513), + [sym_char] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [364] = { + [sym__expression] = STATE(3828), + [sym_block] = STATE(3828), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3828), + [sym_nil] = STATE(3828), + [sym__atom] = STATE(3828), + [sym_quoted_atom] = STATE(3828), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(3828), + [sym_charlist] = STATE(3828), + [sym_sigil] = STATE(3828), + [sym_list] = STATE(3828), + [sym_tuple] = STATE(3828), + [sym_bitstring] = STATE(3828), + [sym_map] = STATE(3828), + [sym_unary_operator] = STATE(3828), + [sym__capture_expression] = STATE(3833), + [sym_binary_operator] = STATE(3828), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3828), + [sym_call] = STATE(3828), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3828), + [sym_anonymous_function] = STATE(3828), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1517), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1519), + [sym_integer] = ACTIONS(1521), + [sym_float] = ACTIONS(1519), + [sym_char] = ACTIONS(1519), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [365] = { + [sym__expression] = STATE(4119), + [sym_block] = STATE(4119), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(4119), + [sym_nil] = STATE(4119), + [sym__atom] = STATE(4119), + [sym_quoted_atom] = STATE(4119), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(4119), + [sym_charlist] = STATE(4119), + [sym_sigil] = STATE(4119), + [sym_list] = STATE(4119), + [sym_tuple] = STATE(4119), + [sym_bitstring] = STATE(4119), + [sym_map] = STATE(4119), + [sym_unary_operator] = STATE(4119), + [sym__capture_expression] = STATE(3147), + [sym_binary_operator] = STATE(4119), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4119), + [sym_call] = STATE(4119), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4119), + [sym_anonymous_function] = STATE(4119), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1523), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1525), + [sym_integer] = ACTIONS(1527), + [sym_float] = ACTIONS(1525), + [sym_char] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1525), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [366] = { + [sym__expression] = STATE(4119), + [sym_block] = STATE(4119), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(4119), + [sym_nil] = STATE(4119), + [sym__atom] = STATE(4119), + [sym_quoted_atom] = STATE(4119), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(4119), + [sym_charlist] = STATE(4119), + [sym_sigil] = STATE(4119), + [sym_list] = STATE(4119), + [sym_tuple] = STATE(4119), + [sym_bitstring] = STATE(4119), + [sym_map] = STATE(4119), + [sym_unary_operator] = STATE(4119), + [sym__capture_expression] = STATE(3163), + [sym_binary_operator] = STATE(4119), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4119), + [sym_call] = STATE(4119), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4119), + [sym_anonymous_function] = STATE(4119), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1523), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1525), + [sym_integer] = ACTIONS(1529), + [sym_float] = ACTIONS(1525), + [sym_char] = ACTIONS(1525), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1525), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [367] = { + [sym__expression] = STATE(2661), + [sym_block] = STATE(2661), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2661), + [sym_nil] = STATE(2661), + [sym__atom] = STATE(2661), + [sym_quoted_atom] = STATE(2661), + [sym__quoted_i_double] = STATE(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [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__capture_expression] = STATE(2662), + [sym_binary_operator] = STATE(2661), + [sym_operator_identifier] = STATE(5624), + [sym_dot] = STATE(2661), + [sym_call] = STATE(2661), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), [sym__anonymous_dot] = STATE(5522), - [sym__double_call] = STATE(1770), - [sym_access_call] = STATE(2719), - [sym_anonymous_function] = STATE(2719), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2661), + [sym_anonymous_function] = STATE(2661), [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), + [anon_sym_LPAREN] = ACTIONS(1531), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1535), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), [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), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), }, - [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), + [368] = { + [sym__expression] = STATE(3247), + [sym_block] = STATE(3247), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3247), + [sym_nil] = STATE(3247), + [sym__atom] = STATE(3247), + [sym_quoted_atom] = STATE(3247), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [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__capture_expression] = STATE(3229), + [sym_binary_operator] = STATE(3247), + [sym_operator_identifier] = STATE(5616), + [sym_dot] = STATE(3247), + [sym_call] = STATE(3247), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3247), + [sym_anonymous_function] = STATE(3247), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1477), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(1479), + [sym_integer] = ACTIONS(1537), + [sym_float] = ACTIONS(1479), + [sym_char] = ACTIONS(1479), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(1479), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [369] = { + [sym__expression] = STATE(3609), + [sym_block] = STATE(3609), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3609), + [sym_nil] = STATE(3609), + [sym__atom] = STATE(3609), + [sym_quoted_atom] = STATE(3609), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(3609), + [sym_charlist] = STATE(3609), + [sym_sigil] = STATE(3609), + [sym_list] = STATE(3609), + [sym_tuple] = STATE(3609), + [sym_bitstring] = STATE(3609), + [sym_map] = STATE(3609), + [sym_unary_operator] = STATE(3609), + [sym__capture_expression] = STATE(2194), + [sym_binary_operator] = STATE(3609), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(3609), + [sym_call] = STATE(3609), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3609), + [sym_anonymous_function] = STATE(3609), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1501), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1539), + [sym_integer] = ACTIONS(1509), + [sym_float] = ACTIONS(1539), + [sym_char] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [370] = { + [sym__expression] = STATE(3609), + [sym_block] = STATE(3609), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3609), + [sym_nil] = STATE(3609), + [sym__atom] = STATE(3609), + [sym_quoted_atom] = STATE(3609), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(3609), + [sym_charlist] = STATE(3609), + [sym_sigil] = STATE(3609), + [sym_list] = STATE(3609), + [sym_tuple] = STATE(3609), + [sym_bitstring] = STATE(3609), + [sym_map] = STATE(3609), + [sym_unary_operator] = STATE(3609), + [sym__capture_expression] = STATE(2137), + [sym_binary_operator] = STATE(3609), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(3609), + [sym_call] = STATE(3609), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3609), + [sym_anonymous_function] = STATE(3609), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1501), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1539), + [sym_integer] = ACTIONS(1505), + [sym_float] = ACTIONS(1539), + [sym_char] = ACTIONS(1539), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1539), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [371] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), [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), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1541), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), [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), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [372] = { + [sym__expression] = STATE(1491), + [sym_block] = STATE(1491), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1491), + [sym_nil] = STATE(1491), + [sym__atom] = STATE(1491), + [sym_quoted_atom] = STATE(1491), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1491), + [sym_charlist] = STATE(1491), + [sym_sigil] = STATE(1491), + [sym_list] = STATE(1491), + [sym_tuple] = STATE(1491), + [sym_bitstring] = STATE(1491), + [sym_map] = STATE(1491), + [sym_unary_operator] = STATE(1491), + [sym__capture_expression] = STATE(1203), + [sym_binary_operator] = STATE(1491), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1491), + [sym_call] = STATE(1491), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1491), + [sym_anonymous_function] = STATE(1491), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1483), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1543), + [sym_integer] = ACTIONS(1545), + [sym_float] = ACTIONS(1543), + [sym_char] = ACTIONS(1543), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [373] = { + [sym__expression] = STATE(4147), + [sym_block] = STATE(4147), + [sym_identifier] = STATE(106), + [sym_boolean] = STATE(4147), + [sym_nil] = STATE(4147), + [sym__atom] = STATE(4143), + [sym_quoted_atom] = STATE(4143), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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_struct] = STATE(5563), + [sym_unary_operator] = STATE(4143), + [sym_binary_operator] = STATE(4147), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4143), + [sym_call] = STATE(4147), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(4139), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4147), + [sym_anonymous_function] = STATE(4147), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1547), + [sym_integer] = ACTIONS(1549), + [sym_float] = ACTIONS(1549), + [sym_char] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1551), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [374] = { + [sym__expression] = STATE(2661), + [sym_block] = STATE(2661), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2661), + [sym_nil] = STATE(2661), + [sym__atom] = STATE(2661), + [sym_quoted_atom] = STATE(2661), + [sym__quoted_i_double] = STATE(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [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__capture_expression] = STATE(2683), + [sym_binary_operator] = STATE(2661), + [sym_operator_identifier] = STATE(5624), + [sym_dot] = STATE(2661), + [sym_call] = STATE(2661), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2661), + [sym_anonymous_function] = STATE(2661), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1531), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1533), + [sym_integer] = ACTIONS(1553), + [sym_float] = ACTIONS(1533), + [sym_char] = ACTIONS(1533), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1533), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), + }, + [375] = { + [sym__expression] = STATE(4147), + [sym_block] = STATE(4147), + [sym_identifier] = STATE(106), + [sym_boolean] = STATE(4147), + [sym_nil] = STATE(4147), + [sym__atom] = STATE(4143), + [sym_quoted_atom] = STATE(4143), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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_struct] = STATE(5594), + [sym_unary_operator] = STATE(4143), + [sym_binary_operator] = STATE(4147), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4143), + [sym_call] = STATE(4147), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(4139), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4147), + [sym_anonymous_function] = STATE(4147), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1547), + [sym_integer] = ACTIONS(1549), + [sym_float] = ACTIONS(1549), + [sym_char] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1555), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [376] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), [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), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), [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), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1557), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), [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), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [776] = { - [sym__expression] = STATE(4142), - [sym_block] = STATE(4142), - [sym__identifier] = STATE(48), + [377] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1559), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [378] = { + [sym__expression] = STATE(4106), + [sym_block] = STATE(4106), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4106), + [sym_nil] = STATE(4106), + [sym__atom] = STATE(4106), + [sym_quoted_atom] = STATE(4106), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4106), + [sym_charlist] = STATE(4106), + [sym_sigil] = STATE(4106), + [sym_list] = STATE(4106), + [sym_tuple] = STATE(4106), + [sym_bitstring] = STATE(4106), + [sym_map] = STATE(4106), + [sym_unary_operator] = STATE(4106), + [sym__capture_expression] = STATE(4107), + [sym_binary_operator] = STATE(4106), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(4106), + [sym_call] = STATE(4106), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4106), + [sym_anonymous_function] = STATE(4106), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1561), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1563), + [sym_integer] = ACTIONS(1565), + [sym_float] = ACTIONS(1563), + [sym_char] = ACTIONS(1563), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [379] = { + [sym__expression] = STATE(4147), + [sym_block] = STATE(4147), + [sym_identifier] = STATE(106), + [sym_boolean] = STATE(4147), + [sym_nil] = STATE(4147), + [sym__atom] = STATE(4143), + [sym_quoted_atom] = STATE(4143), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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_struct] = STATE(5618), + [sym_unary_operator] = STATE(4143), + [sym_binary_operator] = STATE(4147), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4143), + [sym_call] = STATE(4147), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(4139), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4147), + [sym_anonymous_function] = STATE(4147), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1547), + [sym_integer] = ACTIONS(1549), + [sym_float] = ACTIONS(1549), + [sym_char] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1567), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [380] = { + [sym__expression] = STATE(1491), + [sym_block] = STATE(1491), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1491), + [sym_nil] = STATE(1491), + [sym__atom] = STATE(1491), + [sym_quoted_atom] = STATE(1491), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1491), + [sym_charlist] = STATE(1491), + [sym_sigil] = STATE(1491), + [sym_list] = STATE(1491), + [sym_tuple] = STATE(1491), + [sym_bitstring] = STATE(1491), + [sym_map] = STATE(1491), + [sym_unary_operator] = STATE(1491), + [sym__capture_expression] = STATE(1173), + [sym_binary_operator] = STATE(1491), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1491), + [sym_call] = STATE(1491), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1491), + [sym_anonymous_function] = STATE(1491), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1483), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1543), + [sym_integer] = ACTIONS(1487), + [sym_float] = ACTIONS(1543), + [sym_char] = ACTIONS(1543), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [381] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1569), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [382] = { + [sym__expression] = STATE(4092), + [sym_block] = STATE(4092), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4092), + [sym_nil] = STATE(4092), + [sym__atom] = STATE(4092), + [sym_quoted_atom] = STATE(4092), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(4092), + [sym_charlist] = STATE(4092), + [sym_sigil] = STATE(4092), + [sym_list] = STATE(4092), + [sym_tuple] = STATE(4092), + [sym_bitstring] = STATE(4092), + [sym_map] = STATE(4092), + [sym_unary_operator] = STATE(4092), + [sym_binary_operator] = STATE(4092), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(4092), + [sym_call] = STATE(4092), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(4092), + [sym_anonymous_function] = STATE(4092), + [ts_builtin_sym_end] = ACTIONS(1571), + [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_alias] = ACTIONS(1573), + [sym_integer] = ACTIONS(1573), + [sym_float] = ACTIONS(1573), + [sym_char] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [383] = { + [sym__expression] = STATE(4147), + [sym_block] = STATE(4147), + [sym_identifier] = STATE(106), + [sym_boolean] = STATE(4147), + [sym_nil] = STATE(4147), + [sym__atom] = STATE(4143), + [sym_quoted_atom] = STATE(4143), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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_struct] = STATE(5625), + [sym_unary_operator] = STATE(4143), + [sym_binary_operator] = STATE(4147), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4143), + [sym_call] = STATE(4147), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(4139), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4147), + [sym_anonymous_function] = STATE(4147), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1547), + [sym_integer] = ACTIONS(1549), + [sym_float] = ACTIONS(1549), + [sym_char] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [384] = { + [sym__expression] = STATE(4147), + [sym_block] = STATE(4147), + [sym_identifier] = STATE(106), + [sym_boolean] = STATE(4147), + [sym_nil] = STATE(4147), + [sym__atom] = STATE(4143), + [sym_quoted_atom] = STATE(4143), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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_struct] = STATE(5578), + [sym_unary_operator] = STATE(4143), + [sym_binary_operator] = STATE(4147), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4143), + [sym_call] = STATE(4147), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(4139), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4147), + [sym_anonymous_function] = STATE(4147), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1547), + [sym_integer] = ACTIONS(1549), + [sym_float] = ACTIONS(1549), + [sym_char] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1577), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [385] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1579), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [386] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1581), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [387] = { + [sym__expression] = STATE(4092), + [sym_block] = STATE(4092), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4092), + [sym_nil] = STATE(4092), + [sym__atom] = STATE(4092), + [sym_quoted_atom] = STATE(4092), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(4092), + [sym_charlist] = STATE(4092), + [sym_sigil] = STATE(4092), + [sym_list] = STATE(4092), + [sym_tuple] = STATE(4092), + [sym_bitstring] = STATE(4092), + [sym_map] = STATE(4092), + [sym_unary_operator] = STATE(4092), + [sym_binary_operator] = STATE(4092), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(4092), + [sym_call] = STATE(4092), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(4092), + [sym_anonymous_function] = STATE(4092), + [ts_builtin_sym_end] = ACTIONS(1583), + [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_alias] = ACTIONS(1573), + [sym_integer] = ACTIONS(1573), + [sym_float] = ACTIONS(1573), + [sym_char] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [388] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1585), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [389] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1587), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [390] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1589), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [391] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1591), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [392] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1593), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [393] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1595), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [394] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1597), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [395] = { + [sym__expression] = STATE(3806), + [sym_block] = STATE(3806), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3806), + [sym_nil] = STATE(3806), + [sym__atom] = STATE(3806), + [sym_quoted_atom] = STATE(3806), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3806), + [sym_charlist] = STATE(3806), + [sym_sigil] = STATE(3806), + [sym_list] = STATE(3806), + [sym_tuple] = STATE(3806), + [sym_bitstring] = STATE(3806), + [sym_map] = STATE(3806), + [sym_unary_operator] = STATE(3806), + [sym__capture_expression] = STATE(3804), + [sym_binary_operator] = STATE(3806), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3806), + [sym_call] = STATE(3806), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3806), + [sym_anonymous_function] = STATE(3806), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1599), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1601), + [sym_integer] = ACTIONS(1603), + [sym_float] = ACTIONS(1601), + [sym_char] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(1601), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [396] = { + [sym__expression] = STATE(1948), + [sym_block] = STATE(1948), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1948), + [sym_nil] = STATE(1948), + [sym__atom] = STATE(1948), + [sym_quoted_atom] = STATE(1948), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1948), + [sym_charlist] = STATE(1948), + [sym_sigil] = STATE(1948), + [sym_list] = STATE(1948), + [sym_tuple] = STATE(1948), + [sym_bitstring] = STATE(1948), + [sym_map] = STATE(1948), + [sym_unary_operator] = STATE(1948), + [sym__capture_expression] = STATE(1586), + [sym_binary_operator] = STATE(1948), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1948), + [sym_call] = STATE(1948), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1948), + [sym_anonymous_function] = STATE(1948), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1491), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(1497), + [sym_integer] = ACTIONS(1495), + [sym_float] = ACTIONS(1497), + [sym_char] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1497), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [397] = { + [sym__expression] = STATE(2851), + [sym_block] = STATE(2851), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2851), + [sym_nil] = STATE(2851), + [sym__atom] = STATE(2851), + [sym_quoted_atom] = STATE(2851), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(2851), + [sym_charlist] = STATE(2851), + [sym_sigil] = STATE(2851), + [sym_list] = STATE(2851), + [sym_tuple] = STATE(2851), + [sym_bitstring] = STATE(2851), + [sym_map] = STATE(2851), + [sym_unary_operator] = STATE(2851), + [sym__capture_expression] = STATE(2852), + [sym_binary_operator] = STATE(2851), + [sym_operator_identifier] = STATE(5584), + [sym_dot] = STATE(2851), + [sym_call] = STATE(2851), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(2851), + [sym_anonymous_function] = STATE(2851), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1605), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1607), + [sym_integer] = ACTIONS(1609), + [sym_float] = ACTIONS(1607), + [sym_char] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), + }, + [398] = { + [sym__expression] = STATE(4106), + [sym_block] = STATE(4106), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4106), + [sym_nil] = STATE(4106), + [sym__atom] = STATE(4106), + [sym_quoted_atom] = STATE(4106), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4106), + [sym_charlist] = STATE(4106), + [sym_sigil] = STATE(4106), + [sym_list] = STATE(4106), + [sym_tuple] = STATE(4106), + [sym_bitstring] = STATE(4106), + [sym_map] = STATE(4106), + [sym_unary_operator] = STATE(4106), + [sym__capture_expression] = STATE(4060), + [sym_binary_operator] = STATE(4106), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(4106), + [sym_call] = STATE(4106), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4106), + [sym_anonymous_function] = STATE(4106), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1561), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1563), + [sym_integer] = ACTIONS(1611), + [sym_float] = ACTIONS(1563), + [sym_char] = ACTIONS(1563), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1563), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [399] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1613), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [400] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1615), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [401] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1617), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [402] = { + [sym__expression] = STATE(4147), + [sym_block] = STATE(4147), + [sym_identifier] = STATE(106), + [sym_boolean] = STATE(4147), + [sym_nil] = STATE(4147), + [sym__atom] = STATE(4143), + [sym_quoted_atom] = STATE(4143), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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_struct] = STATE(5632), + [sym_unary_operator] = STATE(4143), + [sym_binary_operator] = STATE(4147), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4143), + [sym_call] = STATE(4147), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(4139), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4147), + [sym_anonymous_function] = STATE(4147), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1547), + [sym_integer] = ACTIONS(1549), + [sym_float] = ACTIONS(1549), + [sym_char] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1619), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [403] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1621), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [404] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1623), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [405] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1625), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [406] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1627), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [407] = { + [sym__expression] = STATE(4092), + [sym_block] = STATE(4092), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4092), + [sym_nil] = STATE(4092), + [sym__atom] = STATE(4092), + [sym_quoted_atom] = STATE(4092), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(4092), + [sym_charlist] = STATE(4092), + [sym_sigil] = STATE(4092), + [sym_list] = STATE(4092), + [sym_tuple] = STATE(4092), + [sym_bitstring] = STATE(4092), + [sym_map] = STATE(4092), + [sym_unary_operator] = STATE(4092), + [sym_binary_operator] = STATE(4092), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(4092), + [sym_call] = STATE(4092), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(4092), + [sym_anonymous_function] = STATE(4092), + [ts_builtin_sym_end] = ACTIONS(1629), + [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_alias] = ACTIONS(1573), + [sym_integer] = ACTIONS(1573), + [sym_float] = ACTIONS(1573), + [sym_char] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [408] = { + [sym__expression] = STATE(3806), + [sym_block] = STATE(3806), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3806), + [sym_nil] = STATE(3806), + [sym__atom] = STATE(3806), + [sym_quoted_atom] = STATE(3806), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3806), + [sym_charlist] = STATE(3806), + [sym_sigil] = STATE(3806), + [sym_list] = STATE(3806), + [sym_tuple] = STATE(3806), + [sym_bitstring] = STATE(3806), + [sym_map] = STATE(3806), + [sym_unary_operator] = STATE(3806), + [sym__capture_expression] = STATE(3792), + [sym_binary_operator] = STATE(3806), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3806), + [sym_call] = STATE(3806), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3806), + [sym_anonymous_function] = STATE(3806), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1599), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1601), + [sym_integer] = ACTIONS(1631), + [sym_float] = ACTIONS(1601), + [sym_char] = ACTIONS(1601), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(1601), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [409] = { + [sym__expression] = STATE(2086), + [sym_block] = STATE(2086), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2086), + [sym_nil] = STATE(2086), + [sym__atom] = STATE(2086), + [sym_quoted_atom] = STATE(2086), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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__capture_expression] = STATE(1815), + [sym_binary_operator] = STATE(2086), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2086), + [sym_call] = STATE(2086), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2086), + [sym_anonymous_function] = STATE(2086), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1633), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(1635), + [sym_integer] = ACTIONS(1637), + [sym_float] = ACTIONS(1635), + [sym_char] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [410] = { + [sym__expression] = STATE(2691), + [sym_block] = STATE(2691), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(2691), + [sym_nil] = STATE(2691), + [sym__atom] = STATE(2691), + [sym_quoted_atom] = STATE(2691), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(2691), + [sym_charlist] = STATE(2691), + [sym_sigil] = STATE(2691), + [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(5643), + [sym_dot] = STATE(2691), + [sym_call] = STATE(2691), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(2691), + [sym_anonymous_function] = STATE(2691), + [ts_builtin_sym_end] = ACTIONS(1639), + [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_alias] = ACTIONS(1641), + [sym_integer] = ACTIONS(1641), + [sym_float] = ACTIONS(1641), + [sym_char] = ACTIONS(1641), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1641), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [411] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1643), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [412] = { + [sym__expression] = STATE(4147), + [sym_block] = STATE(4147), + [sym_identifier] = STATE(106), + [sym_boolean] = STATE(4147), + [sym_nil] = STATE(4147), + [sym__atom] = STATE(4143), + [sym_quoted_atom] = STATE(4143), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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_struct] = STATE(5570), + [sym_unary_operator] = STATE(4143), + [sym_binary_operator] = STATE(4147), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4143), + [sym_call] = STATE(4147), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(4139), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4147), + [sym_anonymous_function] = STATE(4147), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1547), + [sym_integer] = ACTIONS(1549), + [sym_float] = ACTIONS(1549), + [sym_char] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1645), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [413] = { + [sym__expression] = STATE(1705), + [sym_block] = STATE(1705), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1705), + [sym_nil] = STATE(1705), + [sym__atom] = STATE(1705), + [sym_quoted_atom] = STATE(1705), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1705), + [sym_charlist] = STATE(1705), + [sym_sigil] = STATE(1705), + [sym_list] = STATE(1705), + [sym_tuple] = STATE(1705), + [sym_bitstring] = STATE(1705), + [sym_map] = STATE(1705), + [sym_unary_operator] = STATE(1705), + [sym__capture_expression] = STATE(1377), + [sym_binary_operator] = STATE(1705), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1705), + [sym_call] = STATE(1705), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1705), + [sym_anonymous_function] = STATE(1705), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1511), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1513), + [sym_integer] = ACTIONS(1647), + [sym_float] = ACTIONS(1513), + [sym_char] = ACTIONS(1513), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1513), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [414] = { + [sym__expression] = STATE(2086), + [sym_block] = STATE(2086), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2086), + [sym_nil] = STATE(2086), + [sym__atom] = STATE(2086), + [sym_quoted_atom] = STATE(2086), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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__capture_expression] = STATE(1782), + [sym_binary_operator] = STATE(2086), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2086), + [sym_call] = STATE(2086), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2086), + [sym_anonymous_function] = STATE(2086), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1633), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(1635), + [sym_integer] = ACTIONS(1649), + [sym_float] = ACTIONS(1635), + [sym_char] = ACTIONS(1635), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1635), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [415] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1651), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [416] = { + [sym__expression] = STATE(3973), + [sym_block] = STATE(3973), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3973), + [sym_nil] = STATE(3973), + [sym__atom] = STATE(3973), + [sym_quoted_atom] = STATE(3973), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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__capture_expression] = STATE(1782), + [sym_binary_operator] = STATE(3973), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3973), + [sym_call] = STATE(3973), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3973), + [sym_anonymous_function] = STATE(3973), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1633), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(1653), + [sym_integer] = ACTIONS(1649), + [sym_float] = ACTIONS(1653), + [sym_char] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [417] = { + [sym__expression] = STATE(3973), + [sym_block] = STATE(3973), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3973), + [sym_nil] = STATE(3973), + [sym__atom] = STATE(3973), + [sym_quoted_atom] = STATE(3973), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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__capture_expression] = STATE(1815), + [sym_binary_operator] = STATE(3973), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3973), + [sym_call] = STATE(3973), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3973), + [sym_anonymous_function] = STATE(3973), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1633), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(1653), + [sym_integer] = ACTIONS(1637), + [sym_float] = ACTIONS(1653), + [sym_char] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1653), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [418] = { + [sym__expression] = STATE(2865), + [sym_block] = STATE(2865), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2865), + [sym_nil] = STATE(2865), + [sym__atom] = STATE(2865), + [sym_quoted_atom] = STATE(2865), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2865), + [sym_charlist] = STATE(2865), + [sym_sigil] = STATE(2865), + [sym_list] = STATE(2865), + [sym_tuple] = STATE(2865), + [sym_bitstring] = STATE(2865), + [sym_map] = STATE(2865), + [sym_unary_operator] = STATE(2865), + [sym__capture_expression] = STATE(1377), + [sym_binary_operator] = STATE(2865), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2865), + [sym_call] = STATE(2865), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2865), + [sym_anonymous_function] = STATE(2865), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1511), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(1655), + [sym_integer] = ACTIONS(1647), + [sym_float] = ACTIONS(1655), + [sym_char] = ACTIONS(1655), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [419] = { + [sym__expression] = STATE(4147), + [sym_block] = STATE(4147), + [sym_identifier] = STATE(106), + [sym_boolean] = STATE(4147), + [sym_nil] = STATE(4147), + [sym__atom] = STATE(4143), + [sym_quoted_atom] = STATE(4143), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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_struct] = STATE(5610), + [sym_unary_operator] = STATE(4143), + [sym_binary_operator] = STATE(4147), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4143), + [sym_call] = STATE(4147), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(4139), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4147), + [sym_anonymous_function] = STATE(4147), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1547), + [sym_integer] = ACTIONS(1549), + [sym_float] = ACTIONS(1549), + [sym_char] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [420] = { + [sym__expression] = STATE(2865), + [sym_block] = STATE(2865), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2865), + [sym_nil] = STATE(2865), + [sym__atom] = STATE(2865), + [sym_quoted_atom] = STATE(2865), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2865), + [sym_charlist] = STATE(2865), + [sym_sigil] = STATE(2865), + [sym_list] = STATE(2865), + [sym_tuple] = STATE(2865), + [sym_bitstring] = STATE(2865), + [sym_map] = STATE(2865), + [sym_unary_operator] = STATE(2865), + [sym__capture_expression] = STATE(1371), + [sym_binary_operator] = STATE(2865), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2865), + [sym_call] = STATE(2865), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2865), + [sym_anonymous_function] = STATE(2865), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1511), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(1655), + [sym_integer] = ACTIONS(1515), + [sym_float] = ACTIONS(1655), + [sym_char] = ACTIONS(1655), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1655), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [421] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1659), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [422] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1661), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [423] = { + [sym__expression] = STATE(4147), + [sym_block] = STATE(4147), + [sym_identifier] = STATE(106), + [sym_boolean] = STATE(4147), + [sym_nil] = STATE(4147), + [sym__atom] = STATE(4143), + [sym_quoted_atom] = STATE(4143), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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_struct] = STATE(5586), + [sym_unary_operator] = STATE(4143), + [sym_binary_operator] = STATE(4147), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4143), + [sym_call] = STATE(4147), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(4139), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4147), + [sym_anonymous_function] = STATE(4147), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1547), + [sym_integer] = ACTIONS(1549), + [sym_float] = ACTIONS(1549), + [sym_char] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1663), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [424] = { + [sym__expression] = STATE(2365), + [sym_block] = STATE(2365), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2365), + [sym_nil] = STATE(2365), + [sym__atom] = STATE(2365), + [sym_quoted_atom] = STATE(2365), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2365), + [sym_charlist] = STATE(2365), + [sym_sigil] = STATE(2365), + [sym_list] = STATE(2365), + [sym_tuple] = STATE(2365), + [sym_bitstring] = STATE(2365), + [sym_map] = STATE(2365), + [sym_unary_operator] = STATE(2365), + [sym__capture_expression] = STATE(1203), + [sym_binary_operator] = STATE(2365), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(2365), + [sym_call] = STATE(2365), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2365), + [sym_anonymous_function] = STATE(2365), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1483), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(1485), + [sym_integer] = ACTIONS(1545), + [sym_float] = ACTIONS(1485), + [sym_char] = ACTIONS(1485), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1485), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [425] = { + [sym__expression] = STATE(4147), + [sym_block] = STATE(4147), + [sym_identifier] = STATE(106), + [sym_boolean] = STATE(4147), + [sym_nil] = STATE(4147), + [sym__atom] = STATE(4143), + [sym_quoted_atom] = STATE(4143), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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_struct] = STATE(5575), + [sym_unary_operator] = STATE(4143), + [sym_binary_operator] = STATE(4147), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4143), + [sym_call] = STATE(4147), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(4139), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4147), + [sym_anonymous_function] = STATE(4147), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1547), + [sym_integer] = ACTIONS(1549), + [sym_float] = ACTIONS(1549), + [sym_char] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1665), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [426] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1667), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [427] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1669), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [428] = { + [sym__expression] = STATE(2866), + [sym_block] = STATE(2866), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(2866), + [sym_nil] = STATE(2866), + [sym__atom] = STATE(2866), + [sym_quoted_atom] = STATE(2866), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2866), + [sym_charlist] = STATE(2866), + [sym_sigil] = STATE(2866), + [sym_list] = STATE(2866), + [sym_tuple] = STATE(2866), + [sym_bitstring] = STATE(2866), + [sym_map] = STATE(2866), + [sym_unary_operator] = STATE(2866), + [sym__capture_expression] = STATE(1371), + [sym_binary_operator] = STATE(2866), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2866), + [sym_call] = STATE(2866), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2866), + [sym_anonymous_function] = STATE(2866), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1511), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(1671), + [sym_integer] = ACTIONS(1515), + [sym_float] = ACTIONS(1671), + [sym_char] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [429] = { + [sym__expression] = STATE(2851), + [sym_block] = STATE(2851), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2851), + [sym_nil] = STATE(2851), + [sym__atom] = STATE(2851), + [sym_quoted_atom] = STATE(2851), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(2851), + [sym_charlist] = STATE(2851), + [sym_sigil] = STATE(2851), + [sym_list] = STATE(2851), + [sym_tuple] = STATE(2851), + [sym_bitstring] = STATE(2851), + [sym_map] = STATE(2851), + [sym_unary_operator] = STATE(2851), + [sym__capture_expression] = STATE(2908), + [sym_binary_operator] = STATE(2851), + [sym_operator_identifier] = STATE(5584), + [sym_dot] = STATE(2851), + [sym_call] = STATE(2851), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(2851), + [sym_anonymous_function] = STATE(2851), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1605), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1607), + [sym_integer] = ACTIONS(1673), + [sym_float] = ACTIONS(1607), + [sym_char] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), + }, + [430] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1675), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [431] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1677), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [432] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1679), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [433] = { + [sym__expression] = STATE(4147), + [sym_block] = STATE(4147), + [sym_identifier] = STATE(106), + [sym_boolean] = STATE(4147), + [sym_nil] = STATE(4147), + [sym__atom] = STATE(4143), + [sym_quoted_atom] = STATE(4143), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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_struct] = STATE(5602), + [sym_unary_operator] = STATE(4143), + [sym_binary_operator] = STATE(4147), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4143), + [sym_call] = STATE(4147), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(4139), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4147), + [sym_anonymous_function] = STATE(4147), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1547), + [sym_integer] = ACTIONS(1549), + [sym_float] = ACTIONS(1549), + [sym_char] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1681), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [434] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1683), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [435] = { + [sym__expression] = STATE(4147), + [sym_block] = STATE(4147), + [sym_identifier] = STATE(106), + [sym_boolean] = STATE(4147), + [sym_nil] = STATE(4147), + [sym__atom] = STATE(4143), + [sym_quoted_atom] = STATE(4143), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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_struct] = STATE(5550), + [sym_unary_operator] = STATE(4143), + [sym_binary_operator] = STATE(4147), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4143), + [sym_call] = STATE(4147), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(4139), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4147), + [sym_anonymous_function] = STATE(4147), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1547), + [sym_integer] = ACTIONS(1549), + [sym_float] = ACTIONS(1549), + [sym_char] = ACTIONS(1549), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1685), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [436] = { + [sym__expression] = STATE(3713), + [sym_block] = STATE(3713), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3713), + [sym_nil] = STATE(3713), + [sym__atom] = STATE(3713), + [sym_quoted_atom] = STATE(3713), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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__capture_expression] = STATE(1815), + [sym_binary_operator] = STATE(3713), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3713), + [sym_call] = STATE(3713), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3713), + [sym_anonymous_function] = STATE(3713), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1633), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1687), + [sym_integer] = ACTIONS(1637), + [sym_float] = ACTIONS(1687), + [sym_char] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [437] = { + [sym__expression] = STATE(3713), + [sym_block] = STATE(3713), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3713), + [sym_nil] = STATE(3713), + [sym__atom] = STATE(3713), + [sym_quoted_atom] = STATE(3713), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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__capture_expression] = STATE(1782), + [sym_binary_operator] = STATE(3713), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3713), + [sym_call] = STATE(3713), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3713), + [sym_anonymous_function] = STATE(3713), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1633), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1687), + [sym_integer] = ACTIONS(1649), + [sym_float] = ACTIONS(1687), + [sym_char] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [438] = { + [sym__expression] = STATE(3189), + [sym_block] = STATE(3189), [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), + [sym_boolean] = STATE(3189), + [sym_nil] = STATE(3189), + [sym__atom] = STATE(3189), + [sym_quoted_atom] = STATE(3189), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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__capture_expression] = STATE(3163), + [sym_binary_operator] = STATE(3189), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3189), + [sym_call] = STATE(3189), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3189), + [sym_anonymous_function] = STATE(3189), [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), + [anon_sym_LPAREN] = ACTIONS(1523), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1689), + [sym_integer] = ACTIONS(1529), + [sym_float] = ACTIONS(1689), + [sym_char] = ACTIONS(1689), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1689), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), [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), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, - [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), + [439] = { + [sym__expression] = STATE(3828), + [sym_block] = STATE(3828), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3828), + [sym_nil] = STATE(3828), + [sym__atom] = STATE(3828), + [sym_quoted_atom] = STATE(3828), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(3828), + [sym_charlist] = STATE(3828), + [sym_sigil] = STATE(3828), + [sym_list] = STATE(3828), + [sym_tuple] = STATE(3828), + [sym_bitstring] = STATE(3828), + [sym_map] = STATE(3828), + [sym_unary_operator] = STATE(3828), + [sym__capture_expression] = STATE(3845), + [sym_binary_operator] = STATE(3828), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3828), + [sym_call] = STATE(3828), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3828), + [sym_anonymous_function] = STATE(3828), [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), + [anon_sym_LPAREN] = ACTIONS(1517), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1519), + [sym_integer] = ACTIONS(1691), + [sym_float] = ACTIONS(1519), + [sym_char] = ACTIONS(1519), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1519), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), [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), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), }, - [778] = { - [sym__expression] = STATE(2946), - [sym_block] = STATE(2946), - [sym__identifier] = STATE(56), + [440] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_RPAREN] = ACTIONS(1693), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [441] = { + [sym__expression] = STATE(2866), + [sym_block] = STATE(2866), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(2866), + [sym_nil] = STATE(2866), + [sym__atom] = STATE(2866), + [sym_quoted_atom] = STATE(2866), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2866), + [sym_charlist] = STATE(2866), + [sym_sigil] = STATE(2866), + [sym_list] = STATE(2866), + [sym_tuple] = STATE(2866), + [sym_bitstring] = STATE(2866), + [sym_map] = STATE(2866), + [sym_unary_operator] = STATE(2866), + [sym__capture_expression] = STATE(1377), + [sym_binary_operator] = STATE(2866), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2866), + [sym_call] = STATE(2866), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2866), + [sym_anonymous_function] = STATE(2866), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1511), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(1671), + [sym_integer] = ACTIONS(1647), + [sym_float] = ACTIONS(1671), + [sym_char] = ACTIONS(1671), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1671), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [442] = { + [sym__expression] = STATE(3189), + [sym_block] = STATE(3189), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3189), + [sym_nil] = STATE(3189), + [sym__atom] = STATE(3189), + [sym_quoted_atom] = STATE(3189), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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__capture_expression] = STATE(3147), + [sym_binary_operator] = STATE(3189), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3189), + [sym_call] = STATE(3189), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3189), + [sym_anonymous_function] = STATE(3189), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1523), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1689), + [sym_integer] = ACTIONS(1527), + [sym_float] = ACTIONS(1689), + [sym_char] = ACTIONS(1689), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1689), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [443] = { + [sym__expression] = STATE(1455), + [sym_block] = STATE(1455), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1455), + [sym_nil] = STATE(1455), + [sym__atom] = STATE(1455), + [sym_quoted_atom] = STATE(1455), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1455), + [sym_charlist] = STATE(1455), + [sym_sigil] = STATE(1455), + [sym_list] = STATE(1455), + [sym_tuple] = STATE(1455), + [sym_bitstring] = STATE(1455), + [sym_map] = STATE(1455), + [sym_unary_operator] = STATE(1455), + [sym_binary_operator] = STATE(1455), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1455), + [sym_call] = STATE(1455), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1455), + [sym_anonymous_function] = STATE(1455), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1695), + [sym_integer] = ACTIONS(1695), + [sym_float] = ACTIONS(1695), + [sym_char] = ACTIONS(1695), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1695), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [444] = { + [sym__expression] = STATE(1720), + [sym_block] = STATE(1720), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1720), + [sym_nil] = STATE(1720), + [sym__atom] = STATE(1720), + [sym_quoted_atom] = STATE(1720), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1720), + [sym_charlist] = STATE(1720), + [sym_sigil] = STATE(1720), + [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(5565), + [sym_dot] = STATE(1720), + [sym_call] = STATE(1720), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1720), + [sym_anonymous_function] = STATE(1720), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(1697), + [sym_integer] = ACTIONS(1697), + [sym_float] = ACTIONS(1697), + [sym_char] = ACTIONS(1697), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1697), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [445] = { + [sym__expression] = STATE(2934), + [sym_block] = STATE(2934), [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_boolean] = STATE(2934), + [sym_nil] = STATE(2934), + [sym__atom] = STATE(2934), + [sym_quoted_atom] = STATE(2934), + [sym__quoted_i_double] = STATE(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [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(5624), + [sym_dot] = STATE(2934), + [sym_call] = STATE(2934), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), [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), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2934), + [sym_anonymous_function] = STATE(2934), [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), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1699), + [sym_integer] = ACTIONS(1699), + [sym_float] = ACTIONS(1699), + [sym_char] = ACTIONS(1699), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1699), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), [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), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), }, - [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), + [446] = { + [sym__expression] = STATE(2858), + [sym_block] = STATE(2858), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2858), + [sym_nil] = STATE(2858), + [sym__atom] = STATE(2858), + [sym_quoted_atom] = STATE(2858), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(2858), + [sym_charlist] = STATE(2858), + [sym_sigil] = STATE(2858), + [sym_list] = STATE(2858), + [sym_tuple] = STATE(2858), + [sym_bitstring] = STATE(2858), + [sym_map] = STATE(2858), + [sym_unary_operator] = STATE(2858), + [sym_binary_operator] = STATE(2858), + [sym_operator_identifier] = STATE(5584), + [sym_dot] = STATE(2858), + [sym_call] = STATE(2858), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(2858), + [sym_anonymous_function] = STATE(2858), [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), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1701), + [sym_integer] = ACTIONS(1701), + [sym_float] = ACTIONS(1701), + [sym_char] = ACTIONS(1701), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), [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), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), }, - [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), + [447] = { + [sym__expression] = STATE(2829), + [sym_block] = STATE(2829), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2829), + [sym_nil] = STATE(2829), + [sym__atom] = STATE(2829), + [sym_quoted_atom] = STATE(2829), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(2829), + [sym_charlist] = STATE(2829), + [sym_sigil] = STATE(2829), + [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(5584), + [sym_dot] = STATE(2829), + [sym_call] = STATE(2829), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(2829), + [sym_anonymous_function] = STATE(2829), [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), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1703), + [sym_integer] = ACTIONS(1703), + [sym_float] = ACTIONS(1703), + [sym_char] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), [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), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), }, - [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), + [448] = { + [sym__expression] = STATE(2834), + [sym_block] = STATE(2834), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2834), + [sym_nil] = STATE(2834), + [sym__atom] = STATE(2834), + [sym_quoted_atom] = STATE(2834), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [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(5584), + [sym_dot] = STATE(2834), + [sym_call] = STATE(2834), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(2834), + [sym_anonymous_function] = STATE(2834), [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), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1705), + [sym_integer] = ACTIONS(1705), + [sym_float] = ACTIONS(1705), + [sym_char] = ACTIONS(1705), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), [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(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), }, - [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), + [449] = { + [sym__expression] = STATE(3032), + [sym_block] = STATE(3032), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(3032), + [sym_nil] = STATE(3032), + [sym__atom] = STATE(3032), + [sym_quoted_atom] = STATE(3032), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(3032), + [sym_charlist] = STATE(3032), + [sym_sigil] = STATE(3032), + [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(5584), + [sym_dot] = STATE(3032), + [sym_call] = STATE(3032), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(3032), + [sym_anonymous_function] = STATE(3032), [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), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1707), + [sym_integer] = ACTIONS(1707), + [sym_float] = ACTIONS(1707), + [sym_char] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), [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(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), }, - [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] = { + [450] = { [sym__expression] = STATE(2958), [sym_block] = STATE(2958), - [sym__identifier] = STATE(56), - [sym_identifier] = STATE(56), - [sym_special_identifier] = STATE(56), + [sym_identifier] = STATE(50), [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__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), [sym_string] = STATE(2958), [sym_charlist] = STATE(2958), [sym_sigil] = STATE(2958), @@ -126205,9497 +77580,4443 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_map] = STATE(2958), [sym_unary_operator] = STATE(2958), [sym_binary_operator] = STATE(2958), - [sym_operator_identifier] = STATE(5636), + [sym_operator_identifier] = STATE(5584), [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__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), [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), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1709), + [sym_integer] = ACTIONS(1709), + [sym_float] = ACTIONS(1709), + [sym_char] = ACTIONS(1709), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1709), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), [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), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), }, - [790] = { - [sym__expression] = STATE(2959), - [sym_block] = STATE(2959), - [sym__identifier] = STATE(56), + [451] = { + [sym__expression] = STATE(3967), + [sym_block] = STATE(3967), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3967), + [sym_nil] = STATE(3967), + [sym__atom] = STATE(3967), + [sym_quoted_atom] = STATE(3967), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [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(5643), + [sym_dot] = STATE(3967), + [sym_call] = STATE(3967), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3967), + [sym_anonymous_function] = STATE(3967), + [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_alias] = ACTIONS(1711), + [sym_integer] = ACTIONS(1711), + [sym_float] = ACTIONS(1711), + [sym_char] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [452] = { + [sym__expression] = STATE(3101), + [sym_block] = STATE(3101), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(3101), + [sym_nil] = STATE(3101), + [sym__atom] = STATE(3101), + [sym_quoted_atom] = STATE(3101), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(3101), + [sym_charlist] = STATE(3101), + [sym_sigil] = STATE(3101), + [sym_list] = STATE(3101), + [sym_tuple] = STATE(3101), + [sym_bitstring] = STATE(3101), + [sym_map] = STATE(3101), + [sym_unary_operator] = STATE(3101), + [sym_binary_operator] = STATE(3101), + [sym_operator_identifier] = STATE(5584), + [sym_dot] = STATE(3101), + [sym_call] = STATE(3101), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(3101), + [sym_anonymous_function] = STATE(3101), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1713), + [sym_integer] = ACTIONS(1713), + [sym_float] = ACTIONS(1713), + [sym_char] = ACTIONS(1713), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1713), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), + }, + [453] = { + [sym__expression] = STATE(3107), + [sym_block] = STATE(3107), [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_boolean] = STATE(3107), + [sym_nil] = STATE(3107), + [sym__atom] = STATE(3107), + [sym_quoted_atom] = STATE(3107), + [sym__quoted_i_double] = STATE(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [sym_string] = STATE(3107), + [sym_charlist] = STATE(3107), + [sym_sigil] = STATE(3107), + [sym_list] = STATE(3107), + [sym_tuple] = STATE(3107), + [sym_bitstring] = STATE(3107), + [sym_map] = STATE(3107), + [sym_unary_operator] = STATE(3107), + [sym_binary_operator] = STATE(3107), + [sym_operator_identifier] = STATE(5624), + [sym_dot] = STATE(3107), + [sym_call] = STATE(3107), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), [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(255), - [anon_sym_false] = ACTIONS(255), - [anon_sym_nil] = ACTIONS(257), - [sym_atom] = ACTIONS(2437), - [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), - }, - [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(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(1143), - [anon_sym_false] = ACTIONS(1143), - [anon_sym_nil] = ACTIONS(1145), - [sym_atom] = ACTIONS(2439), - [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), - }, - [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(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(1143), - [anon_sym_false] = ACTIONS(1143), - [anon_sym_nil] = ACTIONS(1145), - [sym_atom] = ACTIONS(2441), - [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), - }, - [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(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(255), - [anon_sym_false] = ACTIONS(255), - [anon_sym_nil] = ACTIONS(257), - [sym_atom] = ACTIONS(2443), - [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), - }, - [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(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(255), - [anon_sym_false] = ACTIONS(255), - [anon_sym_nil] = ACTIONS(257), - [sym_atom] = ACTIONS(2445), - [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), - }, - [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(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(255), - [anon_sym_false] = ACTIONS(255), - [anon_sym_nil] = ACTIONS(257), - [sym_atom] = ACTIONS(2447), - [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), - }, - [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(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(255), - [anon_sym_false] = ACTIONS(255), - [anon_sym_nil] = ACTIONS(257), - [sym_atom] = ACTIONS(2449), - [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), - }, - [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(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(255), - [anon_sym_false] = ACTIONS(255), - [anon_sym_nil] = ACTIONS(257), - [sym_atom] = ACTIONS(2451), - [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), - }, - [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(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), - [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(255), - [anon_sym_false] = ACTIONS(255), - [anon_sym_nil] = ACTIONS(257), - [sym_atom] = ACTIONS(2453), - [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), - }, - [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(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(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(255), - [anon_sym_false] = ACTIONS(255), - [anon_sym_nil] = ACTIONS(257), - [sym_atom] = ACTIONS(2455), - [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), - }, - [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(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(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(255), - [anon_sym_false] = ACTIONS(255), - [anon_sym_nil] = ACTIONS(257), - [sym_atom] = ACTIONS(2457), - [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), - }, - [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(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(203), - [anon_sym_false] = ACTIONS(203), - [anon_sym_nil] = ACTIONS(205), - [sym_atom] = ACTIONS(2459), - [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), - }, - [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(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(1143), - [anon_sym_false] = ACTIONS(1143), - [anon_sym_nil] = ACTIONS(1145), - [sym_atom] = ACTIONS(2461), - [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), - }, - [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(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(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(255), - [anon_sym_false] = ACTIONS(255), - [anon_sym_nil] = ACTIONS(257), - [sym_atom] = ACTIONS(2463), - [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), - }, - [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(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(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(255), - [anon_sym_false] = ACTIONS(255), - [anon_sym_nil] = ACTIONS(257), - [sym_atom] = ACTIONS(2465), - [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), - }, - [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(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(1143), - [anon_sym_false] = ACTIONS(1143), - [anon_sym_nil] = ACTIONS(1145), - [sym_atom] = ACTIONS(2467), - [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), - }, - [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(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(1143), - [anon_sym_false] = ACTIONS(1143), - [anon_sym_nil] = ACTIONS(1145), - [sym_atom] = ACTIONS(2469), - [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), - }, - [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(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(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2471), - [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), - }, - [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(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(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2473), - [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), - }, - [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_call] = STATE(2039), [sym__anonymous_dot] = STATE(5522), - [sym__double_call] = STATE(1770), - [sym_access_call] = STATE(3671), - [sym_anonymous_function] = STATE(3671), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(3107), + [sym_anonymous_function] = STATE(3107), [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(2475), - [sym_integer] = ACTIONS(2475), - [sym_float] = ACTIONS(2475), - [sym_char] = ACTIONS(2475), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(2475), - [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), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1307), + [sym_integer] = ACTIONS(1307), + [sym_float] = ACTIONS(1307), + [sym_char] = ACTIONS(1307), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1307), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), [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), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), }, - [835] = { - [sym__expression] = STATE(3272), - [sym_block] = STATE(3272), - [sym__identifier] = STATE(48), + [454] = { + [sym__expression] = STATE(4037), + [sym_block] = STATE(4037), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4037), + [sym_nil] = STATE(4037), + [sym__atom] = STATE(4037), + [sym_quoted_atom] = STATE(4037), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4037), + [sym_charlist] = STATE(4037), + [sym_sigil] = STATE(4037), + [sym_list] = STATE(4037), + [sym_tuple] = STATE(4037), + [sym_bitstring] = STATE(4037), + [sym_map] = STATE(4037), + [sym_unary_operator] = STATE(4037), + [sym_binary_operator] = STATE(4037), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4037), + [sym_call] = STATE(4037), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4037), + [sym_anonymous_function] = STATE(4037), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1471), + [sym_integer] = ACTIONS(1471), + [sym_float] = ACTIONS(1471), + [sym_char] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1471), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [455] = { + [sym__expression] = STATE(4110), + [sym_block] = STATE(4110), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(4110), + [sym_nil] = STATE(4110), + [sym__atom] = STATE(4110), + [sym_quoted_atom] = STATE(4110), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(4110), + [sym_charlist] = STATE(4110), + [sym_sigil] = STATE(4110), + [sym_list] = STATE(4110), + [sym_tuple] = STATE(4110), + [sym_bitstring] = STATE(4110), + [sym_map] = STATE(4110), + [sym_unary_operator] = STATE(4110), + [sym_binary_operator] = STATE(4110), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(4110), + [sym_call] = STATE(4110), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(4110), + [sym_anonymous_function] = STATE(4110), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1313), + [sym_integer] = ACTIONS(1313), + [sym_float] = ACTIONS(1313), + [sym_char] = ACTIONS(1313), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(1313), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [456] = { + [sym__expression] = STATE(3552), + [sym_block] = STATE(3552), [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), + [sym_boolean] = STATE(3552), + [sym_nil] = STATE(3552), + [sym__atom] = STATE(3552), + [sym_quoted_atom] = STATE(3552), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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_unary_operator] = STATE(3552), + [sym_binary_operator] = STATE(3552), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3552), + [sym_call] = STATE(3552), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [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(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(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2477), - [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), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1197), + [sym_integer] = ACTIONS(1197), + [sym_float] = ACTIONS(1197), + [sym_char] = ACTIONS(1197), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), [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), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, - [836] = { - [sym__expression] = STATE(3273), - [sym_block] = STATE(3273), - [sym__identifier] = STATE(48), + [457] = { + [sym__expression] = STATE(3047), + [sym_block] = STATE(3047), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(3047), + [sym_nil] = STATE(3047), + [sym__atom] = STATE(3047), + [sym_quoted_atom] = STATE(3047), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [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(5584), + [sym_dot] = STATE(3047), + [sym_call] = STATE(3047), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(3047), + [sym_anonymous_function] = STATE(3047), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1715), + [sym_integer] = ACTIONS(1715), + [sym_float] = ACTIONS(1715), + [sym_char] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1715), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), + }, + [458] = { + [sym__expression] = STATE(4126), + [sym_block] = STATE(4126), [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), + [sym_boolean] = STATE(4126), + [sym_nil] = STATE(4126), + [sym__atom] = STATE(4126), + [sym_quoted_atom] = STATE(4126), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(4126), + [sym_charlist] = STATE(4126), + [sym_sigil] = STATE(4126), + [sym_list] = STATE(4126), + [sym_tuple] = STATE(4126), + [sym_bitstring] = STATE(4126), + [sym_map] = STATE(4126), + [sym_unary_operator] = STATE(4126), + [sym_binary_operator] = STATE(4126), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4126), + [sym_call] = STATE(4126), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4126), + [sym_anonymous_function] = STATE(4126), [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(2479), - [sym_integer] = ACTIONS(2479), - [sym_float] = ACTIONS(2479), - [sym_char] = ACTIONS(2479), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2479), - [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), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1717), + [sym_integer] = ACTIONS(1717), + [sym_float] = ACTIONS(1717), + [sym_char] = ACTIONS(1717), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1717), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), [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), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, - [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), + [459] = { + [sym__expression] = STATE(2985), + [sym_block] = STATE(2985), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2985), + [sym_nil] = STATE(2985), + [sym__atom] = STATE(2985), + [sym_quoted_atom] = STATE(2985), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(2985), + [sym_charlist] = STATE(2985), + [sym_sigil] = STATE(2985), + [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(5584), + [sym_dot] = STATE(2985), + [sym_call] = STATE(2985), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(2985), + [sym_anonymous_function] = STATE(2985), [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(2481), - [sym_integer] = ACTIONS(2481), - [sym_float] = ACTIONS(2481), - [sym_char] = ACTIONS(2481), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2481), - [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), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1719), + [sym_integer] = ACTIONS(1719), + [sym_float] = ACTIONS(1719), + [sym_char] = ACTIONS(1719), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1719), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), [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), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), }, - [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), + [460] = { + [sym__expression] = STATE(2984), + [sym_block] = STATE(2984), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2984), + [sym_nil] = STATE(2984), + [sym__atom] = STATE(2984), + [sym_quoted_atom] = STATE(2984), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [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(5584), + [sym_dot] = STATE(2984), + [sym_call] = STATE(2984), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(2984), + [sym_anonymous_function] = STATE(2984), [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(2483), - [sym_integer] = ACTIONS(2483), - [sym_float] = ACTIONS(2483), - [sym_char] = ACTIONS(2483), - [anon_sym_true] = ACTIONS(1143), - [anon_sym_false] = ACTIONS(1143), - [anon_sym_nil] = ACTIONS(1145), - [sym_atom] = ACTIONS(2483), - [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), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1721), + [sym_integer] = ACTIONS(1721), + [sym_float] = ACTIONS(1721), + [sym_char] = ACTIONS(1721), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), [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), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), }, - [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), + [461] = { + [sym__expression] = STATE(2983), + [sym_block] = STATE(2983), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2983), + [sym_nil] = STATE(2983), + [sym__atom] = STATE(2983), + [sym_quoted_atom] = STATE(2983), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [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(5584), + [sym_dot] = STATE(2983), + [sym_call] = STATE(2983), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(2983), + [sym_anonymous_function] = STATE(2983), [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(2485), - [sym_integer] = ACTIONS(2485), - [sym_float] = ACTIONS(2485), - [sym_char] = ACTIONS(2485), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2485), - [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), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1723), + [sym_integer] = ACTIONS(1723), + [sym_float] = ACTIONS(1723), + [sym_char] = ACTIONS(1723), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), [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), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), }, - [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), + [462] = { + [sym__expression] = STATE(3714), + [sym_block] = STATE(3714), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3714), + [sym_nil] = STATE(3714), + [sym__atom] = STATE(3714), + [sym_quoted_atom] = STATE(3714), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(3714), + [sym_call] = STATE(3714), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3714), + [sym_anonymous_function] = STATE(3714), [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(2487), - [sym_integer] = ACTIONS(2487), - [sym_float] = ACTIONS(2487), - [sym_char] = ACTIONS(2487), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2487), - [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1725), + [sym_integer] = ACTIONS(1725), + [sym_float] = ACTIONS(1725), + [sym_char] = ACTIONS(1725), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1725), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), [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), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [463] = { + [sym__expression] = STATE(2982), + [sym_block] = STATE(2982), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2982), + [sym_nil] = STATE(2982), + [sym__atom] = STATE(2982), + [sym_quoted_atom] = STATE(2982), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [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(5584), + [sym_dot] = STATE(2982), + [sym_call] = STATE(2982), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(2982), + [sym_anonymous_function] = STATE(2982), [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(2489), - [sym_integer] = ACTIONS(2489), - [sym_float] = ACTIONS(2489), - [sym_char] = ACTIONS(2489), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2489), - [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), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1727), + [sym_integer] = ACTIONS(1727), + [sym_float] = ACTIONS(1727), + [sym_char] = ACTIONS(1727), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), [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), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), }, - [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), + [464] = { + [sym__expression] = STATE(2976), + [sym_block] = STATE(2976), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2976), + [sym_nil] = STATE(2976), + [sym__atom] = STATE(2976), + [sym_quoted_atom] = STATE(2976), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [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(5584), + [sym_dot] = STATE(2976), + [sym_call] = STATE(2976), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(2976), + [sym_anonymous_function] = STATE(2976), [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(2491), - [sym_integer] = ACTIONS(2491), - [sym_float] = ACTIONS(2491), - [sym_char] = ACTIONS(2491), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2491), - [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), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1729), + [sym_integer] = ACTIONS(1729), + [sym_float] = ACTIONS(1729), + [sym_char] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1729), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), [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), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), }, - [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), + [465] = { + [sym__expression] = STATE(2973), + [sym_block] = STATE(2973), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2973), + [sym_nil] = STATE(2973), + [sym__atom] = STATE(2973), + [sym_quoted_atom] = STATE(2973), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(2973), + [sym_charlist] = STATE(2973), + [sym_sigil] = STATE(2973), + [sym_list] = STATE(2973), + [sym_tuple] = STATE(2973), + [sym_bitstring] = STATE(2973), + [sym_map] = STATE(2973), + [sym_unary_operator] = STATE(2973), + [sym_binary_operator] = STATE(2973), + [sym_operator_identifier] = STATE(5584), + [sym_dot] = STATE(2973), + [sym_call] = STATE(2973), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(2973), + [sym_anonymous_function] = STATE(2973), [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(2493), - [sym_integer] = ACTIONS(2493), - [sym_float] = ACTIONS(2493), - [sym_char] = ACTIONS(2493), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2493), - [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), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1731), + [sym_integer] = ACTIONS(1731), + [sym_float] = ACTIONS(1731), + [sym_char] = ACTIONS(1731), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), [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), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), }, - [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), + [466] = { + [sym__expression] = STATE(2972), + [sym_block] = STATE(2972), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2972), + [sym_nil] = STATE(2972), + [sym__atom] = STATE(2972), + [sym_quoted_atom] = STATE(2972), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(2972), + [sym_charlist] = STATE(2972), + [sym_sigil] = STATE(2972), + [sym_list] = STATE(2972), + [sym_tuple] = STATE(2972), + [sym_bitstring] = STATE(2972), + [sym_map] = STATE(2972), + [sym_unary_operator] = STATE(2972), + [sym_binary_operator] = STATE(2972), + [sym_operator_identifier] = STATE(5584), + [sym_dot] = STATE(2972), + [sym_call] = STATE(2972), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(2972), + [sym_anonymous_function] = STATE(2972), [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(2495), - [sym_integer] = ACTIONS(2495), - [sym_float] = ACTIONS(2495), - [sym_char] = ACTIONS(2495), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2495), - [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), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1733), + [sym_integer] = ACTIONS(1733), + [sym_float] = ACTIONS(1733), + [sym_char] = ACTIONS(1733), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), [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), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), }, - [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), + [467] = { + [sym__expression] = STATE(2969), + [sym_block] = STATE(2969), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2969), + [sym_nil] = STATE(2969), + [sym__atom] = STATE(2969), + [sym_quoted_atom] = STATE(2969), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(2969), + [sym_charlist] = STATE(2969), + [sym_sigil] = STATE(2969), + [sym_list] = STATE(2969), + [sym_tuple] = STATE(2969), + [sym_bitstring] = STATE(2969), + [sym_map] = STATE(2969), + [sym_unary_operator] = STATE(2969), + [sym_binary_operator] = STATE(2969), + [sym_operator_identifier] = STATE(5584), + [sym_dot] = STATE(2969), + [sym_call] = STATE(2969), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(2969), + [sym_anonymous_function] = STATE(2969), [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(2497), - [sym_integer] = ACTIONS(2497), - [sym_float] = ACTIONS(2497), - [sym_char] = ACTIONS(2497), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2497), - [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), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1735), + [sym_integer] = ACTIONS(1735), + [sym_float] = ACTIONS(1735), + [sym_char] = ACTIONS(1735), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1735), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), [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), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), }, - [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), + [468] = { + [sym__expression] = STATE(2967), + [sym_block] = STATE(2967), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2967), + [sym_nil] = STATE(2967), + [sym__atom] = STATE(2967), + [sym_quoted_atom] = STATE(2967), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [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_binary_operator] = STATE(2967), + [sym_operator_identifier] = STATE(5584), + [sym_dot] = STATE(2967), + [sym_call] = STATE(2967), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(2967), + [sym_anonymous_function] = STATE(2967), [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(2499), - [sym_integer] = ACTIONS(2499), - [sym_float] = ACTIONS(2499), - [sym_char] = ACTIONS(2499), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2499), - [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), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1737), + [sym_integer] = ACTIONS(1737), + [sym_float] = ACTIONS(1737), + [sym_char] = ACTIONS(1737), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1737), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), [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), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), }, - [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), + [469] = { + [sym__expression] = STATE(1784), + [sym_block] = STATE(1784), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1784), + [sym_nil] = STATE(1784), + [sym__atom] = STATE(1784), + [sym_quoted_atom] = STATE(1784), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(1784), + [sym_call] = STATE(1784), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(1784), + [sym_anonymous_function] = STATE(1784), [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(2501), - [sym_integer] = ACTIONS(2501), - [sym_float] = ACTIONS(2501), - [sym_char] = ACTIONS(2501), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2501), - [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1739), + [sym_integer] = ACTIONS(1739), + [sym_float] = ACTIONS(1739), + [sym_char] = ACTIONS(1739), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), [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), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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(2111), - [sym__anonymous_dot] = STATE(5517), - [sym__double_call] = STATE(3188), - [sym_access_call] = STATE(3287), - [sym_anonymous_function] = STATE(3287), + [470] = { + [sym__expression] = STATE(2709), + [sym_block] = STATE(2709), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(2709), + [sym_nil] = STATE(2709), + [sym__atom] = STATE(2709), + [sym_quoted_atom] = STATE(2709), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2709), + [sym_charlist] = STATE(2709), + [sym_sigil] = STATE(2709), + [sym_list] = STATE(2709), + [sym_tuple] = STATE(2709), + [sym_bitstring] = STATE(2709), + [sym_map] = STATE(2709), + [sym_unary_operator] = STATE(2709), + [sym_binary_operator] = STATE(2709), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2709), + [sym_call] = STATE(2709), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2709), + [sym_anonymous_function] = STATE(2709), [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(2503), - [sym_integer] = ACTIONS(2503), - [sym_float] = ACTIONS(2503), - [sym_char] = ACTIONS(2503), - [anon_sym_true] = ACTIONS(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2503), - [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1741), + [sym_integer] = ACTIONS(1741), + [sym_float] = ACTIONS(1741), + [sym_char] = ACTIONS(1741), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1741), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), [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), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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(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), + [471] = { + [sym__expression] = STATE(3846), + [sym_block] = STATE(3846), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3846), + [sym_nil] = STATE(3846), + [sym__atom] = STATE(3846), + [sym_quoted_atom] = STATE(3846), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(3846), + [sym_charlist] = STATE(3846), + [sym_sigil] = STATE(3846), + [sym_list] = STATE(3846), + [sym_tuple] = STATE(3846), + [sym_bitstring] = STATE(3846), + [sym_map] = STATE(3846), + [sym_unary_operator] = STATE(3846), + [sym_binary_operator] = STATE(3846), [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), + [sym_dot] = STATE(3846), + [sym_call] = STATE(3846), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3846), + [sym_anonymous_function] = STATE(3846), [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), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1743), + [sym_integer] = ACTIONS(1743), + [sym_float] = ACTIONS(1743), + [sym_char] = ACTIONS(1743), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1743), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), [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), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), }, - [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(255), - [anon_sym_false] = ACTIONS(255), - [anon_sym_nil] = ACTIONS(257), - [sym_atom] = ACTIONS(2505), - [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), - }, - [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(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(1143), - [anon_sym_false] = ACTIONS(1143), - [anon_sym_nil] = ACTIONS(1145), - [sym_atom] = ACTIONS(2507), - [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), - }, - [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(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(1073), - [anon_sym_false] = ACTIONS(1073), - [anon_sym_nil] = ACTIONS(1075), - [sym_atom] = ACTIONS(2509), - [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), - }, - [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(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(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(2513), - [sym_integer] = ACTIONS(2513), - [sym_float] = ACTIONS(2513), - [sym_char] = ACTIONS(2513), - [anon_sym_true] = ACTIONS(255), - [anon_sym_false] = ACTIONS(255), - [anon_sym_nil] = ACTIONS(257), - [sym_atom] = ACTIONS(2513), - [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), - }, - [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(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(1143), - [anon_sym_false] = ACTIONS(1143), - [anon_sym_nil] = ACTIONS(1145), - [sym_atom] = ACTIONS(2515), - [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), - }, - [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(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), + [472] = { + [sym__expression] = STATE(2937), + [sym_block] = STATE(2937), [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_boolean] = STATE(2937), + [sym_nil] = STATE(2937), + [sym__atom] = STATE(2937), + [sym_quoted_atom] = STATE(2937), + [sym__quoted_i_double] = STATE(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [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(5624), + [sym_dot] = STATE(2937), + [sym_call] = STATE(2937), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), [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), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2937), + [sym_anonymous_function] = STATE(2937), [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), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1745), + [sym_integer] = ACTIONS(1745), + [sym_float] = ACTIONS(1745), + [sym_char] = ACTIONS(1745), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1745), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), [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), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), }, - [865] = { + [473] = { + [sym__expression] = STATE(2874), + [sym_block] = STATE(2874), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2874), + [sym_nil] = STATE(2874), + [sym__atom] = STATE(2874), + [sym_quoted_atom] = STATE(2874), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [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(5584), + [sym_dot] = STATE(2874), + [sym_call] = STATE(2874), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(2874), + [sym_anonymous_function] = STATE(2874), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1747), + [sym_integer] = ACTIONS(1747), + [sym_float] = ACTIONS(1747), + [sym_char] = ACTIONS(1747), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1747), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), + }, + [474] = { + [sym__expression] = STATE(4130), + [sym_block] = STATE(4130), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(4130), + [sym_nil] = STATE(4130), + [sym__atom] = STATE(4130), + [sym_quoted_atom] = STATE(4130), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(4130), + [sym_charlist] = STATE(4130), + [sym_sigil] = STATE(4130), + [sym_list] = STATE(4130), + [sym_tuple] = STATE(4130), + [sym_bitstring] = STATE(4130), + [sym_map] = STATE(4130), + [sym_unary_operator] = STATE(4130), + [sym_binary_operator] = STATE(4130), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4130), + [sym_call] = STATE(4130), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4130), + [sym_anonymous_function] = STATE(4130), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1749), + [sym_integer] = ACTIONS(1749), + [sym_float] = ACTIONS(1749), + [sym_char] = ACTIONS(1749), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [475] = { + [sym__expression] = STATE(3847), + [sym_block] = STATE(3847), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3847), + [sym_nil] = STATE(3847), + [sym__atom] = STATE(3847), + [sym_quoted_atom] = STATE(3847), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [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(5643), + [sym_dot] = STATE(3847), + [sym_call] = STATE(3847), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [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_alias] = ACTIONS(1751), + [sym_integer] = ACTIONS(1751), + [sym_float] = ACTIONS(1751), + [sym_char] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [476] = { + [sym__expression] = STATE(3413), + [sym_block] = STATE(3413), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3413), + [sym_nil] = STATE(3413), + [sym__atom] = STATE(3413), + [sym_quoted_atom] = STATE(3413), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [sym_string] = STATE(3413), + [sym_charlist] = STATE(3413), + [sym_sigil] = STATE(3413), + [sym_list] = STATE(3413), + [sym_tuple] = STATE(3413), + [sym_bitstring] = STATE(3413), + [sym_map] = STATE(3413), + [sym_unary_operator] = STATE(3413), + [sym_binary_operator] = STATE(3413), + [sym_operator_identifier] = STATE(5616), + [sym_dot] = STATE(3413), + [sym_call] = STATE(3413), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3413), + [sym_anonymous_function] = STATE(3413), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(1753), + [sym_integer] = ACTIONS(1753), + [sym_float] = ACTIONS(1753), + [sym_char] = ACTIONS(1753), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(1753), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [477] = { + [sym__expression] = STATE(2910), + [sym_block] = STATE(2910), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2910), + [sym_nil] = STATE(2910), + [sym__atom] = STATE(2910), + [sym_quoted_atom] = STATE(2910), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(2910), + [sym_charlist] = STATE(2910), + [sym_sigil] = STATE(2910), + [sym_list] = STATE(2910), + [sym_tuple] = STATE(2910), + [sym_bitstring] = STATE(2910), + [sym_map] = STATE(2910), + [sym_unary_operator] = STATE(2910), + [sym_binary_operator] = STATE(2910), + [sym_operator_identifier] = STATE(5584), + [sym_dot] = STATE(2910), + [sym_call] = STATE(2910), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(2910), + [sym_anonymous_function] = STATE(2910), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1755), + [sym_integer] = ACTIONS(1755), + [sym_float] = ACTIONS(1755), + [sym_char] = ACTIONS(1755), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1755), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), + }, + [478] = { + [sym__expression] = STATE(2909), + [sym_block] = STATE(2909), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2909), + [sym_nil] = STATE(2909), + [sym__atom] = STATE(2909), + [sym_quoted_atom] = STATE(2909), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(2909), + [sym_charlist] = STATE(2909), + [sym_sigil] = STATE(2909), + [sym_list] = STATE(2909), + [sym_tuple] = STATE(2909), + [sym_bitstring] = STATE(2909), + [sym_map] = STATE(2909), + [sym_unary_operator] = STATE(2909), + [sym_binary_operator] = STATE(2909), + [sym_operator_identifier] = STATE(5584), + [sym_dot] = STATE(2909), + [sym_call] = STATE(2909), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(2909), + [sym_anonymous_function] = STATE(2909), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1757), + [sym_integer] = ACTIONS(1757), + [sym_float] = ACTIONS(1757), + [sym_char] = ACTIONS(1757), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), + }, + [479] = { + [sym__expression] = STATE(2938), + [sym_block] = STATE(2938), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2938), + [sym_nil] = STATE(2938), + [sym__atom] = STATE(2938), + [sym_quoted_atom] = STATE(2938), + [sym__quoted_i_double] = STATE(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [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(5624), + [sym_dot] = STATE(2938), + [sym_call] = STATE(2938), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2938), + [sym_anonymous_function] = STATE(2938), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1759), + [sym_integer] = ACTIONS(1759), + [sym_float] = ACTIONS(1759), + [sym_char] = ACTIONS(1759), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1759), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), + }, + [480] = { + [sym__expression] = STATE(2939), + [sym_block] = STATE(2939), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2939), + [sym_nil] = STATE(2939), + [sym__atom] = STATE(2939), + [sym_quoted_atom] = STATE(2939), + [sym__quoted_i_double] = STATE(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [sym_string] = STATE(2939), + [sym_charlist] = STATE(2939), + [sym_sigil] = STATE(2939), + [sym_list] = STATE(2939), + [sym_tuple] = STATE(2939), + [sym_bitstring] = STATE(2939), + [sym_map] = STATE(2939), + [sym_unary_operator] = STATE(2939), + [sym_binary_operator] = STATE(2939), + [sym_operator_identifier] = STATE(5624), + [sym_dot] = STATE(2939), + [sym_call] = STATE(2939), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2939), + [sym_anonymous_function] = STATE(2939), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1761), + [sym_integer] = ACTIONS(1761), + [sym_float] = ACTIONS(1761), + [sym_char] = ACTIONS(1761), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1761), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), + }, + [481] = { + [sym__expression] = STATE(3692), + [sym_block] = STATE(3692), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3692), + [sym_nil] = STATE(3692), + [sym__atom] = STATE(3692), + [sym_quoted_atom] = STATE(3692), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3692), + [sym_charlist] = STATE(3692), + [sym_sigil] = STATE(3692), + [sym_list] = STATE(3692), + [sym_tuple] = STATE(3692), + [sym_bitstring] = STATE(3692), + [sym_map] = STATE(3692), + [sym_unary_operator] = STATE(3692), + [sym_binary_operator] = STATE(3692), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3692), + [sym_call] = STATE(3692), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3692), + [sym_anonymous_function] = STATE(3692), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1763), + [sym_integer] = ACTIONS(1763), + [sym_float] = ACTIONS(1763), + [sym_char] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1763), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [482] = { + [sym__expression] = STATE(1817), + [sym_block] = STATE(1817), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(1817), + [sym_nil] = STATE(1817), + [sym__atom] = STATE(1817), + [sym_quoted_atom] = STATE(1817), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(1817), + [sym_call] = STATE(1817), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(1817), + [sym_anonymous_function] = STATE(1817), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1765), + [sym_integer] = ACTIONS(1765), + [sym_float] = ACTIONS(1765), + [sym_char] = ACTIONS(1765), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [483] = { + [sym__expression] = STATE(3417), + [sym_block] = STATE(3417), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3417), + [sym_nil] = STATE(3417), + [sym__atom] = STATE(3417), + [sym_quoted_atom] = STATE(3417), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [sym_string] = STATE(3417), + [sym_charlist] = STATE(3417), + [sym_sigil] = STATE(3417), + [sym_list] = STATE(3417), + [sym_tuple] = STATE(3417), + [sym_bitstring] = STATE(3417), + [sym_map] = STATE(3417), + [sym_unary_operator] = STATE(3417), + [sym_binary_operator] = STATE(3417), + [sym_operator_identifier] = STATE(5616), + [sym_dot] = STATE(3417), + [sym_call] = STATE(3417), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3417), + [sym_anonymous_function] = STATE(3417), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(1367), + [sym_integer] = ACTIONS(1367), + [sym_float] = ACTIONS(1367), + [sym_char] = ACTIONS(1367), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(1367), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [484] = { + [sym__expression] = STATE(3712), + [sym_block] = STATE(3712), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3712), + [sym_nil] = STATE(3712), + [sym__atom] = STATE(3712), + [sym_quoted_atom] = STATE(3712), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(3712), + [sym_call] = STATE(3712), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3712), + [sym_anonymous_function] = STATE(3712), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1767), + [sym_integer] = ACTIONS(1767), + [sym_float] = ACTIONS(1767), + [sym_char] = ACTIONS(1767), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1767), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [485] = { + [sym__expression] = STATE(3962), + [sym_block] = STATE(3962), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3962), + [sym_nil] = STATE(3962), + [sym__atom] = STATE(3962), + [sym_quoted_atom] = STATE(3962), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [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(5643), + [sym_dot] = STATE(3962), + [sym_call] = STATE(3962), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3962), + [sym_anonymous_function] = STATE(3962), + [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_alias] = ACTIONS(1769), + [sym_integer] = ACTIONS(1769), + [sym_float] = ACTIONS(1769), + [sym_char] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1769), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [486] = { + [sym__expression] = STATE(2942), + [sym_block] = STATE(2942), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2942), + [sym_nil] = STATE(2942), + [sym__atom] = STATE(2942), + [sym_quoted_atom] = STATE(2942), + [sym__quoted_i_double] = STATE(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [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(5624), + [sym_dot] = STATE(2942), + [sym_call] = STATE(2942), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2942), + [sym_anonymous_function] = STATE(2942), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1771), + [sym_integer] = ACTIONS(1771), + [sym_float] = ACTIONS(1771), + [sym_char] = ACTIONS(1771), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1771), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), + }, + [487] = { + [sym__expression] = STATE(2943), + [sym_block] = STATE(2943), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2943), + [sym_nil] = STATE(2943), + [sym__atom] = STATE(2943), + [sym_quoted_atom] = STATE(2943), + [sym__quoted_i_double] = STATE(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [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(5624), + [sym_dot] = STATE(2943), + [sym_call] = STATE(2943), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2943), + [sym_anonymous_function] = STATE(2943), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1773), + [sym_integer] = ACTIONS(1773), + [sym_float] = ACTIONS(1773), + [sym_char] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1773), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), + }, + [488] = { [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__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), [sym_string] = STATE(4136), [sym_charlist] = STATE(4136), [sym_sigil] = STATE(4136), @@ -135705,2122 +82026,20706 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_map] = STATE(4136), [sym_unary_operator] = STATE(4136), [sym_binary_operator] = STATE(4136), - [sym_operator_identifier] = STATE(5560), + [sym_operator_identifier] = STATE(5548), [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__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), [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), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1775), + [sym_integer] = ACTIONS(1775), + [sym_float] = ACTIONS(1775), + [sym_char] = ACTIONS(1775), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1775), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), [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), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, - [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), + [489] = { + [sym__expression] = STATE(3963), + [sym_block] = STATE(3963), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3963), + [sym_nil] = STATE(3963), + [sym__atom] = STATE(3963), + [sym_quoted_atom] = STATE(3963), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [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(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), + [sym_dot] = STATE(3963), + [sym_call] = STATE(3963), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3963), + [sym_anonymous_function] = STATE(3963), [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), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(1777), + [sym_integer] = ACTIONS(1777), + [sym_float] = ACTIONS(1777), + [sym_char] = ACTIONS(1777), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1777), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), [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), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), }, - [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), + [490] = { + [sym__expression] = STATE(2944), + [sym_block] = STATE(2944), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2944), + [sym_nil] = STATE(2944), + [sym__atom] = STATE(2944), + [sym_quoted_atom] = STATE(2944), + [sym__quoted_i_double] = STATE(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [sym_string] = STATE(2944), + [sym_charlist] = STATE(2944), + [sym_sigil] = STATE(2944), + [sym_list] = STATE(2944), + [sym_tuple] = STATE(2944), + [sym_bitstring] = STATE(2944), + [sym_map] = STATE(2944), + [sym_unary_operator] = STATE(2944), + [sym_binary_operator] = STATE(2944), + [sym_operator_identifier] = STATE(5624), + [sym_dot] = STATE(2944), + [sym_call] = STATE(2944), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2944), + [sym_anonymous_function] = STATE(2944), [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), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1779), + [sym_integer] = ACTIONS(1779), + [sym_float] = ACTIONS(1779), + [sym_char] = ACTIONS(1779), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1779), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), [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), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), }, - [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), + [491] = { + [sym__expression] = STATE(3084), + [sym_block] = STATE(3084), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(3084), + [sym_nil] = STATE(3084), + [sym__atom] = STATE(3084), + [sym_quoted_atom] = STATE(3084), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(3084), + [sym_charlist] = STATE(3084), + [sym_sigil] = STATE(3084), + [sym_list] = STATE(3084), + [sym_tuple] = STATE(3084), + [sym_bitstring] = STATE(3084), + [sym_map] = STATE(3084), + [sym_unary_operator] = STATE(3084), + [sym_binary_operator] = STATE(3084), + [sym_operator_identifier] = STATE(5584), + [sym_dot] = STATE(3084), + [sym_call] = STATE(3084), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(3084), + [sym_anonymous_function] = STATE(3084), [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), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1781), + [sym_integer] = ACTIONS(1781), + [sym_float] = ACTIONS(1781), + [sym_char] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1781), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), [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), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), }, - [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), + [492] = { + [sym__expression] = STATE(2945), + [sym_block] = STATE(2945), + [sym_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(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [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(5624), + [sym_dot] = STATE(2945), + [sym_call] = STATE(2945), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2945), + [sym_anonymous_function] = STATE(2945), [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), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1783), + [sym_integer] = ACTIONS(1783), + [sym_float] = ACTIONS(1783), + [sym_char] = ACTIONS(1783), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1783), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), [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), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), }, - [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), + [493] = { + [sym__expression] = STATE(2946), + [sym_block] = STATE(2946), + [sym_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(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [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(5624), + [sym_dot] = STATE(2946), + [sym_call] = STATE(2946), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2946), + [sym_anonymous_function] = STATE(2946), [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), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1785), + [sym_integer] = ACTIONS(1785), + [sym_float] = ACTIONS(1785), + [sym_char] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1785), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), [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), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), }, - [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), + [494] = { + [sym__expression] = STATE(4133), + [sym_block] = STATE(4133), [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), + [sym_boolean] = STATE(4133), + [sym_nil] = STATE(4133), + [sym__atom] = STATE(4133), + [sym_quoted_atom] = STATE(4133), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4133), + [sym_call] = STATE(4133), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [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(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), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1787), + [sym_integer] = ACTIONS(1787), + [sym_float] = ACTIONS(1787), + [sym_char] = ACTIONS(1787), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1787), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), [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), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, - [882] = { + [495] = { + [sym__expression] = STATE(2964), + [sym_block] = STATE(2964), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(2964), + [sym_nil] = STATE(2964), + [sym__atom] = STATE(2964), + [sym_quoted_atom] = STATE(2964), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [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(5584), + [sym_dot] = STATE(2964), + [sym_call] = STATE(2964), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(2964), + [sym_anonymous_function] = STATE(2964), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1789), + [sym_integer] = ACTIONS(1789), + [sym_float] = ACTIONS(1789), + [sym_char] = ACTIONS(1789), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1789), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), + }, + [496] = { + [sym__expression] = STATE(2947), + [sym_block] = STATE(2947), + [sym_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(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [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(5624), + [sym_dot] = STATE(2947), + [sym_call] = STATE(2947), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2947), + [sym_anonymous_function] = STATE(2947), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1791), + [sym_integer] = ACTIONS(1791), + [sym_float] = ACTIONS(1791), + [sym_char] = ACTIONS(1791), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1791), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), + }, + [497] = { + [sym__expression] = STATE(2948), + [sym_block] = STATE(2948), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2948), + [sym_nil] = STATE(2948), + [sym__atom] = STATE(2948), + [sym_quoted_atom] = STATE(2948), + [sym__quoted_i_double] = STATE(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [sym_string] = STATE(2948), + [sym_charlist] = STATE(2948), + [sym_sigil] = STATE(2948), + [sym_list] = STATE(2948), + [sym_tuple] = STATE(2948), + [sym_bitstring] = STATE(2948), + [sym_map] = STATE(2948), + [sym_unary_operator] = STATE(2948), + [sym_binary_operator] = STATE(2948), + [sym_operator_identifier] = STATE(5624), + [sym_dot] = STATE(2948), + [sym_call] = STATE(2948), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2948), + [sym_anonymous_function] = STATE(2948), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1793), + [sym_integer] = ACTIONS(1793), + [sym_float] = ACTIONS(1793), + [sym_char] = ACTIONS(1793), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), + }, + [498] = { + [sym__expression] = STATE(2283), + [sym_block] = STATE(2283), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2283), + [sym_nil] = STATE(2283), + [sym__atom] = STATE(2283), + [sym_quoted_atom] = STATE(2283), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2283), + [sym_charlist] = STATE(2283), + [sym_sigil] = STATE(2283), + [sym_list] = STATE(2283), + [sym_tuple] = STATE(2283), + [sym_bitstring] = STATE(2283), + [sym_map] = STATE(2283), + [sym_unary_operator] = STATE(2283), + [sym_binary_operator] = STATE(2283), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(2283), + [sym_call] = STATE(2283), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2283), + [sym_anonymous_function] = STATE(2283), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(1795), + [sym_integer] = ACTIONS(1795), + [sym_float] = ACTIONS(1795), + [sym_char] = ACTIONS(1795), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1795), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [499] = { + [sym__expression] = STATE(2949), + [sym_block] = STATE(2949), + [sym_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(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [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(5624), + [sym_dot] = STATE(2949), + [sym_call] = STATE(2949), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2949), + [sym_anonymous_function] = STATE(2949), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1797), + [sym_integer] = ACTIONS(1797), + [sym_float] = ACTIONS(1797), + [sym_char] = ACTIONS(1797), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1797), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), + }, + [500] = { + [sym__expression] = STATE(2950), + [sym_block] = STATE(2950), + [sym_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(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [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(5624), + [sym_dot] = STATE(2950), + [sym_call] = STATE(2950), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2950), + [sym_anonymous_function] = STATE(2950), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1799), + [sym_integer] = ACTIONS(1799), + [sym_float] = ACTIONS(1799), + [sym_char] = ACTIONS(1799), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1799), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), + }, + [501] = { + [sym__expression] = STATE(3961), + [sym_block] = STATE(3961), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3961), + [sym_nil] = STATE(3961), + [sym__atom] = STATE(3961), + [sym_quoted_atom] = STATE(3961), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [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(5643), + [sym_dot] = STATE(3961), + [sym_call] = STATE(3961), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [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_alias] = ACTIONS(1801), + [sym_integer] = ACTIONS(1801), + [sym_float] = ACTIONS(1801), + [sym_char] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [502] = { + [sym__expression] = STATE(4019), + [sym_block] = STATE(4019), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(4019), + [sym_nil] = STATE(4019), + [sym__atom] = STATE(4019), + [sym_quoted_atom] = STATE(4019), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(4019), + [sym_charlist] = STATE(4019), + [sym_sigil] = STATE(4019), + [sym_list] = STATE(4019), + [sym_tuple] = STATE(4019), + [sym_bitstring] = STATE(4019), + [sym_map] = STATE(4019), + [sym_unary_operator] = STATE(4019), + [sym_binary_operator] = STATE(4019), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4019), + [sym_call] = STATE(4019), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4019), + [sym_anonymous_function] = STATE(4019), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1321), + [sym_integer] = ACTIONS(1321), + [sym_float] = ACTIONS(1321), + [sym_char] = ACTIONS(1321), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1321), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [503] = { + [sym__expression] = STATE(2951), + [sym_block] = STATE(2951), + [sym_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(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [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(5624), + [sym_dot] = STATE(2951), + [sym_call] = STATE(2951), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2951), + [sym_anonymous_function] = STATE(2951), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1803), + [sym_integer] = ACTIONS(1803), + [sym_float] = ACTIONS(1803), + [sym_char] = ACTIONS(1803), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1803), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), + }, + [504] = { + [sym__expression] = STATE(4018), + [sym_block] = STATE(4018), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4018), + [sym_nil] = STATE(4018), + [sym__atom] = STATE(4018), + [sym_quoted_atom] = STATE(4018), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4018), + [sym_charlist] = STATE(4018), + [sym_sigil] = STATE(4018), + [sym_list] = STATE(4018), + [sym_tuple] = STATE(4018), + [sym_bitstring] = STATE(4018), + [sym_map] = STATE(4018), + [sym_unary_operator] = STATE(4018), + [sym_binary_operator] = STATE(4018), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(4018), + [sym_call] = STATE(4018), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4018), + [sym_anonymous_function] = STATE(4018), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1805), + [sym_integer] = ACTIONS(1805), + [sym_float] = ACTIONS(1805), + [sym_char] = ACTIONS(1805), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [505] = { + [sym__expression] = STATE(3958), + [sym_block] = STATE(3958), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3958), + [sym_nil] = STATE(3958), + [sym__atom] = STATE(3958), + [sym_quoted_atom] = STATE(3958), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(3958), + [sym_charlist] = STATE(3958), + [sym_sigil] = STATE(3958), + [sym_list] = STATE(3958), + [sym_tuple] = STATE(3958), + [sym_bitstring] = STATE(3958), + [sym_map] = STATE(3958), + [sym_unary_operator] = STATE(3958), + [sym_binary_operator] = STATE(3958), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3958), + [sym_call] = STATE(3958), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3958), + [sym_anonymous_function] = STATE(3958), + [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_alias] = ACTIONS(1807), + [sym_integer] = ACTIONS(1807), + [sym_float] = ACTIONS(1807), + [sym_char] = ACTIONS(1807), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1807), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [506] = { + [sym__expression] = STATE(4122), + [sym_block] = STATE(4122), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(4122), + [sym_nil] = STATE(4122), + [sym__atom] = STATE(4122), + [sym_quoted_atom] = STATE(4122), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4122), + [sym_call] = STATE(4122), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4122), + [sym_anonymous_function] = STATE(4122), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1809), + [sym_integer] = ACTIONS(1809), + [sym_float] = ACTIONS(1809), + [sym_char] = ACTIONS(1809), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1809), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [507] = { + [sym__expression] = STATE(4021), + [sym_block] = STATE(4021), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4021), + [sym_nil] = STATE(4021), + [sym__atom] = STATE(4021), + [sym_quoted_atom] = STATE(4021), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4021), + [sym_charlist] = STATE(4021), + [sym_sigil] = STATE(4021), + [sym_list] = STATE(4021), + [sym_tuple] = STATE(4021), + [sym_bitstring] = STATE(4021), + [sym_map] = STATE(4021), + [sym_unary_operator] = STATE(4021), + [sym_binary_operator] = STATE(4021), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(4021), + [sym_call] = STATE(4021), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4021), + [sym_anonymous_function] = STATE(4021), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1811), + [sym_integer] = ACTIONS(1811), + [sym_float] = ACTIONS(1811), + [sym_char] = ACTIONS(1811), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1811), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [508] = { + [sym__expression] = STATE(4026), + [sym_block] = STATE(4026), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4026), + [sym_nil] = STATE(4026), + [sym__atom] = STATE(4026), + [sym_quoted_atom] = STATE(4026), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4026), + [sym_charlist] = STATE(4026), + [sym_sigil] = STATE(4026), + [sym_list] = STATE(4026), + [sym_tuple] = STATE(4026), + [sym_bitstring] = STATE(4026), + [sym_map] = STATE(4026), + [sym_unary_operator] = STATE(4026), + [sym_binary_operator] = STATE(4026), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(4026), + [sym_call] = STATE(4026), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4026), + [sym_anonymous_function] = STATE(4026), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1813), + [sym_integer] = ACTIONS(1813), + [sym_float] = ACTIONS(1813), + [sym_char] = ACTIONS(1813), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1813), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [509] = { + [sym__expression] = STATE(3957), + [sym_block] = STATE(3957), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3957), + [sym_nil] = STATE(3957), + [sym__atom] = STATE(3957), + [sym_quoted_atom] = STATE(3957), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(3957), + [sym_charlist] = STATE(3957), + [sym_sigil] = STATE(3957), + [sym_list] = STATE(3957), + [sym_tuple] = STATE(3957), + [sym_bitstring] = STATE(3957), + [sym_map] = STATE(3957), + [sym_unary_operator] = STATE(3957), + [sym_binary_operator] = STATE(3957), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3957), + [sym_call] = STATE(3957), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3957), + [sym_anonymous_function] = STATE(3957), + [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_alias] = ACTIONS(1815), + [sym_integer] = ACTIONS(1815), + [sym_float] = ACTIONS(1815), + [sym_char] = ACTIONS(1815), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1815), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [510] = { + [sym__expression] = STATE(2347), + [sym_block] = STATE(2347), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2347), + [sym_nil] = STATE(2347), + [sym__atom] = STATE(2347), + [sym_quoted_atom] = STATE(2347), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2347), + [sym_charlist] = STATE(2347), + [sym_sigil] = STATE(2347), + [sym_list] = STATE(2347), + [sym_tuple] = STATE(2347), + [sym_bitstring] = STATE(2347), + [sym_map] = STATE(2347), + [sym_unary_operator] = STATE(2347), + [sym_binary_operator] = STATE(2347), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2347), + [sym_call] = STATE(2347), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2347), + [sym_anonymous_function] = STATE(2347), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1817), + [sym_integer] = ACTIONS(1817), + [sym_float] = ACTIONS(1817), + [sym_char] = ACTIONS(1817), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1817), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [511] = { + [sym__expression] = STATE(4092), + [sym_block] = STATE(4092), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(4092), + [sym_nil] = STATE(4092), + [sym__atom] = STATE(4092), + [sym_quoted_atom] = STATE(4092), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(4092), + [sym_charlist] = STATE(4092), + [sym_sigil] = STATE(4092), + [sym_list] = STATE(4092), + [sym_tuple] = STATE(4092), + [sym_bitstring] = STATE(4092), + [sym_map] = STATE(4092), + [sym_unary_operator] = STATE(4092), + [sym_binary_operator] = STATE(4092), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(4092), + [sym_call] = STATE(4092), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(4092), + [sym_anonymous_function] = STATE(4092), + [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_alias] = ACTIONS(1573), + [sym_integer] = ACTIONS(1573), + [sym_float] = ACTIONS(1573), + [sym_char] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1573), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [512] = { + [sym__expression] = STATE(4027), + [sym_block] = STATE(4027), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4027), + [sym_nil] = STATE(4027), + [sym__atom] = STATE(4027), + [sym_quoted_atom] = STATE(4027), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4027), + [sym_charlist] = STATE(4027), + [sym_sigil] = STATE(4027), + [sym_list] = STATE(4027), + [sym_tuple] = STATE(4027), + [sym_bitstring] = STATE(4027), + [sym_map] = STATE(4027), + [sym_unary_operator] = STATE(4027), + [sym_binary_operator] = STATE(4027), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(4027), + [sym_call] = STATE(4027), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4027), + [sym_anonymous_function] = STATE(4027), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1819), + [sym_integer] = ACTIONS(1819), + [sym_float] = ACTIONS(1819), + [sym_char] = ACTIONS(1819), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [513] = { + [sym__expression] = STATE(4028), + [sym_block] = STATE(4028), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4028), + [sym_nil] = STATE(4028), + [sym__atom] = STATE(4028), + [sym_quoted_atom] = STATE(4028), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4028), + [sym_charlist] = STATE(4028), + [sym_sigil] = STATE(4028), + [sym_list] = STATE(4028), + [sym_tuple] = STATE(4028), + [sym_bitstring] = STATE(4028), + [sym_map] = STATE(4028), + [sym_unary_operator] = STATE(4028), + [sym_binary_operator] = STATE(4028), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(4028), + [sym_call] = STATE(4028), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4028), + [sym_anonymous_function] = STATE(4028), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1821), + [sym_integer] = ACTIONS(1821), + [sym_float] = ACTIONS(1821), + [sym_char] = ACTIONS(1821), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1821), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [514] = { + [sym__expression] = STATE(4000), + [sym_block] = STATE(4000), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4000), + [sym_nil] = STATE(4000), + [sym__atom] = STATE(4000), + [sym_quoted_atom] = STATE(4000), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4000), + [sym_charlist] = STATE(4000), + [sym_sigil] = STATE(4000), + [sym_list] = STATE(4000), + [sym_tuple] = STATE(4000), + [sym_bitstring] = STATE(4000), + [sym_map] = STATE(4000), + [sym_unary_operator] = STATE(4000), + [sym_binary_operator] = STATE(4000), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(4000), + [sym_call] = STATE(4000), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4000), + [sym_anonymous_function] = STATE(4000), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1823), + [sym_integer] = ACTIONS(1823), + [sym_float] = ACTIONS(1823), + [sym_char] = ACTIONS(1823), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1823), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [515] = { + [sym__expression] = STATE(2816), + [sym_block] = STATE(2816), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2816), + [sym_nil] = STATE(2816), + [sym__atom] = STATE(2816), + [sym_quoted_atom] = STATE(2816), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [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_binary_operator] = STATE(2816), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2816), + [sym_call] = STATE(2816), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2816), + [sym_anonymous_function] = STATE(2816), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(1363), + [sym_integer] = ACTIONS(1363), + [sym_float] = ACTIONS(1363), + [sym_char] = ACTIONS(1363), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1363), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [516] = { + [sym__expression] = STATE(3956), + [sym_block] = STATE(3956), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3956), + [sym_nil] = STATE(3956), + [sym__atom] = STATE(3956), + [sym_quoted_atom] = STATE(3956), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(3956), + [sym_charlist] = STATE(3956), + [sym_sigil] = STATE(3956), + [sym_list] = STATE(3956), + [sym_tuple] = STATE(3956), + [sym_bitstring] = STATE(3956), + [sym_map] = STATE(3956), + [sym_unary_operator] = STATE(3956), + [sym_binary_operator] = STATE(3956), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3956), + [sym_call] = STATE(3956), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3956), + [sym_anonymous_function] = STATE(3956), + [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_alias] = ACTIONS(1825), + [sym_integer] = ACTIONS(1825), + [sym_float] = ACTIONS(1825), + [sym_char] = ACTIONS(1825), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1825), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [517] = { + [sym__expression] = STATE(4031), + [sym_block] = STATE(4031), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4031), + [sym_nil] = STATE(4031), + [sym__atom] = STATE(4031), + [sym_quoted_atom] = STATE(4031), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [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(5568), + [sym_dot] = STATE(4031), + [sym_call] = STATE(4031), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4031), + [sym_anonymous_function] = STATE(4031), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1827), + [sym_integer] = ACTIONS(1827), + [sym_float] = ACTIONS(1827), + [sym_char] = ACTIONS(1827), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1827), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [518] = { + [sym__expression] = STATE(3955), + [sym_block] = STATE(3955), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3955), + [sym_nil] = STATE(3955), + [sym__atom] = STATE(3955), + [sym_quoted_atom] = STATE(3955), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(3955), + [sym_charlist] = STATE(3955), + [sym_sigil] = STATE(3955), + [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(5643), + [sym_dot] = STATE(3955), + [sym_call] = STATE(3955), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3955), + [sym_anonymous_function] = STATE(3955), + [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_alias] = ACTIONS(1829), + [sym_integer] = ACTIONS(1829), + [sym_float] = ACTIONS(1829), + [sym_char] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1829), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [519] = { + [sym__expression] = STATE(3954), + [sym_block] = STATE(3954), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3954), + [sym_nil] = STATE(3954), + [sym__atom] = STATE(3954), + [sym_quoted_atom] = STATE(3954), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(3954), + [sym_charlist] = STATE(3954), + [sym_sigil] = STATE(3954), + [sym_list] = STATE(3954), + [sym_tuple] = STATE(3954), + [sym_bitstring] = STATE(3954), + [sym_map] = STATE(3954), + [sym_unary_operator] = STATE(3954), + [sym_binary_operator] = STATE(3954), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3954), + [sym_call] = STATE(3954), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3954), + [sym_anonymous_function] = STATE(3954), + [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_alias] = ACTIONS(1831), + [sym_integer] = ACTIONS(1831), + [sym_float] = ACTIONS(1831), + [sym_char] = ACTIONS(1831), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1831), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [520] = { + [sym__expression] = STATE(4032), + [sym_block] = STATE(4032), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4032), + [sym_nil] = STATE(4032), + [sym__atom] = STATE(4032), + [sym_quoted_atom] = STATE(4032), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4032), + [sym_charlist] = STATE(4032), + [sym_sigil] = STATE(4032), + [sym_list] = STATE(4032), + [sym_tuple] = STATE(4032), + [sym_bitstring] = STATE(4032), + [sym_map] = STATE(4032), + [sym_unary_operator] = STATE(4032), + [sym_binary_operator] = STATE(4032), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(4032), + [sym_call] = STATE(4032), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4032), + [sym_anonymous_function] = STATE(4032), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1833), + [sym_integer] = ACTIONS(1833), + [sym_float] = ACTIONS(1833), + [sym_char] = ACTIONS(1833), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [521] = { + [sym__expression] = STATE(4137), + [sym_block] = STATE(4137), + [sym_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(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4137), + [sym_call] = STATE(4137), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4137), + [sym_anonymous_function] = STATE(4137), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1835), + [sym_integer] = ACTIONS(1835), + [sym_float] = ACTIONS(1835), + [sym_char] = ACTIONS(1835), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [522] = { + [sym__expression] = STATE(3114), + [sym_block] = STATE(3114), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(3114), + [sym_nil] = STATE(3114), + [sym__atom] = STATE(3114), + [sym_quoted_atom] = STATE(3114), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(3114), + [sym_charlist] = STATE(3114), + [sym_sigil] = STATE(3114), + [sym_list] = STATE(3114), + [sym_tuple] = STATE(3114), + [sym_bitstring] = STATE(3114), + [sym_map] = STATE(3114), + [sym_unary_operator] = STATE(3114), + [sym_binary_operator] = STATE(3114), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(3114), + [sym_call] = STATE(3114), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3114), + [sym_anonymous_function] = STATE(3114), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(1837), + [sym_integer] = ACTIONS(1837), + [sym_float] = ACTIONS(1837), + [sym_char] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [523] = { + [sym__expression] = STATE(4044), + [sym_block] = STATE(4044), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4044), + [sym_nil] = STATE(4044), + [sym__atom] = STATE(4044), + [sym_quoted_atom] = STATE(4044), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [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(5568), + [sym_dot] = STATE(4044), + [sym_call] = STATE(4044), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4044), + [sym_anonymous_function] = STATE(4044), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1839), + [sym_integer] = ACTIONS(1839), + [sym_float] = ACTIONS(1839), + [sym_char] = ACTIONS(1839), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1839), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [524] = { + [sym__expression] = STATE(4046), + [sym_block] = STATE(4046), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4046), + [sym_nil] = STATE(4046), + [sym__atom] = STATE(4046), + [sym_quoted_atom] = STATE(4046), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [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(5568), + [sym_dot] = STATE(4046), + [sym_call] = STATE(4046), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4046), + [sym_anonymous_function] = STATE(4046), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1841), + [sym_integer] = ACTIONS(1841), + [sym_float] = ACTIONS(1841), + [sym_char] = ACTIONS(1841), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [525] = { + [sym__expression] = STATE(3953), + [sym_block] = STATE(3953), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3953), + [sym_nil] = STATE(3953), + [sym__atom] = STATE(3953), + [sym_quoted_atom] = STATE(3953), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(3953), + [sym_charlist] = STATE(3953), + [sym_sigil] = STATE(3953), + [sym_list] = STATE(3953), + [sym_tuple] = STATE(3953), + [sym_bitstring] = STATE(3953), + [sym_map] = STATE(3953), + [sym_unary_operator] = STATE(3953), + [sym_binary_operator] = STATE(3953), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3953), + [sym_call] = STATE(3953), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3953), + [sym_anonymous_function] = STATE(3953), + [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_alias] = ACTIONS(1843), + [sym_integer] = ACTIONS(1843), + [sym_float] = ACTIONS(1843), + [sym_char] = ACTIONS(1843), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [526] = { + [sym__expression] = STATE(4047), + [sym_block] = STATE(4047), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4047), + [sym_nil] = STATE(4047), + [sym__atom] = STATE(4047), + [sym_quoted_atom] = STATE(4047), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4047), + [sym_charlist] = STATE(4047), + [sym_sigil] = STATE(4047), + [sym_list] = STATE(4047), + [sym_tuple] = STATE(4047), + [sym_bitstring] = STATE(4047), + [sym_map] = STATE(4047), + [sym_unary_operator] = STATE(4047), + [sym_binary_operator] = STATE(4047), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(4047), + [sym_call] = STATE(4047), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4047), + [sym_anonymous_function] = STATE(4047), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1845), + [sym_integer] = ACTIONS(1845), + [sym_float] = ACTIONS(1845), + [sym_char] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1845), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [527] = { + [sym__expression] = STATE(3711), + [sym_block] = STATE(3711), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3711), + [sym_nil] = STATE(3711), + [sym__atom] = STATE(3711), + [sym_quoted_atom] = STATE(3711), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(3711), + [sym_call] = STATE(3711), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3711), + [sym_anonymous_function] = STATE(3711), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1847), + [sym_integer] = ACTIONS(1847), + [sym_float] = ACTIONS(1847), + [sym_char] = ACTIONS(1847), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [528] = { + [sym__expression] = STATE(4052), + [sym_block] = STATE(4052), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4052), + [sym_nil] = STATE(4052), + [sym__atom] = STATE(4052), + [sym_quoted_atom] = STATE(4052), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4052), + [sym_charlist] = STATE(4052), + [sym_sigil] = STATE(4052), + [sym_list] = STATE(4052), + [sym_tuple] = STATE(4052), + [sym_bitstring] = STATE(4052), + [sym_map] = STATE(4052), + [sym_unary_operator] = STATE(4052), + [sym_binary_operator] = STATE(4052), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(4052), + [sym_call] = STATE(4052), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4052), + [sym_anonymous_function] = STATE(4052), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1849), + [sym_integer] = ACTIONS(1849), + [sym_float] = ACTIONS(1849), + [sym_char] = ACTIONS(1849), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1849), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [529] = { + [sym__expression] = STATE(4053), + [sym_block] = STATE(4053), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4053), + [sym_nil] = STATE(4053), + [sym__atom] = STATE(4053), + [sym_quoted_atom] = STATE(4053), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4053), + [sym_charlist] = STATE(4053), + [sym_sigil] = STATE(4053), + [sym_list] = STATE(4053), + [sym_tuple] = STATE(4053), + [sym_bitstring] = STATE(4053), + [sym_map] = STATE(4053), + [sym_unary_operator] = STATE(4053), + [sym_binary_operator] = STATE(4053), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(4053), + [sym_call] = STATE(4053), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4053), + [sym_anonymous_function] = STATE(4053), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1851), + [sym_integer] = ACTIONS(1851), + [sym_float] = ACTIONS(1851), + [sym_char] = ACTIONS(1851), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1851), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [530] = { + [sym__expression] = STATE(4054), + [sym_block] = STATE(4054), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4054), + [sym_nil] = STATE(4054), + [sym__atom] = STATE(4054), + [sym_quoted_atom] = STATE(4054), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4054), + [sym_charlist] = STATE(4054), + [sym_sigil] = STATE(4054), + [sym_list] = STATE(4054), + [sym_tuple] = STATE(4054), + [sym_bitstring] = STATE(4054), + [sym_map] = STATE(4054), + [sym_unary_operator] = STATE(4054), + [sym_binary_operator] = STATE(4054), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(4054), + [sym_call] = STATE(4054), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4054), + [sym_anonymous_function] = STATE(4054), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1853), + [sym_integer] = ACTIONS(1853), + [sym_float] = ACTIONS(1853), + [sym_char] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [531] = { + [sym__expression] = STATE(3709), + [sym_block] = STATE(3709), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3709), + [sym_nil] = STATE(3709), + [sym__atom] = STATE(3709), + [sym_quoted_atom] = STATE(3709), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(3709), + [sym_call] = STATE(3709), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3709), + [sym_anonymous_function] = STATE(3709), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1855), + [sym_integer] = ACTIONS(1855), + [sym_float] = ACTIONS(1855), + [sym_char] = ACTIONS(1855), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1855), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [532] = { + [sym__expression] = STATE(4079), + [sym_block] = STATE(4079), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4079), + [sym_nil] = STATE(4079), + [sym__atom] = STATE(4079), + [sym_quoted_atom] = STATE(4079), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [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(5568), + [sym_dot] = STATE(4079), + [sym_call] = STATE(4079), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4079), + [sym_anonymous_function] = STATE(4079), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1857), + [sym_integer] = ACTIONS(1857), + [sym_float] = ACTIONS(1857), + [sym_char] = ACTIONS(1857), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1857), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [533] = { + [sym__expression] = STATE(4083), + [sym_block] = STATE(4083), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4083), + [sym_nil] = STATE(4083), + [sym__atom] = STATE(4083), + [sym_quoted_atom] = STATE(4083), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4083), + [sym_charlist] = STATE(4083), + [sym_sigil] = STATE(4083), + [sym_list] = STATE(4083), + [sym_tuple] = STATE(4083), + [sym_bitstring] = STATE(4083), + [sym_map] = STATE(4083), + [sym_unary_operator] = STATE(4083), + [sym_binary_operator] = STATE(4083), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(4083), + [sym_call] = STATE(4083), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4083), + [sym_anonymous_function] = STATE(4083), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1859), + [sym_integer] = ACTIONS(1859), + [sym_float] = ACTIONS(1859), + [sym_char] = ACTIONS(1859), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [534] = { + [sym__expression] = STATE(3486), + [sym_block] = STATE(3486), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3486), + [sym_nil] = STATE(3486), + [sym__atom] = STATE(3486), + [sym_quoted_atom] = STATE(3486), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(3486), + [sym_charlist] = STATE(3486), + [sym_sigil] = STATE(3486), + [sym_list] = STATE(3486), + [sym_tuple] = STATE(3486), + [sym_bitstring] = STATE(3486), + [sym_map] = STATE(3486), + [sym_unary_operator] = STATE(3486), + [sym_binary_operator] = STATE(3486), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(3486), + [sym_call] = STATE(3486), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3486), + [sym_anonymous_function] = STATE(3486), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1861), + [sym_integer] = ACTIONS(1861), + [sym_float] = ACTIONS(1861), + [sym_char] = ACTIONS(1861), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [535] = { + [sym__expression] = STATE(1581), + [sym_block] = STATE(1581), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1581), + [sym_nil] = STATE(1581), + [sym__atom] = STATE(1581), + [sym_quoted_atom] = STATE(1581), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1581), + [sym_charlist] = STATE(1581), + [sym_sigil] = STATE(1581), + [sym_list] = STATE(1581), + [sym_tuple] = STATE(1581), + [sym_bitstring] = STATE(1581), + [sym_map] = STATE(1581), + [sym_unary_operator] = STATE(1581), + [sym_binary_operator] = STATE(1581), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1581), + [sym_call] = STATE(1581), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1581), + [sym_anonymous_function] = STATE(1581), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1863), + [sym_integer] = ACTIONS(1863), + [sym_float] = ACTIONS(1863), + [sym_char] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [536] = { + [sym__expression] = STATE(4142), + [sym_block] = STATE(4142), + [sym_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(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4142), + [sym_call] = STATE(4142), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4142), + [sym_anonymous_function] = STATE(4142), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1865), + [sym_integer] = ACTIONS(1865), + [sym_float] = ACTIONS(1865), + [sym_char] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1865), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [537] = { + [sym__expression] = STATE(3708), + [sym_block] = STATE(3708), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3708), + [sym_nil] = STATE(3708), + [sym__atom] = STATE(3708), + [sym_quoted_atom] = STATE(3708), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(3708), + [sym_call] = STATE(3708), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3708), + [sym_anonymous_function] = STATE(3708), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1867), + [sym_integer] = ACTIONS(1867), + [sym_float] = ACTIONS(1867), + [sym_char] = ACTIONS(1867), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [538] = { + [sym__expression] = STATE(4128), + [sym_block] = STATE(4128), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(4128), + [sym_nil] = STATE(4128), + [sym__atom] = STATE(4128), + [sym_quoted_atom] = STATE(4128), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(4128), + [sym_charlist] = STATE(4128), + [sym_sigil] = STATE(4128), + [sym_list] = STATE(4128), + [sym_tuple] = STATE(4128), + [sym_bitstring] = STATE(4128), + [sym_map] = STATE(4128), + [sym_unary_operator] = STATE(4128), + [sym_binary_operator] = STATE(4128), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(4128), + [sym_call] = STATE(4128), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(4128), + [sym_anonymous_function] = STATE(4128), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1869), + [sym_integer] = ACTIONS(1869), + [sym_float] = ACTIONS(1869), + [sym_char] = ACTIONS(1869), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [539] = { + [sym__expression] = STATE(4132), + [sym_block] = STATE(4132), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(4132), + [sym_nil] = STATE(4132), + [sym__atom] = STATE(4132), + [sym_quoted_atom] = STATE(4132), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [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(5576), + [sym_dot] = STATE(4132), + [sym_call] = STATE(4132), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(4132), + [sym_anonymous_function] = STATE(4132), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1871), + [sym_integer] = ACTIONS(1871), + [sym_float] = ACTIONS(1871), + [sym_char] = ACTIONS(1871), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [540] = { + [sym__expression] = STATE(3707), + [sym_block] = STATE(3707), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3707), + [sym_nil] = STATE(3707), + [sym__atom] = STATE(3707), + [sym_quoted_atom] = STATE(3707), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(3707), + [sym_call] = STATE(3707), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3707), + [sym_anonymous_function] = STATE(3707), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1873), + [sym_integer] = ACTIONS(1873), + [sym_float] = ACTIONS(1873), + [sym_char] = ACTIONS(1873), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [541] = { + [sym__expression] = STATE(3705), + [sym_block] = STATE(3705), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3705), + [sym_nil] = STATE(3705), + [sym__atom] = STATE(3705), + [sym_quoted_atom] = STATE(3705), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3705), + [sym_charlist] = STATE(3705), + [sym_sigil] = STATE(3705), + [sym_list] = STATE(3705), + [sym_tuple] = STATE(3705), + [sym_bitstring] = STATE(3705), + [sym_map] = STATE(3705), + [sym_unary_operator] = STATE(3705), + [sym_binary_operator] = STATE(3705), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3705), + [sym_call] = STATE(3705), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3705), + [sym_anonymous_function] = STATE(3705), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1875), + [sym_integer] = ACTIONS(1875), + [sym_float] = ACTIONS(1875), + [sym_char] = ACTIONS(1875), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [542] = { + [sym__expression] = STATE(2153), + [sym_block] = STATE(2153), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2153), + [sym_nil] = STATE(2153), + [sym__atom] = STATE(2153), + [sym_quoted_atom] = STATE(2153), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [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(5608), + [sym_dot] = STATE(2153), + [sym_call] = STATE(2153), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2153), + [sym_anonymous_function] = STATE(2153), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [543] = { + [sym__expression] = STATE(2151), + [sym_block] = STATE(2151), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2151), + [sym_nil] = STATE(2151), + [sym__atom] = STATE(2151), + [sym_quoted_atom] = STATE(2151), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2151), + [sym_charlist] = STATE(2151), + [sym_sigil] = STATE(2151), + [sym_list] = STATE(2151), + [sym_tuple] = STATE(2151), + [sym_bitstring] = STATE(2151), + [sym_map] = STATE(2151), + [sym_unary_operator] = STATE(2151), + [sym_binary_operator] = STATE(2151), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2151), + [sym_call] = STATE(2151), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2151), + [sym_anonymous_function] = STATE(2151), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1879), + [sym_integer] = ACTIONS(1879), + [sym_float] = ACTIONS(1879), + [sym_char] = ACTIONS(1879), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [544] = { + [sym__expression] = STATE(2627), + [sym_block] = STATE(2627), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2627), + [sym_nil] = STATE(2627), + [sym__atom] = STATE(2627), + [sym_quoted_atom] = STATE(2627), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2627), + [sym_charlist] = STATE(2627), + [sym_sigil] = STATE(2627), + [sym_list] = STATE(2627), + [sym_tuple] = STATE(2627), + [sym_bitstring] = STATE(2627), + [sym_map] = STATE(2627), + [sym_unary_operator] = STATE(2627), + [sym_binary_operator] = STATE(2627), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(2627), + [sym_call] = STATE(2627), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2627), + [sym_anonymous_function] = STATE(2627), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(1315), + [sym_integer] = ACTIONS(1315), + [sym_float] = ACTIONS(1315), + [sym_char] = ACTIONS(1315), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1315), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [545] = { + [sym__expression] = STATE(2136), + [sym_block] = STATE(2136), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2136), + [sym_nil] = STATE(2136), + [sym__atom] = STATE(2136), + [sym_quoted_atom] = STATE(2136), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2136), + [sym_charlist] = STATE(2136), + [sym_sigil] = STATE(2136), + [sym_list] = STATE(2136), + [sym_tuple] = STATE(2136), + [sym_bitstring] = STATE(2136), + [sym_map] = STATE(2136), + [sym_unary_operator] = STATE(2136), + [sym_binary_operator] = STATE(2136), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2136), + [sym_call] = STATE(2136), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2136), + [sym_anonymous_function] = STATE(2136), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1881), + [sym_integer] = ACTIONS(1881), + [sym_float] = ACTIONS(1881), + [sym_char] = ACTIONS(1881), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [546] = { + [sym__expression] = STATE(2133), + [sym_block] = STATE(2133), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2133), + [sym_nil] = STATE(2133), + [sym__atom] = STATE(2133), + [sym_quoted_atom] = STATE(2133), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2133), + [sym_charlist] = STATE(2133), + [sym_sigil] = STATE(2133), + [sym_list] = STATE(2133), + [sym_tuple] = STATE(2133), + [sym_bitstring] = STATE(2133), + [sym_map] = STATE(2133), + [sym_unary_operator] = STATE(2133), + [sym_binary_operator] = STATE(2133), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2133), + [sym_call] = STATE(2133), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2133), + [sym_anonymous_function] = STATE(2133), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1883), + [sym_integer] = ACTIONS(1883), + [sym_float] = ACTIONS(1883), + [sym_char] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1883), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [547] = { + [sym__expression] = STATE(3704), + [sym_block] = STATE(3704), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3704), + [sym_nil] = STATE(3704), + [sym__atom] = STATE(3704), + [sym_quoted_atom] = STATE(3704), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(3704), + [sym_call] = STATE(3704), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3704), + [sym_anonymous_function] = STATE(3704), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1885), + [sym_integer] = ACTIONS(1885), + [sym_float] = ACTIONS(1885), + [sym_char] = ACTIONS(1885), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [548] = { + [sym__expression] = STATE(4145), + [sym_block] = STATE(4145), + [sym_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(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4145), + [sym_call] = STATE(4145), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4145), + [sym_anonymous_function] = STATE(4145), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1887), + [sym_integer] = ACTIONS(1887), + [sym_float] = ACTIONS(1887), + [sym_char] = ACTIONS(1887), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [549] = { + [sym__expression] = STATE(2286), + [sym_block] = STATE(2286), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2286), + [sym_nil] = STATE(2286), + [sym__atom] = STATE(2286), + [sym_quoted_atom] = STATE(2286), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2286), + [sym_charlist] = STATE(2286), + [sym_sigil] = STATE(2286), + [sym_list] = STATE(2286), + [sym_tuple] = STATE(2286), + [sym_bitstring] = STATE(2286), + [sym_map] = STATE(2286), + [sym_unary_operator] = STATE(2286), + [sym_binary_operator] = STATE(2286), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2286), + [sym_call] = STATE(2286), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2286), + [sym_anonymous_function] = STATE(2286), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1889), + [sym_integer] = ACTIONS(1889), + [sym_float] = ACTIONS(1889), + [sym_char] = ACTIONS(1889), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1889), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [550] = { + [sym__expression] = STATE(2287), + [sym_block] = STATE(2287), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2287), + [sym_nil] = STATE(2287), + [sym__atom] = STATE(2287), + [sym_quoted_atom] = STATE(2287), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2287), + [sym_charlist] = STATE(2287), + [sym_sigil] = STATE(2287), + [sym_list] = STATE(2287), + [sym_tuple] = STATE(2287), + [sym_bitstring] = STATE(2287), + [sym_map] = STATE(2287), + [sym_unary_operator] = STATE(2287), + [sym_binary_operator] = STATE(2287), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2287), + [sym_call] = STATE(2287), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2287), + [sym_anonymous_function] = STATE(2287), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1891), + [sym_integer] = ACTIONS(1891), + [sym_float] = ACTIONS(1891), + [sym_char] = ACTIONS(1891), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1891), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [551] = { + [sym__expression] = STATE(3703), + [sym_block] = STATE(3703), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3703), + [sym_nil] = STATE(3703), + [sym__atom] = STATE(3703), + [sym_quoted_atom] = STATE(3703), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3703), + [sym_charlist] = STATE(3703), + [sym_sigil] = STATE(3703), + [sym_list] = STATE(3703), + [sym_tuple] = STATE(3703), + [sym_bitstring] = STATE(3703), + [sym_map] = STATE(3703), + [sym_unary_operator] = STATE(3703), + [sym_binary_operator] = STATE(3703), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3703), + [sym_call] = STATE(3703), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3703), + [sym_anonymous_function] = STATE(3703), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1893), + [sym_integer] = ACTIONS(1893), + [sym_float] = ACTIONS(1893), + [sym_char] = ACTIONS(1893), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [552] = { + [sym__expression] = STATE(4121), + [sym_block] = STATE(4121), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(4121), + [sym_nil] = STATE(4121), + [sym__atom] = STATE(4121), + [sym_quoted_atom] = STATE(4121), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(4121), + [sym_charlist] = STATE(4121), + [sym_sigil] = STATE(4121), + [sym_list] = STATE(4121), + [sym_tuple] = STATE(4121), + [sym_bitstring] = STATE(4121), + [sym_map] = STATE(4121), + [sym_unary_operator] = STATE(4121), + [sym_binary_operator] = STATE(4121), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4121), + [sym_call] = STATE(4121), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4121), + [sym_anonymous_function] = STATE(4121), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1895), + [sym_integer] = ACTIONS(1895), + [sym_float] = ACTIONS(1895), + [sym_char] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [553] = { + [sym__expression] = STATE(3484), + [sym_block] = STATE(3484), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3484), + [sym_nil] = STATE(3484), + [sym__atom] = STATE(3484), + [sym_quoted_atom] = STATE(3484), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(3484), + [sym_charlist] = STATE(3484), + [sym_sigil] = STATE(3484), + [sym_list] = STATE(3484), + [sym_tuple] = STATE(3484), + [sym_bitstring] = STATE(3484), + [sym_map] = STATE(3484), + [sym_unary_operator] = STATE(3484), + [sym_binary_operator] = STATE(3484), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(3484), + [sym_call] = STATE(3484), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3484), + [sym_anonymous_function] = STATE(3484), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1897), + [sym_integer] = ACTIONS(1897), + [sym_float] = ACTIONS(1897), + [sym_char] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1897), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [554] = { + [sym__expression] = STATE(1589), + [sym_block] = STATE(1589), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(1589), + [sym_nil] = STATE(1589), + [sym__atom] = STATE(1589), + [sym_quoted_atom] = STATE(1589), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [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(5565), + [sym_dot] = STATE(1589), + [sym_call] = STATE(1589), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1589), + [sym_anonymous_function] = STATE(1589), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1899), + [sym_integer] = ACTIONS(1899), + [sym_float] = ACTIONS(1899), + [sym_char] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [555] = { + [sym__expression] = STATE(2279), + [sym_block] = STATE(2279), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2279), + [sym_nil] = STATE(2279), + [sym__atom] = STATE(2279), + [sym_quoted_atom] = STATE(2279), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2279), + [sym_charlist] = STATE(2279), + [sym_sigil] = STATE(2279), + [sym_list] = STATE(2279), + [sym_tuple] = STATE(2279), + [sym_bitstring] = STATE(2279), + [sym_map] = STATE(2279), + [sym_unary_operator] = STATE(2279), + [sym_binary_operator] = STATE(2279), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(2279), + [sym_call] = STATE(2279), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2279), + [sym_anonymous_function] = STATE(2279), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(1901), + [sym_integer] = ACTIONS(1901), + [sym_float] = ACTIONS(1901), + [sym_char] = ACTIONS(1901), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1901), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [556] = { + [sym__expression] = STATE(2290), + [sym_block] = STATE(2290), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2290), + [sym_nil] = STATE(2290), + [sym__atom] = STATE(2290), + [sym_quoted_atom] = STATE(2290), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2290), + [sym_charlist] = STATE(2290), + [sym_sigil] = STATE(2290), + [sym_list] = STATE(2290), + [sym_tuple] = STATE(2290), + [sym_bitstring] = STATE(2290), + [sym_map] = STATE(2290), + [sym_unary_operator] = STATE(2290), + [sym_binary_operator] = STATE(2290), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2290), + [sym_call] = STATE(2290), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2290), + [sym_anonymous_function] = STATE(2290), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1903), + [sym_integer] = ACTIONS(1903), + [sym_float] = ACTIONS(1903), + [sym_char] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1903), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [557] = { + [sym__expression] = STATE(1339), + [sym_block] = STATE(1339), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1339), + [sym_nil] = STATE(1339), + [sym__atom] = STATE(1339), + [sym_quoted_atom] = STATE(1339), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1339), + [sym_charlist] = STATE(1339), + [sym_sigil] = STATE(1339), + [sym_list] = STATE(1339), + [sym_tuple] = STATE(1339), + [sym_bitstring] = STATE(1339), + [sym_map] = STATE(1339), + [sym_unary_operator] = STATE(1339), + [sym_binary_operator] = STATE(1339), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1339), + [sym_call] = STATE(1339), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1339), + [sym_anonymous_function] = STATE(1339), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1905), + [sym_integer] = ACTIONS(1905), + [sym_float] = ACTIONS(1905), + [sym_char] = ACTIONS(1905), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1905), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [558] = { + [sym__expression] = STATE(2280), + [sym_block] = STATE(2280), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2280), + [sym_nil] = STATE(2280), + [sym__atom] = STATE(2280), + [sym_quoted_atom] = STATE(2280), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2280), + [sym_charlist] = STATE(2280), + [sym_sigil] = STATE(2280), + [sym_list] = STATE(2280), + [sym_tuple] = STATE(2280), + [sym_bitstring] = STATE(2280), + [sym_map] = STATE(2280), + [sym_unary_operator] = STATE(2280), + [sym_binary_operator] = STATE(2280), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(2280), + [sym_call] = STATE(2280), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2280), + [sym_anonymous_function] = STATE(2280), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(1907), + [sym_integer] = ACTIONS(1907), + [sym_float] = ACTIONS(1907), + [sym_char] = ACTIONS(1907), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1907), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [559] = { + [sym__expression] = STATE(1442), + [sym_block] = STATE(1442), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1442), + [sym_nil] = STATE(1442), + [sym__atom] = STATE(1442), + [sym_quoted_atom] = STATE(1442), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1442), + [sym_charlist] = STATE(1442), + [sym_sigil] = STATE(1442), + [sym_list] = STATE(1442), + [sym_tuple] = STATE(1442), + [sym_bitstring] = STATE(1442), + [sym_map] = STATE(1442), + [sym_unary_operator] = STATE(1442), + [sym_binary_operator] = STATE(1442), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1442), + [sym_call] = STATE(1442), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1442), + [sym_anonymous_function] = STATE(1442), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1909), + [sym_integer] = ACTIONS(1909), + [sym_float] = ACTIONS(1909), + [sym_char] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1909), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [560] = { + [sym__expression] = STATE(1443), + [sym_block] = STATE(1443), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1443), + [sym_nil] = STATE(1443), + [sym__atom] = STATE(1443), + [sym_quoted_atom] = STATE(1443), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1443), + [sym_charlist] = STATE(1443), + [sym_sigil] = STATE(1443), + [sym_list] = STATE(1443), + [sym_tuple] = STATE(1443), + [sym_bitstring] = STATE(1443), + [sym_map] = STATE(1443), + [sym_unary_operator] = STATE(1443), + [sym_binary_operator] = STATE(1443), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1443), + [sym_call] = STATE(1443), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1443), + [sym_anonymous_function] = STATE(1443), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1911), + [sym_integer] = ACTIONS(1911), + [sym_float] = ACTIONS(1911), + [sym_char] = ACTIONS(1911), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1911), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [561] = { + [sym__expression] = STATE(1482), + [sym_block] = STATE(1482), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1482), + [sym_nil] = STATE(1482), + [sym__atom] = STATE(1482), + [sym_quoted_atom] = STATE(1482), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1482), + [sym_charlist] = STATE(1482), + [sym_sigil] = STATE(1482), + [sym_list] = STATE(1482), + [sym_tuple] = STATE(1482), + [sym_bitstring] = STATE(1482), + [sym_map] = STATE(1482), + [sym_unary_operator] = STATE(1482), + [sym_binary_operator] = STATE(1482), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1482), + [sym_call] = STATE(1482), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1482), + [sym_anonymous_function] = STATE(1482), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1913), + [sym_integer] = ACTIONS(1913), + [sym_float] = ACTIONS(1913), + [sym_char] = ACTIONS(1913), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1913), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [562] = { + [sym__expression] = STATE(3687), + [sym_block] = STATE(3687), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3687), + [sym_nil] = STATE(3687), + [sym__atom] = STATE(3687), + [sym_quoted_atom] = STATE(3687), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [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(5643), + [sym_dot] = STATE(3687), + [sym_call] = STATE(3687), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3687), + [sym_anonymous_function] = STATE(3687), + [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_alias] = ACTIONS(1915), + [sym_integer] = ACTIONS(1915), + [sym_float] = ACTIONS(1915), + [sym_char] = ACTIONS(1915), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1915), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [563] = { + [sym__expression] = STATE(2291), + [sym_block] = STATE(2291), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2291), + [sym_nil] = STATE(2291), + [sym__atom] = STATE(2291), + [sym_quoted_atom] = STATE(2291), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2291), + [sym_charlist] = STATE(2291), + [sym_sigil] = STATE(2291), + [sym_list] = STATE(2291), + [sym_tuple] = STATE(2291), + [sym_bitstring] = STATE(2291), + [sym_map] = STATE(2291), + [sym_unary_operator] = STATE(2291), + [sym_binary_operator] = STATE(2291), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2291), + [sym_call] = STATE(2291), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2291), + [sym_anonymous_function] = STATE(2291), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1917), + [sym_integer] = ACTIONS(1917), + [sym_float] = ACTIONS(1917), + [sym_char] = ACTIONS(1917), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1917), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [564] = { + [sym__expression] = STATE(2292), + [sym_block] = STATE(2292), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2292), + [sym_nil] = STATE(2292), + [sym__atom] = STATE(2292), + [sym_quoted_atom] = STATE(2292), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [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(5608), + [sym_dot] = STATE(2292), + [sym_call] = STATE(2292), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2292), + [sym_anonymous_function] = STATE(2292), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1919), + [sym_integer] = ACTIONS(1919), + [sym_float] = ACTIONS(1919), + [sym_char] = ACTIONS(1919), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1919), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [565] = { + [sym__expression] = STATE(2281), + [sym_block] = STATE(2281), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2281), + [sym_nil] = STATE(2281), + [sym__atom] = STATE(2281), + [sym_quoted_atom] = STATE(2281), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2281), + [sym_charlist] = STATE(2281), + [sym_sigil] = STATE(2281), + [sym_list] = STATE(2281), + [sym_tuple] = STATE(2281), + [sym_bitstring] = STATE(2281), + [sym_map] = STATE(2281), + [sym_unary_operator] = STATE(2281), + [sym_binary_operator] = STATE(2281), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(2281), + [sym_call] = STATE(2281), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2281), + [sym_anonymous_function] = STATE(2281), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(1921), + [sym_integer] = ACTIONS(1921), + [sym_float] = ACTIONS(1921), + [sym_char] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1921), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [566] = { + [sym__expression] = STATE(2295), + [sym_block] = STATE(2295), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2295), + [sym_nil] = STATE(2295), + [sym__atom] = STATE(2295), + [sym_quoted_atom] = STATE(2295), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [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(5608), + [sym_dot] = STATE(2295), + [sym_call] = STATE(2295), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2295), + [sym_anonymous_function] = STATE(2295), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1923), + [sym_integer] = ACTIONS(1923), + [sym_float] = ACTIONS(1923), + [sym_char] = ACTIONS(1923), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1923), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [567] = { + [sym__expression] = STATE(2296), + [sym_block] = STATE(2296), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2296), + [sym_nil] = STATE(2296), + [sym__atom] = STATE(2296), + [sym_quoted_atom] = STATE(2296), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [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(5608), + [sym_dot] = STATE(2296), + [sym_call] = STATE(2296), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2296), + [sym_anonymous_function] = STATE(2296), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1925), + [sym_integer] = ACTIONS(1925), + [sym_float] = ACTIONS(1925), + [sym_char] = ACTIONS(1925), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1925), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [568] = { + [sym__expression] = STATE(3952), + [sym_block] = STATE(3952), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3952), + [sym_nil] = STATE(3952), + [sym__atom] = STATE(3952), + [sym_quoted_atom] = STATE(3952), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(3952), + [sym_charlist] = STATE(3952), + [sym_sigil] = STATE(3952), + [sym_list] = STATE(3952), + [sym_tuple] = STATE(3952), + [sym_bitstring] = STATE(3952), + [sym_map] = STATE(3952), + [sym_unary_operator] = STATE(3952), + [sym_binary_operator] = STATE(3952), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3952), + [sym_call] = STATE(3952), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3952), + [sym_anonymous_function] = STATE(3952), + [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_alias] = ACTIONS(1927), + [sym_integer] = ACTIONS(1927), + [sym_float] = ACTIONS(1927), + [sym_char] = ACTIONS(1927), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(1927), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [569] = { + [sym__expression] = STATE(2297), + [sym_block] = STATE(2297), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2297), + [sym_nil] = STATE(2297), + [sym__atom] = STATE(2297), + [sym_quoted_atom] = STATE(2297), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2297), + [sym_charlist] = STATE(2297), + [sym_sigil] = STATE(2297), + [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(5608), + [sym_dot] = STATE(2297), + [sym_call] = STATE(2297), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2297), + [sym_anonymous_function] = STATE(2297), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1929), + [sym_integer] = ACTIONS(1929), + [sym_float] = ACTIONS(1929), + [sym_char] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1929), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [570] = { + [sym__expression] = STATE(2298), + [sym_block] = STATE(2298), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2298), + [sym_nil] = STATE(2298), + [sym__atom] = STATE(2298), + [sym_quoted_atom] = STATE(2298), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [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(5608), + [sym_dot] = STATE(2298), + [sym_call] = STATE(2298), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2298), + [sym_anonymous_function] = STATE(2298), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1931), + [sym_integer] = ACTIONS(1931), + [sym_float] = ACTIONS(1931), + [sym_char] = ACTIONS(1931), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1931), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [571] = { + [sym__expression] = STATE(4135), + [sym_block] = STATE(4135), + [sym_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(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4135), + [sym_call] = STATE(4135), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4135), + [sym_anonymous_function] = STATE(4135), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(1933), + [sym_integer] = ACTIONS(1933), + [sym_float] = ACTIONS(1933), + [sym_char] = ACTIONS(1933), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(1933), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [572] = { + [sym__expression] = STATE(2299), + [sym_block] = STATE(2299), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2299), + [sym_nil] = STATE(2299), + [sym__atom] = STATE(2299), + [sym_quoted_atom] = STATE(2299), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [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(5608), + [sym_dot] = STATE(2299), + [sym_call] = STATE(2299), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2299), + [sym_anonymous_function] = STATE(2299), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1935), + [sym_integer] = ACTIONS(1935), + [sym_float] = ACTIONS(1935), + [sym_char] = ACTIONS(1935), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1935), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [573] = { + [sym__expression] = STATE(1448), + [sym_block] = STATE(1448), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1448), + [sym_nil] = STATE(1448), + [sym__atom] = STATE(1448), + [sym_quoted_atom] = STATE(1448), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1448), + [sym_charlist] = STATE(1448), + [sym_sigil] = STATE(1448), + [sym_list] = STATE(1448), + [sym_tuple] = STATE(1448), + [sym_bitstring] = STATE(1448), + [sym_map] = STATE(1448), + [sym_unary_operator] = STATE(1448), + [sym_binary_operator] = STATE(1448), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1448), + [sym_call] = STATE(1448), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1448), + [sym_anonymous_function] = STATE(1448), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1937), + [sym_integer] = ACTIONS(1937), + [sym_float] = ACTIONS(1937), + [sym_char] = ACTIONS(1937), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1937), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [574] = { + [sym__expression] = STATE(2300), + [sym_block] = STATE(2300), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2300), + [sym_nil] = STATE(2300), + [sym__atom] = STATE(2300), + [sym_quoted_atom] = STATE(2300), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [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(5608), + [sym_dot] = STATE(2300), + [sym_call] = STATE(2300), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2300), + [sym_anonymous_function] = STATE(2300), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1939), + [sym_integer] = ACTIONS(1939), + [sym_float] = ACTIONS(1939), + [sym_char] = ACTIONS(1939), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1939), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [575] = { + [sym__expression] = STATE(1449), + [sym_block] = STATE(1449), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1449), + [sym_nil] = STATE(1449), + [sym__atom] = STATE(1449), + [sym_quoted_atom] = STATE(1449), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1449), + [sym_charlist] = STATE(1449), + [sym_sigil] = STATE(1449), + [sym_list] = STATE(1449), + [sym_tuple] = STATE(1449), + [sym_bitstring] = STATE(1449), + [sym_map] = STATE(1449), + [sym_unary_operator] = STATE(1449), + [sym_binary_operator] = STATE(1449), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1449), + [sym_call] = STATE(1449), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1449), + [sym_anonymous_function] = STATE(1449), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1941), + [sym_integer] = ACTIONS(1941), + [sym_float] = ACTIONS(1941), + [sym_char] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1941), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [576] = { + [sym__expression] = STATE(2301), + [sym_block] = STATE(2301), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2301), + [sym_nil] = STATE(2301), + [sym__atom] = STATE(2301), + [sym_quoted_atom] = STATE(2301), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [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(5608), + [sym_dot] = STATE(2301), + [sym_call] = STATE(2301), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2301), + [sym_anonymous_function] = STATE(2301), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1943), + [sym_integer] = ACTIONS(1943), + [sym_float] = ACTIONS(1943), + [sym_char] = ACTIONS(1943), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1943), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [577] = { + [sym__expression] = STATE(3390), + [sym_block] = STATE(3390), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3390), + [sym_nil] = STATE(3390), + [sym__atom] = STATE(3390), + [sym_quoted_atom] = STATE(3390), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [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(5565), + [sym_dot] = STATE(3390), + [sym_call] = STATE(3390), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3390), + [sym_anonymous_function] = STATE(3390), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1945), + [sym_integer] = ACTIONS(1945), + [sym_float] = ACTIONS(1945), + [sym_char] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1945), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [578] = { + [sym__expression] = STATE(3266), + [sym_block] = STATE(3266), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3266), + [sym_nil] = STATE(3266), + [sym__atom] = STATE(3266), + [sym_quoted_atom] = STATE(3266), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(3266), + [sym_charlist] = STATE(3266), + [sym_sigil] = STATE(3266), + [sym_list] = STATE(3266), + [sym_tuple] = STATE(3266), + [sym_bitstring] = STATE(3266), + [sym_map] = STATE(3266), + [sym_unary_operator] = STATE(3266), + [sym_binary_operator] = STATE(3266), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(3266), + [sym_call] = STATE(3266), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3266), + [sym_anonymous_function] = STATE(3266), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1947), + [sym_integer] = ACTIONS(1947), + [sym_float] = ACTIONS(1947), + [sym_char] = ACTIONS(1947), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1947), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [579] = { + [sym__expression] = STATE(2282), + [sym_block] = STATE(2282), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2282), + [sym_nil] = STATE(2282), + [sym__atom] = STATE(2282), + [sym_quoted_atom] = STATE(2282), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2282), + [sym_charlist] = STATE(2282), + [sym_sigil] = STATE(2282), + [sym_list] = STATE(2282), + [sym_tuple] = STATE(2282), + [sym_bitstring] = STATE(2282), + [sym_map] = STATE(2282), + [sym_unary_operator] = STATE(2282), + [sym_binary_operator] = STATE(2282), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(2282), + [sym_call] = STATE(2282), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2282), + [sym_anonymous_function] = STATE(2282), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(1949), + [sym_integer] = ACTIONS(1949), + [sym_float] = ACTIONS(1949), + [sym_char] = ACTIONS(1949), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1949), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [580] = { + [sym__expression] = STATE(3387), + [sym_block] = STATE(3387), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3387), + [sym_nil] = STATE(3387), + [sym__atom] = STATE(3387), + [sym_quoted_atom] = STATE(3387), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [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(5565), + [sym_dot] = STATE(3387), + [sym_call] = STATE(3387), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3387), + [sym_anonymous_function] = STATE(3387), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1951), + [sym_integer] = ACTIONS(1951), + [sym_float] = ACTIONS(1951), + [sym_char] = ACTIONS(1951), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1951), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [581] = { + [sym__expression] = STATE(3386), + [sym_block] = STATE(3386), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3386), + [sym_nil] = STATE(3386), + [sym__atom] = STATE(3386), + [sym_quoted_atom] = STATE(3386), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [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(5565), + [sym_dot] = STATE(3386), + [sym_call] = STATE(3386), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3386), + [sym_anonymous_function] = STATE(3386), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1953), + [sym_integer] = ACTIONS(1953), + [sym_float] = ACTIONS(1953), + [sym_char] = ACTIONS(1953), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1953), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [582] = { + [sym__expression] = STATE(3385), + [sym_block] = STATE(3385), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3385), + [sym_nil] = STATE(3385), + [sym__atom] = STATE(3385), + [sym_quoted_atom] = STATE(3385), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [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(5565), + [sym_dot] = STATE(3385), + [sym_call] = STATE(3385), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3385), + [sym_anonymous_function] = STATE(3385), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1955), + [sym_integer] = ACTIONS(1955), + [sym_float] = ACTIONS(1955), + [sym_char] = ACTIONS(1955), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1955), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [583] = { + [sym__expression] = STATE(3702), + [sym_block] = STATE(3702), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3702), + [sym_nil] = STATE(3702), + [sym__atom] = STATE(3702), + [sym_quoted_atom] = STATE(3702), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3702), + [sym_charlist] = STATE(3702), + [sym_sigil] = STATE(3702), + [sym_list] = STATE(3702), + [sym_tuple] = STATE(3702), + [sym_bitstring] = STATE(3702), + [sym_map] = STATE(3702), + [sym_unary_operator] = STATE(3702), + [sym_binary_operator] = STATE(3702), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3702), + [sym_call] = STATE(3702), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3702), + [sym_anonymous_function] = STATE(3702), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1957), + [sym_integer] = ACTIONS(1957), + [sym_float] = ACTIONS(1957), + [sym_char] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1957), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [584] = { + [sym__expression] = STATE(3383), + [sym_block] = STATE(3383), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3383), + [sym_nil] = STATE(3383), + [sym__atom] = STATE(3383), + [sym_quoted_atom] = STATE(3383), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(3383), + [sym_charlist] = STATE(3383), + [sym_sigil] = STATE(3383), + [sym_list] = STATE(3383), + [sym_tuple] = STATE(3383), + [sym_bitstring] = STATE(3383), + [sym_map] = STATE(3383), + [sym_unary_operator] = STATE(3383), + [sym_binary_operator] = STATE(3383), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(3383), + [sym_call] = STATE(3383), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3383), + [sym_anonymous_function] = STATE(3383), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1959), + [sym_integer] = ACTIONS(1959), + [sym_float] = ACTIONS(1959), + [sym_char] = ACTIONS(1959), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1959), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [585] = { + [sym__expression] = STATE(3382), + [sym_block] = STATE(3382), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3382), + [sym_nil] = STATE(3382), + [sym__atom] = STATE(3382), + [sym_quoted_atom] = STATE(3382), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(3382), + [sym_charlist] = STATE(3382), + [sym_sigil] = STATE(3382), + [sym_list] = STATE(3382), + [sym_tuple] = STATE(3382), + [sym_bitstring] = STATE(3382), + [sym_map] = STATE(3382), + [sym_unary_operator] = STATE(3382), + [sym_binary_operator] = STATE(3382), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(3382), + [sym_call] = STATE(3382), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3382), + [sym_anonymous_function] = STATE(3382), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1961), + [sym_integer] = ACTIONS(1961), + [sym_float] = ACTIONS(1961), + [sym_char] = ACTIONS(1961), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1961), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [586] = { + [sym__expression] = STATE(3381), + [sym_block] = STATE(3381), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3381), + [sym_nil] = STATE(3381), + [sym__atom] = STATE(3381), + [sym_quoted_atom] = STATE(3381), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(3381), + [sym_charlist] = STATE(3381), + [sym_sigil] = STATE(3381), + [sym_list] = STATE(3381), + [sym_tuple] = STATE(3381), + [sym_bitstring] = STATE(3381), + [sym_map] = STATE(3381), + [sym_unary_operator] = STATE(3381), + [sym_binary_operator] = STATE(3381), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(3381), + [sym_call] = STATE(3381), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3381), + [sym_anonymous_function] = STATE(3381), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1963), + [sym_integer] = ACTIONS(1963), + [sym_float] = ACTIONS(1963), + [sym_char] = ACTIONS(1963), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [587] = { + [sym__expression] = STATE(3380), + [sym_block] = STATE(3380), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3380), + [sym_nil] = STATE(3380), + [sym__atom] = STATE(3380), + [sym_quoted_atom] = STATE(3380), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [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_binary_operator] = STATE(3380), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(3380), + [sym_call] = STATE(3380), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3380), + [sym_anonymous_function] = STATE(3380), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1965), + [sym_integer] = ACTIONS(1965), + [sym_float] = ACTIONS(1965), + [sym_char] = ACTIONS(1965), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1965), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [588] = { + [sym__expression] = STATE(3379), + [sym_block] = STATE(3379), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3379), + [sym_nil] = STATE(3379), + [sym__atom] = STATE(3379), + [sym_quoted_atom] = STATE(3379), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(3379), + [sym_charlist] = STATE(3379), + [sym_sigil] = STATE(3379), + [sym_list] = STATE(3379), + [sym_tuple] = STATE(3379), + [sym_bitstring] = STATE(3379), + [sym_map] = STATE(3379), + [sym_unary_operator] = STATE(3379), + [sym_binary_operator] = STATE(3379), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(3379), + [sym_call] = STATE(3379), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3379), + [sym_anonymous_function] = STATE(3379), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1967), + [sym_integer] = ACTIONS(1967), + [sym_float] = ACTIONS(1967), + [sym_char] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1967), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [589] = { + [sym__expression] = STATE(3378), + [sym_block] = STATE(3378), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3378), + [sym_nil] = STATE(3378), + [sym__atom] = STATE(3378), + [sym_quoted_atom] = STATE(3378), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [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(5565), + [sym_dot] = STATE(3378), + [sym_call] = STATE(3378), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3378), + [sym_anonymous_function] = STATE(3378), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1969), + [sym_integer] = ACTIONS(1969), + [sym_float] = ACTIONS(1969), + [sym_char] = ACTIONS(1969), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1969), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [590] = { + [sym__expression] = STATE(3377), + [sym_block] = STATE(3377), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3377), + [sym_nil] = STATE(3377), + [sym__atom] = STATE(3377), + [sym_quoted_atom] = STATE(3377), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [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_binary_operator] = STATE(3377), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(3377), + [sym_call] = STATE(3377), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3377), + [sym_anonymous_function] = STATE(3377), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1971), + [sym_integer] = ACTIONS(1971), + [sym_float] = ACTIONS(1971), + [sym_char] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1971), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [591] = { + [sym__expression] = STATE(3376), + [sym_block] = STATE(3376), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3376), + [sym_nil] = STATE(3376), + [sym__atom] = STATE(3376), + [sym_quoted_atom] = STATE(3376), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [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(5565), + [sym_dot] = STATE(3376), + [sym_call] = STATE(3376), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3376), + [sym_anonymous_function] = STATE(3376), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1973), + [sym_integer] = ACTIONS(1973), + [sym_float] = ACTIONS(1973), + [sym_char] = ACTIONS(1973), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1973), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [592] = { + [sym__expression] = STATE(3375), + [sym_block] = STATE(3375), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3375), + [sym_nil] = STATE(3375), + [sym__atom] = STATE(3375), + [sym_quoted_atom] = STATE(3375), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(3375), + [sym_charlist] = STATE(3375), + [sym_sigil] = STATE(3375), + [sym_list] = STATE(3375), + [sym_tuple] = STATE(3375), + [sym_bitstring] = STATE(3375), + [sym_map] = STATE(3375), + [sym_unary_operator] = STATE(3375), + [sym_binary_operator] = STATE(3375), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(3375), + [sym_call] = STATE(3375), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3375), + [sym_anonymous_function] = STATE(3375), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1975), + [sym_integer] = ACTIONS(1975), + [sym_float] = ACTIONS(1975), + [sym_char] = ACTIONS(1975), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1975), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [593] = { + [sym__expression] = STATE(3374), + [sym_block] = STATE(3374), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3374), + [sym_nil] = STATE(3374), + [sym__atom] = STATE(3374), + [sym_quoted_atom] = STATE(3374), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(3374), + [sym_charlist] = STATE(3374), + [sym_sigil] = STATE(3374), + [sym_list] = STATE(3374), + [sym_tuple] = STATE(3374), + [sym_bitstring] = STATE(3374), + [sym_map] = STATE(3374), + [sym_unary_operator] = STATE(3374), + [sym_binary_operator] = STATE(3374), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(3374), + [sym_call] = STATE(3374), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3374), + [sym_anonymous_function] = STATE(3374), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1977), + [sym_integer] = ACTIONS(1977), + [sym_float] = ACTIONS(1977), + [sym_char] = ACTIONS(1977), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1977), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [594] = { + [sym__expression] = STATE(3373), + [sym_block] = STATE(3373), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3373), + [sym_nil] = STATE(3373), + [sym__atom] = STATE(3373), + [sym_quoted_atom] = STATE(3373), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(3373), + [sym_charlist] = STATE(3373), + [sym_sigil] = STATE(3373), + [sym_list] = STATE(3373), + [sym_tuple] = STATE(3373), + [sym_bitstring] = STATE(3373), + [sym_map] = STATE(3373), + [sym_unary_operator] = STATE(3373), + [sym_binary_operator] = STATE(3373), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(3373), + [sym_call] = STATE(3373), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3373), + [sym_anonymous_function] = STATE(3373), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1979), + [sym_integer] = ACTIONS(1979), + [sym_float] = ACTIONS(1979), + [sym_char] = ACTIONS(1979), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1979), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [595] = { + [sym__expression] = STATE(1450), + [sym_block] = STATE(1450), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1450), + [sym_nil] = STATE(1450), + [sym__atom] = STATE(1450), + [sym_quoted_atom] = STATE(1450), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1450), + [sym_charlist] = STATE(1450), + [sym_sigil] = STATE(1450), + [sym_list] = STATE(1450), + [sym_tuple] = STATE(1450), + [sym_bitstring] = STATE(1450), + [sym_map] = STATE(1450), + [sym_unary_operator] = STATE(1450), + [sym_binary_operator] = STATE(1450), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1450), + [sym_call] = STATE(1450), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1450), + [sym_anonymous_function] = STATE(1450), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1981), + [sym_integer] = ACTIONS(1981), + [sym_float] = ACTIONS(1981), + [sym_char] = ACTIONS(1981), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1981), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [596] = { + [sym__expression] = STATE(2302), + [sym_block] = STATE(2302), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2302), + [sym_nil] = STATE(2302), + [sym__atom] = STATE(2302), + [sym_quoted_atom] = STATE(2302), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2302), + [sym_charlist] = STATE(2302), + [sym_sigil] = STATE(2302), + [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(5608), + [sym_dot] = STATE(2302), + [sym_call] = STATE(2302), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2302), + [sym_anonymous_function] = STATE(2302), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1983), + [sym_integer] = ACTIONS(1983), + [sym_float] = ACTIONS(1983), + [sym_char] = ACTIONS(1983), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1983), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [597] = { + [sym__expression] = STATE(3701), + [sym_block] = STATE(3701), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3701), + [sym_nil] = STATE(3701), + [sym__atom] = STATE(3701), + [sym_quoted_atom] = STATE(3701), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3701), + [sym_charlist] = STATE(3701), + [sym_sigil] = STATE(3701), + [sym_list] = STATE(3701), + [sym_tuple] = STATE(3701), + [sym_bitstring] = STATE(3701), + [sym_map] = STATE(3701), + [sym_unary_operator] = STATE(3701), + [sym_binary_operator] = STATE(3701), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3701), + [sym_call] = STATE(3701), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3701), + [sym_anonymous_function] = STATE(3701), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1985), + [sym_integer] = ACTIONS(1985), + [sym_float] = ACTIONS(1985), + [sym_char] = ACTIONS(1985), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1985), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [598] = { + [sym__expression] = STATE(2737), + [sym_block] = STATE(2737), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2737), + [sym_nil] = STATE(2737), + [sym__atom] = STATE(2737), + [sym_quoted_atom] = STATE(2737), + [sym__quoted_i_double] = STATE(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [sym_string] = STATE(2737), + [sym_charlist] = STATE(2737), + [sym_sigil] = STATE(2737), + [sym_list] = STATE(2737), + [sym_tuple] = STATE(2737), + [sym_bitstring] = STATE(2737), + [sym_map] = STATE(2737), + [sym_unary_operator] = STATE(2737), + [sym_binary_operator] = STATE(2737), + [sym_operator_identifier] = STATE(5624), + [sym_dot] = STATE(2737), + [sym_call] = STATE(2737), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2737), + [sym_anonymous_function] = STATE(2737), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1987), + [sym_integer] = ACTIONS(1987), + [sym_float] = ACTIONS(1987), + [sym_char] = ACTIONS(1987), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(1987), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), + }, + [599] = { + [sym__expression] = STATE(2303), + [sym_block] = STATE(2303), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2303), + [sym_nil] = STATE(2303), + [sym__atom] = STATE(2303), + [sym_quoted_atom] = STATE(2303), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [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(5608), + [sym_dot] = STATE(2303), + [sym_call] = STATE(2303), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2303), + [sym_anonymous_function] = STATE(2303), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1989), + [sym_integer] = ACTIONS(1989), + [sym_float] = ACTIONS(1989), + [sym_char] = ACTIONS(1989), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [600] = { + [sym__expression] = STATE(3055), + [sym_block] = STATE(3055), + [sym_identifier] = STATE(50), + [sym_boolean] = STATE(3055), + [sym_nil] = STATE(3055), + [sym__atom] = STATE(3055), + [sym_quoted_atom] = STATE(3055), + [sym__quoted_i_double] = STATE(2806), + [sym__quoted_i_single] = STATE(2807), + [sym__quoted_i_heredoc_single] = STATE(2740), + [sym__quoted_i_heredoc_double] = STATE(2853), + [sym_string] = STATE(3055), + [sym_charlist] = STATE(3055), + [sym_sigil] = STATE(3055), + [sym_list] = STATE(3055), + [sym_tuple] = STATE(3055), + [sym_bitstring] = STATE(3055), + [sym_map] = STATE(3055), + [sym_unary_operator] = STATE(3055), + [sym_binary_operator] = STATE(3055), + [sym_operator_identifier] = STATE(5584), + [sym_dot] = STATE(3055), + [sym_call] = STATE(3055), + [sym__call_without_parentheses] = STATE(2817), + [sym__call_with_parentheses] = STATE(2818), + [sym__local_call_without_parentheses] = STATE(2819), + [sym__local_call_with_parentheses] = STATE(2099), + [sym__local_call_just_do_block] = STATE(2822), + [sym__remote_call_without_parentheses] = STATE(2824), + [sym__remote_call_with_parentheses] = STATE(2096), + [sym__remote_dot] = STATE(44), + [sym__anonymous_call] = STATE(2095), + [sym__anonymous_dot] = STATE(5488), + [sym__double_call] = STATE(2825), + [sym_access_call] = STATE(3055), + [sym_anonymous_function] = STATE(3055), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(470), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(1317), + [sym_integer] = ACTIONS(1317), + [sym_float] = ACTIONS(1317), + [sym_char] = ACTIONS(1317), + [anon_sym_true] = ACTIONS(476), + [anon_sym_false] = ACTIONS(476), + [anon_sym_nil] = ACTIONS(478), + [sym_atom] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(480), + [anon_sym_SQUOTE] = ACTIONS(482), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(484), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(486), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LBRACK] = ACTIONS(490), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(492), + [anon_sym_LT_LT] = ACTIONS(496), + [anon_sym_PERCENT] = ACTIONS(498), + [anon_sym_AMP] = ACTIONS(500), + [anon_sym_PLUS] = ACTIONS(502), + [anon_sym_DASH] = ACTIONS(502), + [anon_sym_BANG] = ACTIONS(502), + [anon_sym_CARET] = ACTIONS(502), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(502), + [anon_sym_not] = ACTIONS(502), + [anon_sym_AT] = ACTIONS(504), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(506), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(510), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(512), + }, + [601] = { + [sym__expression] = STATE(3700), + [sym_block] = STATE(3700), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3700), + [sym_nil] = STATE(3700), + [sym__atom] = STATE(3700), + [sym_quoted_atom] = STATE(3700), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3700), + [sym_charlist] = STATE(3700), + [sym_sigil] = STATE(3700), + [sym_list] = STATE(3700), + [sym_tuple] = STATE(3700), + [sym_bitstring] = STATE(3700), + [sym_map] = STATE(3700), + [sym_unary_operator] = STATE(3700), + [sym_binary_operator] = STATE(3700), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3700), + [sym_call] = STATE(3700), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3700), + [sym_anonymous_function] = STATE(3700), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1991), + [sym_integer] = ACTIONS(1991), + [sym_float] = ACTIONS(1991), + [sym_char] = ACTIONS(1991), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1991), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [602] = { + [sym__expression] = STATE(3699), + [sym_block] = STATE(3699), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3699), + [sym_nil] = STATE(3699), + [sym__atom] = STATE(3699), + [sym_quoted_atom] = STATE(3699), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(3699), + [sym_call] = STATE(3699), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3699), + [sym_anonymous_function] = STATE(3699), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1993), + [sym_integer] = ACTIONS(1993), + [sym_float] = ACTIONS(1993), + [sym_char] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1993), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [603] = { + [sym__expression] = STATE(3698), + [sym_block] = STATE(3698), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3698), + [sym_nil] = STATE(3698), + [sym__atom] = STATE(3698), + [sym_quoted_atom] = STATE(3698), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3698), + [sym_charlist] = STATE(3698), + [sym_sigil] = STATE(3698), + [sym_list] = STATE(3698), + [sym_tuple] = STATE(3698), + [sym_bitstring] = STATE(3698), + [sym_map] = STATE(3698), + [sym_unary_operator] = STATE(3698), + [sym_binary_operator] = STATE(3698), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3698), + [sym_call] = STATE(3698), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3698), + [sym_anonymous_function] = STATE(3698), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1995), + [sym_integer] = ACTIONS(1995), + [sym_float] = ACTIONS(1995), + [sym_char] = ACTIONS(1995), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1995), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [604] = { + [sym__expression] = STATE(2304), + [sym_block] = STATE(2304), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2304), + [sym_nil] = STATE(2304), + [sym__atom] = STATE(2304), + [sym_quoted_atom] = STATE(2304), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [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(5608), + [sym_dot] = STATE(2304), + [sym_call] = STATE(2304), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2304), + [sym_anonymous_function] = STATE(2304), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1997), + [sym_integer] = ACTIONS(1997), + [sym_float] = ACTIONS(1997), + [sym_char] = ACTIONS(1997), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1997), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [605] = { + [sym__expression] = STATE(4069), + [sym_block] = STATE(4069), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4069), + [sym_nil] = STATE(4069), + [sym__atom] = STATE(4069), + [sym_quoted_atom] = STATE(4069), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [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(5568), + [sym_dot] = STATE(4069), + [sym_call] = STATE(4069), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4069), + [sym_anonymous_function] = STATE(4069), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1999), + [sym_integer] = ACTIONS(1999), + [sym_float] = ACTIONS(1999), + [sym_char] = ACTIONS(1999), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1999), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [606] = { + [sym__expression] = STATE(4058), + [sym_block] = STATE(4058), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4058), + [sym_nil] = STATE(4058), + [sym__atom] = STATE(4058), + [sym_quoted_atom] = STATE(4058), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [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(5568), + [sym_dot] = STATE(4058), + [sym_call] = STATE(4058), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4058), + [sym_anonymous_function] = STATE(4058), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(2001), + [sym_integer] = ACTIONS(2001), + [sym_float] = ACTIONS(2001), + [sym_char] = ACTIONS(2001), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(2001), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [607] = { + [sym__expression] = STATE(3697), + [sym_block] = STATE(3697), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3697), + [sym_nil] = STATE(3697), + [sym__atom] = STATE(3697), + [sym_quoted_atom] = STATE(3697), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3697), + [sym_charlist] = STATE(3697), + [sym_sigil] = STATE(3697), + [sym_list] = STATE(3697), + [sym_tuple] = STATE(3697), + [sym_bitstring] = STATE(3697), + [sym_map] = STATE(3697), + [sym_unary_operator] = STATE(3697), + [sym_binary_operator] = STATE(3697), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3697), + [sym_call] = STATE(3697), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3697), + [sym_anonymous_function] = STATE(3697), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(2003), + [sym_integer] = ACTIONS(2003), + [sym_float] = ACTIONS(2003), + [sym_char] = ACTIONS(2003), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2003), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [608] = { + [sym__expression] = STATE(3696), + [sym_block] = STATE(3696), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3696), + [sym_nil] = STATE(3696), + [sym__atom] = STATE(3696), + [sym_quoted_atom] = STATE(3696), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3696), + [sym_charlist] = STATE(3696), + [sym_sigil] = STATE(3696), + [sym_list] = STATE(3696), + [sym_tuple] = STATE(3696), + [sym_bitstring] = STATE(3696), + [sym_map] = STATE(3696), + [sym_unary_operator] = STATE(3696), + [sym_binary_operator] = STATE(3696), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3696), + [sym_call] = STATE(3696), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3696), + [sym_anonymous_function] = STATE(3696), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(2005), + [sym_integer] = ACTIONS(2005), + [sym_float] = ACTIONS(2005), + [sym_char] = ACTIONS(2005), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2005), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [609] = { + [sym__expression] = STATE(2078), + [sym_block] = STATE(2078), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2078), + [sym_nil] = STATE(2078), + [sym__atom] = STATE(2078), + [sym_quoted_atom] = STATE(2078), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2078), + [sym_charlist] = STATE(2078), + [sym_sigil] = STATE(2078), + [sym_list] = STATE(2078), + [sym_tuple] = STATE(2078), + [sym_bitstring] = STATE(2078), + [sym_map] = STATE(2078), + [sym_unary_operator] = STATE(2078), + [sym_binary_operator] = STATE(2078), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2078), + [sym_call] = STATE(2078), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2078), + [sym_anonymous_function] = STATE(2078), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2007), + [sym_integer] = ACTIONS(2007), + [sym_float] = ACTIONS(2007), + [sym_char] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [610] = { + [sym__expression] = STATE(3695), + [sym_block] = STATE(3695), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3695), + [sym_nil] = STATE(3695), + [sym__atom] = STATE(3695), + [sym_quoted_atom] = STATE(3695), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3695), + [sym_charlist] = STATE(3695), + [sym_sigil] = STATE(3695), + [sym_list] = STATE(3695), + [sym_tuple] = STATE(3695), + [sym_bitstring] = STATE(3695), + [sym_map] = STATE(3695), + [sym_unary_operator] = STATE(3695), + [sym_binary_operator] = STATE(3695), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3695), + [sym_call] = STATE(3695), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3695), + [sym_anonymous_function] = STATE(3695), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(2009), + [sym_integer] = ACTIONS(2009), + [sym_float] = ACTIONS(2009), + [sym_char] = ACTIONS(2009), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2009), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [611] = { + [sym__expression] = STATE(1498), + [sym_block] = STATE(1498), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1498), + [sym_nil] = STATE(1498), + [sym__atom] = STATE(1498), + [sym_quoted_atom] = STATE(1498), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1498), + [sym_charlist] = STATE(1498), + [sym_sigil] = STATE(1498), + [sym_list] = STATE(1498), + [sym_tuple] = STATE(1498), + [sym_bitstring] = STATE(1498), + [sym_map] = STATE(1498), + [sym_unary_operator] = STATE(1498), + [sym_binary_operator] = STATE(1498), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1498), + [sym_call] = STATE(1498), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1498), + [sym_anonymous_function] = STATE(1498), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2011), + [sym_integer] = ACTIONS(2011), + [sym_float] = ACTIONS(2011), + [sym_char] = ACTIONS(2011), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2011), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [612] = { + [sym__expression] = STATE(2655), + [sym_block] = STATE(2655), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2655), + [sym_nil] = STATE(2655), + [sym__atom] = STATE(2655), + [sym_quoted_atom] = STATE(2655), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2655), + [sym_charlist] = STATE(2655), + [sym_sigil] = STATE(2655), + [sym_list] = STATE(2655), + [sym_tuple] = STATE(2655), + [sym_bitstring] = STATE(2655), + [sym_map] = STATE(2655), + [sym_unary_operator] = STATE(2655), + [sym_binary_operator] = STATE(2655), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(2655), + [sym_call] = STATE(2655), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2655), + [sym_anonymous_function] = STATE(2655), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2013), + [sym_integer] = ACTIONS(2013), + [sym_float] = ACTIONS(2013), + [sym_char] = ACTIONS(2013), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2013), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [613] = { + [sym__expression] = STATE(2401), + [sym_block] = STATE(2401), + [sym_identifier] = STATE(37), + [sym_boolean] = STATE(2401), + [sym_nil] = STATE(2401), + [sym__atom] = STATE(2401), + [sym_quoted_atom] = STATE(2401), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2401), + [sym_charlist] = STATE(2401), + [sym_sigil] = STATE(2401), + [sym_list] = STATE(2401), + [sym_tuple] = STATE(2401), + [sym_bitstring] = STATE(2401), + [sym_map] = STATE(2401), + [sym_unary_operator] = STATE(2401), + [sym_binary_operator] = STATE(2401), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2401), + [sym_call] = STATE(2401), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(34), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2401), + [sym_anonymous_function] = STATE(2401), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1383), + [sym_integer] = ACTIONS(1383), + [sym_float] = ACTIONS(1383), + [sym_char] = ACTIONS(1383), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1383), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(373), + [anon_sym_PLUS] = ACTIONS(375), + [anon_sym_DASH] = ACTIONS(375), + [anon_sym_BANG] = ACTIONS(375), + [anon_sym_CARET] = ACTIONS(375), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(375), + [anon_sym_not] = ACTIONS(375), + [anon_sym_AT] = ACTIONS(377), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(383), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [614] = { + [sym__expression] = STATE(1639), + [sym_block] = STATE(1639), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1639), + [sym_nil] = STATE(1639), + [sym__atom] = STATE(1639), + [sym_quoted_atom] = STATE(1639), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1639), + [sym_charlist] = STATE(1639), + [sym_sigil] = STATE(1639), + [sym_list] = STATE(1639), + [sym_tuple] = STATE(1639), + [sym_bitstring] = STATE(1639), + [sym_map] = STATE(1639), + [sym_unary_operator] = STATE(1639), + [sym_binary_operator] = STATE(1639), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1639), + [sym_call] = STATE(1639), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1639), + [sym_anonymous_function] = STATE(1639), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2015), + [sym_integer] = ACTIONS(2015), + [sym_float] = ACTIONS(2015), + [sym_char] = ACTIONS(2015), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2015), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [615] = { + [sym__expression] = STATE(1486), + [sym_block] = STATE(1486), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1486), + [sym_nil] = STATE(1486), + [sym__atom] = STATE(1486), + [sym_quoted_atom] = STATE(1486), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1486), + [sym_charlist] = STATE(1486), + [sym_sigil] = STATE(1486), + [sym_list] = STATE(1486), + [sym_tuple] = STATE(1486), + [sym_bitstring] = STATE(1486), + [sym_map] = STATE(1486), + [sym_unary_operator] = STATE(1486), + [sym_binary_operator] = STATE(1486), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1486), + [sym_call] = STATE(1486), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1486), + [sym_anonymous_function] = STATE(1486), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2017), + [sym_integer] = ACTIONS(2017), + [sym_float] = ACTIONS(2017), + [sym_char] = ACTIONS(2017), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2017), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [616] = { + [sym__expression] = STATE(1477), + [sym_block] = STATE(1477), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1477), + [sym_nil] = STATE(1477), + [sym__atom] = STATE(1477), + [sym_quoted_atom] = STATE(1477), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [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(5600), + [sym_dot] = STATE(1477), + [sym_call] = STATE(1477), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1477), + [sym_anonymous_function] = STATE(1477), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2019), + [sym_integer] = ACTIONS(2019), + [sym_float] = ACTIONS(2019), + [sym_char] = ACTIONS(2019), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2019), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [617] = { + [sym__expression] = STATE(4146), + [sym_block] = STATE(4146), + [sym_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(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4146), + [sym_call] = STATE(4146), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4146), + [sym_anonymous_function] = STATE(4146), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2021), + [sym_integer] = ACTIONS(2021), + [sym_float] = ACTIONS(2021), + [sym_char] = ACTIONS(2021), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2021), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [618] = { + [sym__expression] = STATE(2284), + [sym_block] = STATE(2284), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2284), + [sym_nil] = STATE(2284), + [sym__atom] = STATE(2284), + [sym_quoted_atom] = STATE(2284), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2284), + [sym_charlist] = STATE(2284), + [sym_sigil] = STATE(2284), + [sym_list] = STATE(2284), + [sym_tuple] = STATE(2284), + [sym_bitstring] = STATE(2284), + [sym_map] = STATE(2284), + [sym_unary_operator] = STATE(2284), + [sym_binary_operator] = STATE(2284), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(2284), + [sym_call] = STATE(2284), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2284), + [sym_anonymous_function] = STATE(2284), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2023), + [sym_integer] = ACTIONS(2023), + [sym_float] = ACTIONS(2023), + [sym_char] = ACTIONS(2023), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2023), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [619] = { + [sym__expression] = STATE(3245), + [sym_block] = STATE(3245), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3245), + [sym_nil] = STATE(3245), + [sym__atom] = STATE(3245), + [sym_quoted_atom] = STATE(3245), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [sym_string] = STATE(3245), + [sym_charlist] = STATE(3245), + [sym_sigil] = STATE(3245), + [sym_list] = STATE(3245), + [sym_tuple] = STATE(3245), + [sym_bitstring] = STATE(3245), + [sym_map] = STATE(3245), + [sym_unary_operator] = STATE(3245), + [sym_binary_operator] = STATE(3245), + [sym_operator_identifier] = STATE(5616), + [sym_dot] = STATE(3245), + [sym_call] = STATE(3245), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3245), + [sym_anonymous_function] = STATE(3245), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2025), + [sym_integer] = ACTIONS(2025), + [sym_float] = ACTIONS(2025), + [sym_char] = ACTIONS(2025), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(2025), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [620] = { + [sym__expression] = STATE(1596), + [sym_block] = STATE(1596), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1596), + [sym_nil] = STATE(1596), + [sym__atom] = STATE(1596), + [sym_quoted_atom] = STATE(1596), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1596), + [sym_charlist] = STATE(1596), + [sym_sigil] = STATE(1596), + [sym_list] = STATE(1596), + [sym_tuple] = STATE(1596), + [sym_bitstring] = STATE(1596), + [sym_map] = STATE(1596), + [sym_unary_operator] = STATE(1596), + [sym_binary_operator] = STATE(1596), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1596), + [sym_call] = STATE(1596), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1596), + [sym_anonymous_function] = STATE(1596), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2027), + [sym_integer] = ACTIONS(2027), + [sym_float] = ACTIONS(2027), + [sym_char] = ACTIONS(2027), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2027), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [621] = { + [sym__expression] = STATE(3244), + [sym_block] = STATE(3244), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3244), + [sym_nil] = STATE(3244), + [sym__atom] = STATE(3244), + [sym_quoted_atom] = STATE(3244), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [sym_string] = STATE(3244), + [sym_charlist] = STATE(3244), + [sym_sigil] = STATE(3244), + [sym_list] = STATE(3244), + [sym_tuple] = STATE(3244), + [sym_bitstring] = STATE(3244), + [sym_map] = STATE(3244), + [sym_unary_operator] = STATE(3244), + [sym_binary_operator] = STATE(3244), + [sym_operator_identifier] = STATE(5616), + [sym_dot] = STATE(3244), + [sym_call] = STATE(3244), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3244), + [sym_anonymous_function] = STATE(3244), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2029), + [sym_integer] = ACTIONS(2029), + [sym_float] = ACTIONS(2029), + [sym_char] = ACTIONS(2029), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(2029), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [622] = { + [sym__expression] = STATE(4124), + [sym_block] = STATE(4124), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(4124), + [sym_nil] = STATE(4124), + [sym__atom] = STATE(4124), + [sym_quoted_atom] = STATE(4124), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(4124), + [sym_charlist] = STATE(4124), + [sym_sigil] = STATE(4124), + [sym_list] = STATE(4124), + [sym_tuple] = STATE(4124), + [sym_bitstring] = STATE(4124), + [sym_map] = STATE(4124), + [sym_unary_operator] = STATE(4124), + [sym_binary_operator] = STATE(4124), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4124), + [sym_call] = STATE(4124), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4124), + [sym_anonymous_function] = STATE(4124), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2031), + [sym_integer] = ACTIONS(2031), + [sym_float] = ACTIONS(2031), + [sym_char] = ACTIONS(2031), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2031), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [623] = { + [sym__expression] = STATE(2933), + [sym_block] = STATE(2933), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2933), + [sym_nil] = STATE(2933), + [sym__atom] = STATE(2933), + [sym_quoted_atom] = STATE(2933), + [sym__quoted_i_double] = STATE(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [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(5624), + [sym_dot] = STATE(2933), + [sym_call] = STATE(2933), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2933), + [sym_anonymous_function] = STATE(2933), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2033), + [sym_integer] = ACTIONS(2033), + [sym_float] = ACTIONS(2033), + [sym_char] = ACTIONS(2033), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(2033), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), + }, + [624] = { + [sym__expression] = STATE(3603), + [sym_block] = STATE(3603), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3603), + [sym_nil] = STATE(3603), + [sym__atom] = STATE(3603), + [sym_quoted_atom] = STATE(3603), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(3603), + [sym_charlist] = STATE(3603), + [sym_sigil] = STATE(3603), + [sym_list] = STATE(3603), + [sym_tuple] = STATE(3603), + [sym_bitstring] = STATE(3603), + [sym_map] = STATE(3603), + [sym_unary_operator] = STATE(3603), + [sym_binary_operator] = STATE(3603), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(3603), + [sym_call] = STATE(3603), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3603), + [sym_anonymous_function] = STATE(3603), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1303), + [sym_integer] = ACTIONS(1303), + [sym_float] = ACTIONS(1303), + [sym_char] = ACTIONS(1303), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1303), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [625] = { + [sym__expression] = STATE(4111), + [sym_block] = STATE(4111), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4111), + [sym_nil] = STATE(4111), + [sym__atom] = STATE(4111), + [sym_quoted_atom] = STATE(4111), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4111), + [sym_charlist] = STATE(4111), + [sym_sigil] = STATE(4111), + [sym_list] = STATE(4111), + [sym_tuple] = STATE(4111), + [sym_bitstring] = STATE(4111), + [sym_map] = STATE(4111), + [sym_unary_operator] = STATE(4111), + [sym_binary_operator] = STATE(4111), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(4111), + [sym_call] = STATE(4111), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4111), + [sym_anonymous_function] = STATE(4111), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(2035), + [sym_integer] = ACTIONS(2035), + [sym_float] = ACTIONS(2035), + [sym_char] = ACTIONS(2035), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(2035), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [626] = { + [sym__expression] = STATE(1475), + [sym_block] = STATE(1475), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1475), + [sym_nil] = STATE(1475), + [sym__atom] = STATE(1475), + [sym_quoted_atom] = STATE(1475), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1475), + [sym_charlist] = STATE(1475), + [sym_sigil] = STATE(1475), + [sym_list] = STATE(1475), + [sym_tuple] = STATE(1475), + [sym_bitstring] = STATE(1475), + [sym_map] = STATE(1475), + [sym_unary_operator] = STATE(1475), + [sym_binary_operator] = STATE(1475), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1475), + [sym_call] = STATE(1475), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1475), + [sym_anonymous_function] = STATE(1475), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2037), + [sym_integer] = ACTIONS(2037), + [sym_float] = ACTIONS(2037), + [sym_char] = ACTIONS(2037), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [627] = { + [sym__expression] = STATE(3947), + [sym_block] = STATE(3947), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3947), + [sym_nil] = STATE(3947), + [sym__atom] = STATE(3947), + [sym_quoted_atom] = STATE(3947), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(3947), + [sym_charlist] = STATE(3947), + [sym_sigil] = STATE(3947), + [sym_list] = STATE(3947), + [sym_tuple] = STATE(3947), + [sym_bitstring] = STATE(3947), + [sym_map] = STATE(3947), + [sym_unary_operator] = STATE(3947), + [sym_binary_operator] = STATE(3947), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3947), + [sym_call] = STATE(3947), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3947), + [sym_anonymous_function] = STATE(3947), + [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_alias] = ACTIONS(2039), + [sym_integer] = ACTIONS(2039), + [sym_float] = ACTIONS(2039), + [sym_char] = ACTIONS(2039), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(2039), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [628] = { + [sym__expression] = STATE(1462), + [sym_block] = STATE(1462), + [sym_identifier] = STATE(15), + [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(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [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(5600), + [sym_dot] = STATE(1462), + [sym_call] = STATE(1462), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1462), + [sym_anonymous_function] = STATE(1462), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2041), + [sym_integer] = ACTIONS(2041), + [sym_float] = ACTIONS(2041), + [sym_char] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2041), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [629] = { + [sym__expression] = STATE(1460), + [sym_block] = STATE(1460), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1460), + [sym_nil] = STATE(1460), + [sym__atom] = STATE(1460), + [sym_quoted_atom] = STATE(1460), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1460), + [sym_charlist] = STATE(1460), + [sym_sigil] = STATE(1460), + [sym_list] = STATE(1460), + [sym_tuple] = STATE(1460), + [sym_bitstring] = STATE(1460), + [sym_map] = STATE(1460), + [sym_unary_operator] = STATE(1460), + [sym_binary_operator] = STATE(1460), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1460), + [sym_call] = STATE(1460), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1460), + [sym_anonymous_function] = STATE(1460), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2043), + [sym_integer] = ACTIONS(2043), + [sym_float] = ACTIONS(2043), + [sym_char] = ACTIONS(2043), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2043), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [630] = { + [sym__expression] = STATE(1459), + [sym_block] = STATE(1459), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1459), + [sym_nil] = STATE(1459), + [sym__atom] = STATE(1459), + [sym_quoted_atom] = STATE(1459), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1459), + [sym_charlist] = STATE(1459), + [sym_sigil] = STATE(1459), + [sym_list] = STATE(1459), + [sym_tuple] = STATE(1459), + [sym_bitstring] = STATE(1459), + [sym_map] = STATE(1459), + [sym_unary_operator] = STATE(1459), + [sym_binary_operator] = STATE(1459), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1459), + [sym_call] = STATE(1459), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1459), + [sym_anonymous_function] = STATE(1459), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2045), + [sym_integer] = ACTIONS(2045), + [sym_float] = ACTIONS(2045), + [sym_char] = ACTIONS(2045), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2045), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [631] = { + [sym__expression] = STATE(3951), + [sym_block] = STATE(3951), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3951), + [sym_nil] = STATE(3951), + [sym__atom] = STATE(3951), + [sym_quoted_atom] = STATE(3951), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(3951), + [sym_charlist] = STATE(3951), + [sym_sigil] = STATE(3951), + [sym_list] = STATE(3951), + [sym_tuple] = STATE(3951), + [sym_bitstring] = STATE(3951), + [sym_map] = STATE(3951), + [sym_unary_operator] = STATE(3951), + [sym_binary_operator] = STATE(3951), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3951), + [sym_call] = STATE(3951), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3951), + [sym_anonymous_function] = STATE(3951), + [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_alias] = ACTIONS(2047), + [sym_integer] = ACTIONS(2047), + [sym_float] = ACTIONS(2047), + [sym_char] = ACTIONS(2047), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(2047), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [632] = { + [sym__expression] = STATE(2285), + [sym_block] = STATE(2285), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2285), + [sym_nil] = STATE(2285), + [sym__atom] = STATE(2285), + [sym_quoted_atom] = STATE(2285), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2285), + [sym_charlist] = STATE(2285), + [sym_sigil] = STATE(2285), + [sym_list] = STATE(2285), + [sym_tuple] = STATE(2285), + [sym_bitstring] = STATE(2285), + [sym_map] = STATE(2285), + [sym_unary_operator] = STATE(2285), + [sym_binary_operator] = STATE(2285), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(2285), + [sym_call] = STATE(2285), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2285), + [sym_anonymous_function] = STATE(2285), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2049), + [sym_integer] = ACTIONS(2049), + [sym_float] = ACTIONS(2049), + [sym_char] = ACTIONS(2049), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [633] = { + [sym__expression] = STATE(1454), + [sym_block] = STATE(1454), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1454), + [sym_nil] = STATE(1454), + [sym__atom] = STATE(1454), + [sym_quoted_atom] = STATE(1454), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [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(5600), + [sym_dot] = STATE(1454), + [sym_call] = STATE(1454), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1454), + [sym_anonymous_function] = STATE(1454), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2051), + [sym_integer] = ACTIONS(2051), + [sym_float] = ACTIONS(2051), + [sym_char] = ACTIONS(2051), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2051), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [634] = { + [sym__expression] = STATE(2289), + [sym_block] = STATE(2289), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2289), + [sym_nil] = STATE(2289), + [sym__atom] = STATE(2289), + [sym_quoted_atom] = STATE(2289), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2289), + [sym_charlist] = STATE(2289), + [sym_sigil] = STATE(2289), + [sym_list] = STATE(2289), + [sym_tuple] = STATE(2289), + [sym_bitstring] = STATE(2289), + [sym_map] = STATE(2289), + [sym_unary_operator] = STATE(2289), + [sym_binary_operator] = STATE(2289), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(2289), + [sym_call] = STATE(2289), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2289), + [sym_anonymous_function] = STATE(2289), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2053), + [sym_integer] = ACTIONS(2053), + [sym_float] = ACTIONS(2053), + [sym_char] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [635] = { + [sym__expression] = STATE(2294), + [sym_block] = STATE(2294), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2294), + [sym_nil] = STATE(2294), + [sym__atom] = STATE(2294), + [sym_quoted_atom] = STATE(2294), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [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(5600), + [sym_dot] = STATE(2294), + [sym_call] = STATE(2294), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2294), + [sym_anonymous_function] = STATE(2294), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2055), + [sym_integer] = ACTIONS(2055), + [sym_float] = ACTIONS(2055), + [sym_char] = ACTIONS(2055), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2055), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [636] = { + [sym__expression] = STATE(1209), + [sym_block] = STATE(1209), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1209), + [sym_nil] = STATE(1209), + [sym__atom] = STATE(1209), + [sym_quoted_atom] = STATE(1209), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1209), + [sym_charlist] = STATE(1209), + [sym_sigil] = STATE(1209), + [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(5600), + [sym_dot] = STATE(1209), + [sym_call] = STATE(1209), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1209), + [sym_anonymous_function] = STATE(1209), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2057), + [sym_integer] = ACTIONS(2057), + [sym_float] = ACTIONS(2057), + [sym_char] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [637] = { + [sym__expression] = STATE(1344), + [sym_block] = STATE(1344), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1344), + [sym_nil] = STATE(1344), + [sym__atom] = STATE(1344), + [sym_quoted_atom] = STATE(1344), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [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(5600), + [sym_dot] = STATE(1344), + [sym_call] = STATE(1344), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1344), + [sym_anonymous_function] = STATE(1344), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2059), + [sym_integer] = ACTIONS(2059), + [sym_float] = ACTIONS(2059), + [sym_char] = ACTIONS(2059), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2059), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [638] = { + [sym__expression] = STATE(3950), + [sym_block] = STATE(3950), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3950), + [sym_nil] = STATE(3950), + [sym__atom] = STATE(3950), + [sym_quoted_atom] = STATE(3950), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(3950), + [sym_charlist] = STATE(3950), + [sym_sigil] = STATE(3950), + [sym_list] = STATE(3950), + [sym_tuple] = STATE(3950), + [sym_bitstring] = STATE(3950), + [sym_map] = STATE(3950), + [sym_unary_operator] = STATE(3950), + [sym_binary_operator] = STATE(3950), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3950), + [sym_call] = STATE(3950), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3950), + [sym_anonymous_function] = STATE(3950), + [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_alias] = ACTIONS(2061), + [sym_integer] = ACTIONS(2061), + [sym_float] = ACTIONS(2061), + [sym_char] = ACTIONS(2061), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [639] = { + [sym__expression] = STATE(2305), + [sym_block] = STATE(2305), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2305), + [sym_nil] = STATE(2305), + [sym__atom] = STATE(2305), + [sym_quoted_atom] = STATE(2305), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [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(5600), + [sym_dot] = STATE(2305), + [sym_call] = STATE(2305), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2305), + [sym_anonymous_function] = STATE(2305), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2063), + [sym_integer] = ACTIONS(2063), + [sym_float] = ACTIONS(2063), + [sym_char] = ACTIONS(2063), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [640] = { + [sym__expression] = STATE(3228), + [sym_block] = STATE(3228), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3228), + [sym_nil] = STATE(3228), + [sym__atom] = STATE(3228), + [sym_quoted_atom] = STATE(3228), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [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(5616), + [sym_dot] = STATE(3228), + [sym_call] = STATE(3228), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3228), + [sym_anonymous_function] = STATE(3228), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2065), + [sym_integer] = ACTIONS(2065), + [sym_float] = ACTIONS(2065), + [sym_char] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [641] = { + [sym__expression] = STATE(1174), + [sym_block] = STATE(1174), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1174), + [sym_nil] = STATE(1174), + [sym__atom] = STATE(1174), + [sym_quoted_atom] = STATE(1174), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1174), + [sym_charlist] = STATE(1174), + [sym_sigil] = STATE(1174), + [sym_list] = STATE(1174), + [sym_tuple] = STATE(1174), + [sym_bitstring] = STATE(1174), + [sym_map] = STATE(1174), + [sym_unary_operator] = STATE(1174), + [sym_binary_operator] = STATE(1174), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1174), + [sym_call] = STATE(1174), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1174), + [sym_anonymous_function] = STATE(1174), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2067), + [sym_integer] = ACTIONS(2067), + [sym_float] = ACTIONS(2067), + [sym_char] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [642] = { + [sym__expression] = STATE(1345), + [sym_block] = STATE(1345), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1345), + [sym_nil] = STATE(1345), + [sym__atom] = STATE(1345), + [sym_quoted_atom] = STATE(1345), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [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(5600), + [sym_dot] = STATE(1345), + [sym_call] = STATE(1345), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1345), + [sym_anonymous_function] = STATE(1345), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2069), + [sym_integer] = ACTIONS(2069), + [sym_float] = ACTIONS(2069), + [sym_char] = ACTIONS(2069), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2069), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [643] = { + [sym__expression] = STATE(2306), + [sym_block] = STATE(2306), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2306), + [sym_nil] = STATE(2306), + [sym__atom] = STATE(2306), + [sym_quoted_atom] = STATE(2306), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [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(5600), + [sym_dot] = STATE(2306), + [sym_call] = STATE(2306), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2306), + [sym_anonymous_function] = STATE(2306), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2071), + [sym_integer] = ACTIONS(2071), + [sym_float] = ACTIONS(2071), + [sym_char] = ACTIONS(2071), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2071), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [644] = { + [sym__expression] = STATE(3227), + [sym_block] = STATE(3227), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3227), + [sym_nil] = STATE(3227), + [sym__atom] = STATE(3227), + [sym_quoted_atom] = STATE(3227), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [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(5616), + [sym_dot] = STATE(3227), + [sym_call] = STATE(3227), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3227), + [sym_anonymous_function] = STATE(3227), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2073), + [sym_integer] = ACTIONS(2073), + [sym_float] = ACTIONS(2073), + [sym_char] = ACTIONS(2073), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(2073), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [645] = { + [sym__expression] = STATE(3198), + [sym_block] = STATE(3198), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3198), + [sym_nil] = STATE(3198), + [sym__atom] = STATE(3198), + [sym_quoted_atom] = STATE(3198), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [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(5616), + [sym_dot] = STATE(3198), + [sym_call] = STATE(3198), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3198), + [sym_anonymous_function] = STATE(3198), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2075), + [sym_integer] = ACTIONS(2075), + [sym_float] = ACTIONS(2075), + [sym_char] = ACTIONS(2075), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(2075), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [646] = { + [sym__expression] = STATE(3320), + [sym_block] = STATE(3320), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3320), + [sym_nil] = STATE(3320), + [sym__atom] = STATE(3320), + [sym_quoted_atom] = STATE(3320), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [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(5616), + [sym_dot] = STATE(3320), + [sym_call] = STATE(3320), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3320), + [sym_anonymous_function] = STATE(3320), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2077), + [sym_integer] = ACTIONS(2077), + [sym_float] = ACTIONS(2077), + [sym_char] = ACTIONS(2077), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(2077), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [647] = { + [sym__expression] = STATE(3633), + [sym_block] = STATE(3633), + [sym_identifier] = STATE(61), + [sym_boolean] = STATE(3633), + [sym_nil] = STATE(3633), + [sym__atom] = STATE(3633), + [sym_quoted_atom] = STATE(3633), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(3633), + [sym_charlist] = STATE(3633), + [sym_sigil] = STATE(3633), + [sym_list] = STATE(3633), + [sym_tuple] = STATE(3633), + [sym_bitstring] = STATE(3633), + [sym_map] = STATE(3633), + [sym_unary_operator] = STATE(3633), + [sym_binary_operator] = STATE(3633), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(3633), + [sym_call] = STATE(3633), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(51), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(3633), + [sym_anonymous_function] = STATE(3633), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(2079), + [sym_integer] = ACTIONS(2079), + [sym_float] = ACTIONS(2079), + [sym_char] = ACTIONS(2079), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(2079), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(668), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(672), + [anon_sym_DASH] = ACTIONS(672), + [anon_sym_BANG] = ACTIONS(672), + [anon_sym_CARET] = ACTIONS(672), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(672), + [anon_sym_not] = ACTIONS(672), + [anon_sym_AT] = ACTIONS(674), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(678), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [648] = { + [sym__expression] = STATE(4108), + [sym_block] = STATE(4108), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4108), + [sym_nil] = STATE(4108), + [sym__atom] = STATE(4108), + [sym_quoted_atom] = STATE(4108), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4108), + [sym_charlist] = STATE(4108), + [sym_sigil] = STATE(4108), + [sym_list] = STATE(4108), + [sym_tuple] = STATE(4108), + [sym_bitstring] = STATE(4108), + [sym_map] = STATE(4108), + [sym_unary_operator] = STATE(4108), + [sym_binary_operator] = STATE(4108), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(4108), + [sym_call] = STATE(4108), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4108), + [sym_anonymous_function] = STATE(4108), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(2081), + [sym_integer] = ACTIONS(2081), + [sym_float] = ACTIONS(2081), + [sym_char] = ACTIONS(2081), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(2081), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [649] = { + [sym__expression] = STATE(1562), + [sym_block] = STATE(1562), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1562), + [sym_nil] = STATE(1562), + [sym__atom] = STATE(1562), + [sym_quoted_atom] = STATE(1562), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1562), + [sym_charlist] = STATE(1562), + [sym_sigil] = STATE(1562), + [sym_list] = STATE(1562), + [sym_tuple] = STATE(1562), + [sym_bitstring] = STATE(1562), + [sym_map] = STATE(1562), + [sym_unary_operator] = STATE(1562), + [sym_binary_operator] = STATE(1562), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1562), + [sym_call] = STATE(1562), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1562), + [sym_anonymous_function] = STATE(1562), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2083), + [sym_integer] = ACTIONS(2083), + [sym_float] = ACTIONS(2083), + [sym_char] = ACTIONS(2083), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2083), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [650] = { + [sym__expression] = STATE(1563), + [sym_block] = STATE(1563), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1563), + [sym_nil] = STATE(1563), + [sym__atom] = STATE(1563), + [sym_quoted_atom] = STATE(1563), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1563), + [sym_charlist] = STATE(1563), + [sym_sigil] = STATE(1563), + [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(5631), + [sym_dot] = STATE(1563), + [sym_call] = STATE(1563), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1563), + [sym_anonymous_function] = STATE(1563), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2085), + [sym_integer] = ACTIONS(2085), + [sym_float] = ACTIONS(2085), + [sym_char] = ACTIONS(2085), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [651] = { + [sym__expression] = STATE(2183), + [sym_block] = STATE(2183), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2183), + [sym_nil] = STATE(2183), + [sym__atom] = STATE(2183), + [sym_quoted_atom] = STATE(2183), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2183), + [sym_charlist] = STATE(2183), + [sym_sigil] = STATE(2183), + [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(5592), + [sym_dot] = STATE(2183), + [sym_call] = STATE(2183), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2183), + [sym_anonymous_function] = STATE(2183), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2087), + [sym_integer] = ACTIONS(2087), + [sym_float] = ACTIONS(2087), + [sym_char] = ACTIONS(2087), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2087), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [652] = { + [sym__expression] = STATE(1565), + [sym_block] = STATE(1565), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1565), + [sym_nil] = STATE(1565), + [sym__atom] = STATE(1565), + [sym_quoted_atom] = STATE(1565), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1565), + [sym_charlist] = STATE(1565), + [sym_sigil] = STATE(1565), + [sym_list] = STATE(1565), + [sym_tuple] = STATE(1565), + [sym_bitstring] = STATE(1565), + [sym_map] = STATE(1565), + [sym_unary_operator] = STATE(1565), + [sym_binary_operator] = STATE(1565), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1565), + [sym_call] = STATE(1565), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1565), + [sym_anonymous_function] = STATE(1565), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2089), + [sym_integer] = ACTIONS(2089), + [sym_float] = ACTIONS(2089), + [sym_char] = ACTIONS(2089), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2089), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [653] = { + [sym__expression] = STATE(2155), + [sym_block] = STATE(2155), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2155), + [sym_nil] = STATE(2155), + [sym__atom] = STATE(2155), + [sym_quoted_atom] = STATE(2155), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2155), + [sym_charlist] = STATE(2155), + [sym_sigil] = STATE(2155), + [sym_list] = STATE(2155), + [sym_tuple] = STATE(2155), + [sym_bitstring] = STATE(2155), + [sym_map] = STATE(2155), + [sym_unary_operator] = STATE(2155), + [sym_binary_operator] = STATE(2155), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2155), + [sym_call] = STATE(2155), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2155), + [sym_anonymous_function] = STATE(2155), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2091), + [sym_integer] = ACTIONS(2091), + [sym_float] = ACTIONS(2091), + [sym_char] = ACTIONS(2091), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2091), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [654] = { + [sym__expression] = STATE(2150), + [sym_block] = STATE(2150), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2150), + [sym_nil] = STATE(2150), + [sym__atom] = STATE(2150), + [sym_quoted_atom] = STATE(2150), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2150), + [sym_call] = STATE(2150), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2150), + [sym_anonymous_function] = STATE(2150), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2093), + [sym_integer] = ACTIONS(2093), + [sym_float] = ACTIONS(2093), + [sym_char] = ACTIONS(2093), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [655] = { + [sym__expression] = STATE(2149), + [sym_block] = STATE(2149), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2149), + [sym_nil] = STATE(2149), + [sym__atom] = STATE(2149), + [sym_quoted_atom] = STATE(2149), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2149), + [sym_call] = STATE(2149), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2149), + [sym_anonymous_function] = STATE(2149), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2095), + [sym_integer] = ACTIONS(2095), + [sym_float] = ACTIONS(2095), + [sym_char] = ACTIONS(2095), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2095), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [656] = { + [sym__expression] = STATE(2148), + [sym_block] = STATE(2148), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2148), + [sym_nil] = STATE(2148), + [sym__atom] = STATE(2148), + [sym_quoted_atom] = STATE(2148), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2148), + [sym_charlist] = STATE(2148), + [sym_sigil] = STATE(2148), + [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(5592), + [sym_dot] = STATE(2148), + [sym_call] = STATE(2148), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2148), + [sym_anonymous_function] = STATE(2148), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2097), + [sym_integer] = ACTIONS(2097), + [sym_float] = ACTIONS(2097), + [sym_char] = ACTIONS(2097), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2097), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [657] = { + [sym__expression] = STATE(1566), + [sym_block] = STATE(1566), + [sym_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(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [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(5631), + [sym_dot] = STATE(1566), + [sym_call] = STATE(1566), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1566), + [sym_anonymous_function] = STATE(1566), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2099), + [sym_integer] = ACTIONS(2099), + [sym_float] = ACTIONS(2099), + [sym_char] = ACTIONS(2099), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2099), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [658] = { + [sym__expression] = STATE(2147), + [sym_block] = STATE(2147), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2147), + [sym_nil] = STATE(2147), + [sym__atom] = STATE(2147), + [sym_quoted_atom] = STATE(2147), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2147), + [sym_charlist] = STATE(2147), + [sym_sigil] = STATE(2147), + [sym_list] = STATE(2147), + [sym_tuple] = STATE(2147), + [sym_bitstring] = STATE(2147), + [sym_map] = STATE(2147), + [sym_unary_operator] = STATE(2147), + [sym_binary_operator] = STATE(2147), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2147), + [sym_call] = STATE(2147), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2147), + [sym_anonymous_function] = STATE(2147), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2101), + [sym_integer] = ACTIONS(2101), + [sym_float] = ACTIONS(2101), + [sym_char] = ACTIONS(2101), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2101), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [659] = { + [sym__expression] = STATE(2146), + [sym_block] = STATE(2146), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2146), + [sym_nil] = STATE(2146), + [sym__atom] = STATE(2146), + [sym_quoted_atom] = STATE(2146), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2146), + [sym_charlist] = STATE(2146), + [sym_sigil] = STATE(2146), + [sym_list] = STATE(2146), + [sym_tuple] = STATE(2146), + [sym_bitstring] = STATE(2146), + [sym_map] = STATE(2146), + [sym_unary_operator] = STATE(2146), + [sym_binary_operator] = STATE(2146), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2146), + [sym_call] = STATE(2146), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2146), + [sym_anonymous_function] = STATE(2146), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2103), + [sym_integer] = ACTIONS(2103), + [sym_float] = ACTIONS(2103), + [sym_char] = ACTIONS(2103), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2103), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [660] = { + [sym__expression] = STATE(2144), + [sym_block] = STATE(2144), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2144), + [sym_nil] = STATE(2144), + [sym__atom] = STATE(2144), + [sym_quoted_atom] = STATE(2144), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2144), + [sym_call] = STATE(2144), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2144), + [sym_anonymous_function] = STATE(2144), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2105), + [sym_integer] = ACTIONS(2105), + [sym_float] = ACTIONS(2105), + [sym_char] = ACTIONS(2105), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [661] = { + [sym__expression] = STATE(2143), + [sym_block] = STATE(2143), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2143), + [sym_nil] = STATE(2143), + [sym__atom] = STATE(2143), + [sym_quoted_atom] = STATE(2143), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2143), + [sym_charlist] = STATE(2143), + [sym_sigil] = STATE(2143), + [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(5592), + [sym_dot] = STATE(2143), + [sym_call] = STATE(2143), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2143), + [sym_anonymous_function] = STATE(2143), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2107), + [sym_integer] = ACTIONS(2107), + [sym_float] = ACTIONS(2107), + [sym_char] = ACTIONS(2107), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2107), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [662] = { + [sym__expression] = STATE(2142), + [sym_block] = STATE(2142), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2142), + [sym_nil] = STATE(2142), + [sym__atom] = STATE(2142), + [sym_quoted_atom] = STATE(2142), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2142), + [sym_charlist] = STATE(2142), + [sym_sigil] = STATE(2142), + [sym_list] = STATE(2142), + [sym_tuple] = STATE(2142), + [sym_bitstring] = STATE(2142), + [sym_map] = STATE(2142), + [sym_unary_operator] = STATE(2142), + [sym_binary_operator] = STATE(2142), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2142), + [sym_call] = STATE(2142), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2142), + [sym_anonymous_function] = STATE(2142), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2109), + [sym_integer] = ACTIONS(2109), + [sym_float] = ACTIONS(2109), + [sym_char] = ACTIONS(2109), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2109), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [663] = { + [sym__expression] = STATE(2140), + [sym_block] = STATE(2140), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2140), + [sym_nil] = STATE(2140), + [sym__atom] = STATE(2140), + [sym_quoted_atom] = STATE(2140), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2140), + [sym_charlist] = STATE(2140), + [sym_sigil] = STATE(2140), + [sym_list] = STATE(2140), + [sym_tuple] = STATE(2140), + [sym_bitstring] = STATE(2140), + [sym_map] = STATE(2140), + [sym_unary_operator] = STATE(2140), + [sym_binary_operator] = STATE(2140), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2140), + [sym_call] = STATE(2140), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2140), + [sym_anonymous_function] = STATE(2140), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2111), + [sym_integer] = ACTIONS(2111), + [sym_float] = ACTIONS(2111), + [sym_char] = ACTIONS(2111), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [664] = { + [sym__expression] = STATE(2309), + [sym_block] = STATE(2309), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2309), + [sym_nil] = STATE(2309), + [sym__atom] = STATE(2309), + [sym_quoted_atom] = STATE(2309), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [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(5600), + [sym_dot] = STATE(2309), + [sym_call] = STATE(2309), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2309), + [sym_anonymous_function] = STATE(2309), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2113), + [sym_integer] = ACTIONS(2113), + [sym_float] = ACTIONS(2113), + [sym_char] = ACTIONS(2113), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2113), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [665] = { [sym__expression] = STATE(2121), [sym_block] = STATE(2121), - [sym__identifier] = STATE(21), - [sym_identifier] = STATE(21), - [sym_special_identifier] = STATE(21), + [sym_identifier] = STATE(30), [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__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), [sym_string] = STATE(2121), [sym_charlist] = STATE(2121), [sym_sigil] = STATE(2121), @@ -137830,747 +102735,9591 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_map] = STATE(2121), [sym_unary_operator] = STATE(2121), [sym_binary_operator] = STATE(2121), - [sym_operator_identifier] = STATE(5604), + [sym_operator_identifier] = STATE(5592), [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__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), [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(2561), - [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2115), + [sym_integer] = ACTIONS(2115), + [sym_float] = ACTIONS(2115), + [sym_char] = ACTIONS(2115), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2115), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), [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), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [666] = { + [sym__expression] = STATE(2120), + [sym_block] = STATE(2120), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2120), + [sym_nil] = STATE(2120), + [sym__atom] = STATE(2120), + [sym_quoted_atom] = STATE(2120), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2120), + [sym_call] = STATE(2120), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2120), + [sym_anonymous_function] = STATE(2120), [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(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(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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2117), + [sym_integer] = ACTIONS(2117), + [sym_float] = ACTIONS(2117), + [sym_char] = ACTIONS(2117), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2117), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), [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), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [667] = { + [sym__expression] = STATE(2115), + [sym_block] = STATE(2115), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2115), + [sym_nil] = STATE(2115), + [sym__atom] = STATE(2115), + [sym_quoted_atom] = STATE(2115), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2115), + [sym_charlist] = STATE(2115), + [sym_sigil] = STATE(2115), + [sym_list] = STATE(2115), + [sym_tuple] = STATE(2115), + [sym_bitstring] = STATE(2115), + [sym_map] = STATE(2115), + [sym_unary_operator] = STATE(2115), + [sym_binary_operator] = STATE(2115), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2115), + [sym_call] = STATE(2115), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2115), + [sym_anonymous_function] = STATE(2115), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2119), + [sym_integer] = ACTIONS(2119), + [sym_float] = ACTIONS(2119), + [sym_char] = ACTIONS(2119), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2119), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [668] = { + [sym__expression] = STATE(1666), + [sym_block] = STATE(1666), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(1666), + [sym_nil] = STATE(1666), + [sym__atom] = STATE(1666), + [sym_quoted_atom] = STATE(1666), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(1666), + [sym_charlist] = STATE(1666), + [sym_sigil] = STATE(1666), + [sym_list] = STATE(1666), + [sym_tuple] = STATE(1666), + [sym_bitstring] = STATE(1666), + [sym_map] = STATE(1666), + [sym_unary_operator] = STATE(1666), + [sym_binary_operator] = STATE(1666), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(1666), + [sym_call] = STATE(1666), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(1666), + [sym_anonymous_function] = STATE(1666), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2121), + [sym_integer] = ACTIONS(2121), + [sym_float] = ACTIONS(2121), + [sym_char] = ACTIONS(2121), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [669] = { + [sym__expression] = STATE(1617), + [sym_block] = STATE(1617), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1617), + [sym_nil] = STATE(1617), + [sym__atom] = STATE(1617), + [sym_quoted_atom] = STATE(1617), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1617), + [sym_charlist] = STATE(1617), + [sym_sigil] = STATE(1617), + [sym_list] = STATE(1617), + [sym_tuple] = STATE(1617), + [sym_bitstring] = STATE(1617), + [sym_map] = STATE(1617), + [sym_unary_operator] = STATE(1617), + [sym_binary_operator] = STATE(1617), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1617), + [sym_call] = STATE(1617), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1617), + [sym_anonymous_function] = STATE(1617), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2123), + [sym_integer] = ACTIONS(2123), + [sym_float] = ACTIONS(2123), + [sym_char] = ACTIONS(2123), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2123), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [670] = { + [sym__expression] = STATE(1631), + [sym_block] = STATE(1631), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1631), + [sym_nil] = STATE(1631), + [sym__atom] = STATE(1631), + [sym_quoted_atom] = STATE(1631), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1631), + [sym_charlist] = STATE(1631), + [sym_sigil] = STATE(1631), + [sym_list] = STATE(1631), + [sym_tuple] = STATE(1631), + [sym_bitstring] = STATE(1631), + [sym_map] = STATE(1631), + [sym_unary_operator] = STATE(1631), + [sym_binary_operator] = STATE(1631), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1631), + [sym_call] = STATE(1631), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1631), + [sym_anonymous_function] = STATE(1631), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2125), + [sym_integer] = ACTIONS(2125), + [sym_float] = ACTIONS(2125), + [sym_char] = ACTIONS(2125), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [671] = { + [sym__expression] = STATE(1632), + [sym_block] = STATE(1632), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1632), + [sym_nil] = STATE(1632), + [sym__atom] = STATE(1632), + [sym_quoted_atom] = STATE(1632), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1632), + [sym_charlist] = STATE(1632), + [sym_sigil] = STATE(1632), + [sym_list] = STATE(1632), + [sym_tuple] = STATE(1632), + [sym_bitstring] = STATE(1632), + [sym_map] = STATE(1632), + [sym_unary_operator] = STATE(1632), + [sym_binary_operator] = STATE(1632), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1632), + [sym_call] = STATE(1632), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1632), + [sym_anonymous_function] = STATE(1632), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2127), + [sym_integer] = ACTIONS(2127), + [sym_float] = ACTIONS(2127), + [sym_char] = ACTIONS(2127), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2127), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [672] = { + [sym__expression] = STATE(1636), + [sym_block] = STATE(1636), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1636), + [sym_nil] = STATE(1636), + [sym__atom] = STATE(1636), + [sym_quoted_atom] = STATE(1636), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1636), + [sym_charlist] = STATE(1636), + [sym_sigil] = STATE(1636), + [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(5631), + [sym_dot] = STATE(1636), + [sym_call] = STATE(1636), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1636), + [sym_anonymous_function] = STATE(1636), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2129), + [sym_integer] = ACTIONS(2129), + [sym_float] = ACTIONS(2129), + [sym_char] = ACTIONS(2129), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2129), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [673] = { + [sym__expression] = STATE(4039), + [sym_block] = STATE(4039), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4039), + [sym_nil] = STATE(4039), + [sym__atom] = STATE(4039), + [sym_quoted_atom] = STATE(4039), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [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(5568), + [sym_dot] = STATE(4039), + [sym_call] = STATE(4039), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4039), + [sym_anonymous_function] = STATE(4039), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(2131), + [sym_integer] = ACTIONS(2131), + [sym_float] = ACTIONS(2131), + [sym_char] = ACTIONS(2131), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [674] = { + [sym__expression] = STATE(1640), + [sym_block] = STATE(1640), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1640), + [sym_nil] = STATE(1640), + [sym__atom] = STATE(1640), + [sym_quoted_atom] = STATE(1640), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1640), + [sym_charlist] = STATE(1640), + [sym_sigil] = STATE(1640), + [sym_list] = STATE(1640), + [sym_tuple] = STATE(1640), + [sym_bitstring] = STATE(1640), + [sym_map] = STATE(1640), + [sym_unary_operator] = STATE(1640), + [sym_binary_operator] = STATE(1640), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1640), + [sym_call] = STATE(1640), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1640), + [sym_anonymous_function] = STATE(1640), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2133), + [sym_integer] = ACTIONS(2133), + [sym_float] = ACTIONS(2133), + [sym_char] = ACTIONS(2133), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2133), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [675] = { + [sym__expression] = STATE(4138), + [sym_block] = STATE(4138), + [sym_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(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4138), + [sym_call] = STATE(4138), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4138), + [sym_anonymous_function] = STATE(4138), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2135), + [sym_integer] = ACTIONS(2135), + [sym_float] = ACTIONS(2135), + [sym_char] = ACTIONS(2135), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2135), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [676] = { + [sym__expression] = STATE(4123), + [sym_block] = STATE(4123), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(4123), + [sym_nil] = STATE(4123), + [sym__atom] = STATE(4123), + [sym_quoted_atom] = STATE(4123), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4123), + [sym_call] = STATE(4123), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4123), + [sym_anonymous_function] = STATE(4123), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2137), + [sym_integer] = ACTIONS(2137), + [sym_float] = ACTIONS(2137), + [sym_char] = ACTIONS(2137), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [677] = { + [sym__expression] = STATE(2685), + [sym_block] = STATE(2685), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2685), + [sym_nil] = STATE(2685), + [sym__atom] = STATE(2685), + [sym_quoted_atom] = STATE(2685), + [sym__quoted_i_double] = STATE(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [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(5624), + [sym_dot] = STATE(2685), + [sym_call] = STATE(2685), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), [sym__anonymous_dot] = STATE(5522), - [sym__double_call] = STATE(1770), - [sym_access_call] = STATE(4094), - [sym_anonymous_function] = STATE(4094), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2685), + [sym_anonymous_function] = STATE(2685), [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(1531), - [sym_integer] = ACTIONS(1531), - [sym_float] = ACTIONS(1531), - [sym_char] = ACTIONS(1531), - [anon_sym_true] = ACTIONS(948), - [anon_sym_false] = ACTIONS(948), - [anon_sym_nil] = ACTIONS(950), - [sym_atom] = ACTIONS(1531), - [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), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2139), + [sym_integer] = ACTIONS(2139), + [sym_float] = ACTIONS(2139), + [sym_char] = ACTIONS(2139), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), [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), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), }, - [885] = { - [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), + [678] = { + [sym__expression] = STATE(2684), + [sym_block] = STATE(2684), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2684), + [sym_nil] = STATE(2684), + [sym__atom] = STATE(2684), + [sym_quoted_atom] = STATE(2684), + [sym__quoted_i_double] = STATE(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [sym_string] = STATE(2684), + [sym_charlist] = STATE(2684), + [sym_sigil] = STATE(2684), + [sym_list] = STATE(2684), + [sym_tuple] = STATE(2684), + [sym_bitstring] = STATE(2684), + [sym_map] = STATE(2684), + [sym_unary_operator] = STATE(2684), + [sym_binary_operator] = STATE(2684), + [sym_operator_identifier] = STATE(5624), + [sym_dot] = STATE(2684), + [sym_call] = STATE(2684), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2684), + [sym_anonymous_function] = STATE(2684), [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(2565), - [sym_integer] = ACTIONS(2565), - [sym_float] = ACTIONS(2565), - [sym_char] = ACTIONS(2565), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(2565), - [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), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2141), + [sym_integer] = ACTIONS(2141), + [sym_float] = ACTIONS(2141), + [sym_char] = ACTIONS(2141), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(2141), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), [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), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), }, - [886] = { - [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(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(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), + [679] = { + [sym__expression] = STATE(3949), + [sym_block] = STATE(3949), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3949), + [sym_nil] = STATE(3949), + [sym__atom] = STATE(3949), + [sym_quoted_atom] = STATE(3949), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(3949), + [sym_charlist] = STATE(3949), + [sym_sigil] = STATE(3949), + [sym_list] = STATE(3949), + [sym_tuple] = STATE(3949), + [sym_bitstring] = STATE(3949), + [sym_map] = STATE(3949), + [sym_unary_operator] = STATE(3949), + [sym_binary_operator] = STATE(3949), [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), + [sym_dot] = STATE(3949), + [sym_call] = STATE(3949), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3949), + [sym_anonymous_function] = STATE(3949), [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), + [anon_sym_LPAREN] = ACTIONS(13), + [aux_sym_identifier_token1] = ACTIONS(15), + [anon_sym_DOT_DOT_DOT] = ACTIONS(15), + [sym_alias] = ACTIONS(2143), + [sym_integer] = ACTIONS(2143), + [sym_float] = ACTIONS(2143), + [sym_char] = ACTIONS(2143), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(2143), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), [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), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), }, - [888] = { + [680] = { + [sym__expression] = STATE(2310), + [sym_block] = STATE(2310), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2310), + [sym_nil] = STATE(2310), + [sym__atom] = STATE(2310), + [sym_quoted_atom] = STATE(2310), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [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(5600), + [sym_dot] = STATE(2310), + [sym_call] = STATE(2310), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2310), + [sym_anonymous_function] = STATE(2310), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2145), + [sym_integer] = ACTIONS(2145), + [sym_float] = ACTIONS(2145), + [sym_char] = ACTIONS(2145), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [681] = { + [sym__expression] = STATE(2104), + [sym_block] = STATE(2104), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2104), + [sym_nil] = STATE(2104), + [sym__atom] = STATE(2104), + [sym_quoted_atom] = STATE(2104), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2104), + [sym_charlist] = STATE(2104), + [sym_sigil] = STATE(2104), + [sym_list] = STATE(2104), + [sym_tuple] = STATE(2104), + [sym_bitstring] = STATE(2104), + [sym_map] = STATE(2104), + [sym_unary_operator] = STATE(2104), + [sym_binary_operator] = STATE(2104), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2104), + [sym_call] = STATE(2104), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2104), + [sym_anonymous_function] = STATE(2104), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2147), + [sym_integer] = ACTIONS(2147), + [sym_float] = ACTIONS(2147), + [sym_char] = ACTIONS(2147), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2147), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [682] = { + [sym__expression] = STATE(2078), + [sym_block] = STATE(2078), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(2078), + [sym_nil] = STATE(2078), + [sym__atom] = STATE(2078), + [sym_quoted_atom] = STATE(2078), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2078), + [sym_charlist] = STATE(2078), + [sym_sigil] = STATE(2078), + [sym_list] = STATE(2078), + [sym_tuple] = STATE(2078), + [sym_bitstring] = STATE(2078), + [sym_map] = STATE(2078), + [sym_unary_operator] = STATE(2078), + [sym_binary_operator] = STATE(2078), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2078), + [sym_call] = STATE(2078), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2078), + [sym_anonymous_function] = STATE(2078), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2007), + [sym_integer] = ACTIONS(2007), + [sym_float] = ACTIONS(2007), + [sym_char] = ACTIONS(2007), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(2007), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [683] = { + [sym__expression] = STATE(2113), + [sym_block] = STATE(2113), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2113), + [sym_nil] = STATE(2113), + [sym__atom] = STATE(2113), + [sym_quoted_atom] = STATE(2113), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2113), + [sym_call] = STATE(2113), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2113), + [sym_anonymous_function] = STATE(2113), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2149), + [sym_integer] = ACTIONS(2149), + [sym_float] = ACTIONS(2149), + [sym_char] = ACTIONS(2149), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [684] = { + [sym__expression] = STATE(3410), + [sym_block] = STATE(3410), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3410), + [sym_nil] = STATE(3410), + [sym__atom] = STATE(3410), + [sym_quoted_atom] = STATE(3410), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(3410), + [sym_charlist] = STATE(3410), + [sym_sigil] = STATE(3410), + [sym_list] = STATE(3410), + [sym_tuple] = STATE(3410), + [sym_bitstring] = STATE(3410), + [sym_map] = STATE(3410), + [sym_unary_operator] = STATE(3410), + [sym_binary_operator] = STATE(3410), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(3410), + [sym_call] = STATE(3410), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3410), + [sym_anonymous_function] = STATE(3410), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2151), + [sym_integer] = ACTIONS(2151), + [sym_float] = ACTIONS(2151), + [sym_char] = ACTIONS(2151), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [685] = { + [sym__expression] = STATE(3481), + [sym_block] = STATE(3481), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3481), + [sym_nil] = STATE(3481), + [sym__atom] = STATE(3481), + [sym_quoted_atom] = STATE(3481), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(3481), + [sym_charlist] = STATE(3481), + [sym_sigil] = STATE(3481), + [sym_list] = STATE(3481), + [sym_tuple] = STATE(3481), + [sym_bitstring] = STATE(3481), + [sym_map] = STATE(3481), + [sym_unary_operator] = STATE(3481), + [sym_binary_operator] = STATE(3481), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(3481), + [sym_call] = STATE(3481), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3481), + [sym_anonymous_function] = STATE(3481), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2153), + [sym_integer] = ACTIONS(2153), + [sym_float] = ACTIONS(2153), + [sym_char] = ACTIONS(2153), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(2153), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [686] = { + [sym__expression] = STATE(3412), + [sym_block] = STATE(3412), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3412), + [sym_nil] = STATE(3412), + [sym__atom] = STATE(3412), + [sym_quoted_atom] = STATE(3412), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(3412), + [sym_charlist] = STATE(3412), + [sym_sigil] = STATE(3412), + [sym_list] = STATE(3412), + [sym_tuple] = STATE(3412), + [sym_bitstring] = STATE(3412), + [sym_map] = STATE(3412), + [sym_unary_operator] = STATE(3412), + [sym_binary_operator] = STATE(3412), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(3412), + [sym_call] = STATE(3412), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3412), + [sym_anonymous_function] = STATE(3412), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2155), + [sym_integer] = ACTIONS(2155), + [sym_float] = ACTIONS(2155), + [sym_char] = ACTIONS(2155), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(2155), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [687] = { + [sym__expression] = STATE(2112), + [sym_block] = STATE(2112), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2112), + [sym_nil] = STATE(2112), + [sym__atom] = STATE(2112), + [sym_quoted_atom] = STATE(2112), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2112), + [sym_charlist] = STATE(2112), + [sym_sigil] = STATE(2112), + [sym_list] = STATE(2112), + [sym_tuple] = STATE(2112), + [sym_bitstring] = STATE(2112), + [sym_map] = STATE(2112), + [sym_unary_operator] = STATE(2112), + [sym_binary_operator] = STATE(2112), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2112), + [sym_call] = STATE(2112), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2112), + [sym_anonymous_function] = STATE(2112), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2157), + [sym_integer] = ACTIONS(2157), + [sym_float] = ACTIONS(2157), + [sym_char] = ACTIONS(2157), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2157), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [688] = { + [sym__expression] = STATE(3418), + [sym_block] = STATE(3418), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3418), + [sym_nil] = STATE(3418), + [sym__atom] = STATE(3418), + [sym_quoted_atom] = STATE(3418), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(3418), + [sym_charlist] = STATE(3418), + [sym_sigil] = STATE(3418), + [sym_list] = STATE(3418), + [sym_tuple] = STATE(3418), + [sym_bitstring] = STATE(3418), + [sym_map] = STATE(3418), + [sym_unary_operator] = STATE(3418), + [sym_binary_operator] = STATE(3418), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(3418), + [sym_call] = STATE(3418), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3418), + [sym_anonymous_function] = STATE(3418), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2159), + [sym_integer] = ACTIONS(2159), + [sym_float] = ACTIONS(2159), + [sym_char] = ACTIONS(2159), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(2159), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [689] = { + [sym__expression] = STATE(3205), + [sym_block] = STATE(3205), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3205), + [sym_nil] = STATE(3205), + [sym__atom] = STATE(3205), + [sym_quoted_atom] = STATE(3205), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [sym_string] = STATE(3205), + [sym_charlist] = STATE(3205), + [sym_sigil] = STATE(3205), + [sym_list] = STATE(3205), + [sym_tuple] = STATE(3205), + [sym_bitstring] = STATE(3205), + [sym_map] = STATE(3205), + [sym_unary_operator] = STATE(3205), + [sym_binary_operator] = STATE(3205), + [sym_operator_identifier] = STATE(5616), + [sym_dot] = STATE(3205), + [sym_call] = STATE(3205), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3205), + [sym_anonymous_function] = STATE(3205), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2161), + [sym_integer] = ACTIONS(2161), + [sym_float] = ACTIONS(2161), + [sym_char] = ACTIONS(2161), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(2161), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [690] = { + [sym__expression] = STATE(3206), + [sym_block] = STATE(3206), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3206), + [sym_nil] = STATE(3206), + [sym__atom] = STATE(3206), + [sym_quoted_atom] = STATE(3206), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [sym_string] = STATE(3206), + [sym_charlist] = STATE(3206), + [sym_sigil] = STATE(3206), + [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(5616), + [sym_dot] = STATE(3206), + [sym_call] = STATE(3206), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3206), + [sym_anonymous_function] = STATE(3206), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2163), + [sym_integer] = ACTIONS(2163), + [sym_float] = ACTIONS(2163), + [sym_char] = ACTIONS(2163), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [691] = { + [sym__expression] = STATE(3207), + [sym_block] = STATE(3207), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3207), + [sym_nil] = STATE(3207), + [sym__atom] = STATE(3207), + [sym_quoted_atom] = STATE(3207), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [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(5616), + [sym_dot] = STATE(3207), + [sym_call] = STATE(3207), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3207), + [sym_anonymous_function] = STATE(3207), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2165), + [sym_integer] = ACTIONS(2165), + [sym_float] = ACTIONS(2165), + [sym_char] = ACTIONS(2165), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(2165), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [692] = { + [sym__expression] = STATE(3419), + [sym_block] = STATE(3419), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3419), + [sym_nil] = STATE(3419), + [sym__atom] = STATE(3419), + [sym_quoted_atom] = STATE(3419), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [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(5608), + [sym_dot] = STATE(3419), + [sym_call] = STATE(3419), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3419), + [sym_anonymous_function] = STATE(3419), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2167), + [sym_integer] = ACTIONS(2167), + [sym_float] = ACTIONS(2167), + [sym_char] = ACTIONS(2167), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [693] = { + [sym__expression] = STATE(3420), + [sym_block] = STATE(3420), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3420), + [sym_nil] = STATE(3420), + [sym__atom] = STATE(3420), + [sym_quoted_atom] = STATE(3420), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [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(5608), + [sym_dot] = STATE(3420), + [sym_call] = STATE(3420), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3420), + [sym_anonymous_function] = STATE(3420), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2169), + [sym_integer] = ACTIONS(2169), + [sym_float] = ACTIONS(2169), + [sym_char] = ACTIONS(2169), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [694] = { + [sym__expression] = STATE(2312), + [sym_block] = STATE(2312), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2312), + [sym_nil] = STATE(2312), + [sym__atom] = STATE(2312), + [sym_quoted_atom] = STATE(2312), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [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(5600), + [sym_dot] = STATE(2312), + [sym_call] = STATE(2312), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2312), + [sym_anonymous_function] = STATE(2312), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2171), + [sym_integer] = ACTIONS(2171), + [sym_float] = ACTIONS(2171), + [sym_char] = ACTIONS(2171), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2171), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [695] = { + [sym__expression] = STATE(3421), + [sym_block] = STATE(3421), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3421), + [sym_nil] = STATE(3421), + [sym__atom] = STATE(3421), + [sym_quoted_atom] = STATE(3421), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(3421), + [sym_charlist] = STATE(3421), + [sym_sigil] = STATE(3421), + [sym_list] = STATE(3421), + [sym_tuple] = STATE(3421), + [sym_bitstring] = STATE(3421), + [sym_map] = STATE(3421), + [sym_unary_operator] = STATE(3421), + [sym_binary_operator] = STATE(3421), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(3421), + [sym_call] = STATE(3421), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3421), + [sym_anonymous_function] = STATE(3421), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2173), + [sym_integer] = ACTIONS(2173), + [sym_float] = ACTIONS(2173), + [sym_char] = ACTIONS(2173), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [696] = { + [sym__expression] = STATE(3422), + [sym_block] = STATE(3422), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3422), + [sym_nil] = STATE(3422), + [sym__atom] = STATE(3422), + [sym_quoted_atom] = STATE(3422), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(3422), + [sym_charlist] = STATE(3422), + [sym_sigil] = STATE(3422), + [sym_list] = STATE(3422), + [sym_tuple] = STATE(3422), + [sym_bitstring] = STATE(3422), + [sym_map] = STATE(3422), + [sym_unary_operator] = STATE(3422), + [sym_binary_operator] = STATE(3422), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(3422), + [sym_call] = STATE(3422), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3422), + [sym_anonymous_function] = STATE(3422), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2175), + [sym_integer] = ACTIONS(2175), + [sym_float] = ACTIONS(2175), + [sym_char] = ACTIONS(2175), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [697] = { + [sym__expression] = STATE(4082), + [sym_block] = STATE(4082), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(4082), + [sym_nil] = STATE(4082), + [sym__atom] = STATE(4082), + [sym_quoted_atom] = STATE(4082), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(4082), + [sym_call] = STATE(4082), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4082), + [sym_anonymous_function] = STATE(4082), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(1465), + [sym_integer] = ACTIONS(1465), + [sym_float] = ACTIONS(1465), + [sym_char] = ACTIONS(1465), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1465), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [698] = { + [sym__expression] = STATE(3423), + [sym_block] = STATE(3423), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3423), + [sym_nil] = STATE(3423), + [sym__atom] = STATE(3423), + [sym_quoted_atom] = STATE(3423), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [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(5608), + [sym_dot] = STATE(3423), + [sym_call] = STATE(3423), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3423), + [sym_anonymous_function] = STATE(3423), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2177), + [sym_integer] = ACTIONS(2177), + [sym_float] = ACTIONS(2177), + [sym_char] = ACTIONS(2177), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(2177), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [699] = { + [sym__expression] = STATE(3424), + [sym_block] = STATE(3424), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3424), + [sym_nil] = STATE(3424), + [sym__atom] = STATE(3424), + [sym_quoted_atom] = STATE(3424), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(3424), + [sym_charlist] = STATE(3424), + [sym_sigil] = STATE(3424), + [sym_list] = STATE(3424), + [sym_tuple] = STATE(3424), + [sym_bitstring] = STATE(3424), + [sym_map] = STATE(3424), + [sym_unary_operator] = STATE(3424), + [sym_binary_operator] = STATE(3424), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(3424), + [sym_call] = STATE(3424), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3424), + [sym_anonymous_function] = STATE(3424), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2179), + [sym_integer] = ACTIONS(2179), + [sym_float] = ACTIONS(2179), + [sym_char] = ACTIONS(2179), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(2179), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [700] = { + [sym__expression] = STATE(1850), + [sym_block] = STATE(1850), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1850), + [sym_nil] = STATE(1850), + [sym__atom] = STATE(1850), + [sym_quoted_atom] = STATE(1850), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1850), + [sym_charlist] = STATE(1850), + [sym_sigil] = STATE(1850), + [sym_list] = STATE(1850), + [sym_tuple] = STATE(1850), + [sym_bitstring] = STATE(1850), + [sym_map] = STATE(1850), + [sym_unary_operator] = STATE(1850), + [sym_binary_operator] = STATE(1850), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1850), + [sym_call] = STATE(1850), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1850), + [sym_anonymous_function] = STATE(1850), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2181), + [sym_integer] = ACTIONS(2181), + [sym_float] = ACTIONS(2181), + [sym_char] = ACTIONS(2181), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(2181), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [701] = { + [sym__expression] = STATE(2835), + [sym_block] = STATE(2835), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(2835), + [sym_nil] = STATE(2835), + [sym__atom] = STATE(2835), + [sym_quoted_atom] = STATE(2835), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2835), + [sym_charlist] = STATE(2835), + [sym_sigil] = STATE(2835), + [sym_list] = STATE(2835), + [sym_tuple] = STATE(2835), + [sym_bitstring] = STATE(2835), + [sym_map] = STATE(2835), + [sym_unary_operator] = STATE(2835), + [sym_binary_operator] = STATE(2835), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2835), + [sym_call] = STATE(2835), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2835), + [sym_anonymous_function] = STATE(2835), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(1409), + [sym_integer] = ACTIONS(1409), + [sym_float] = ACTIONS(1409), + [sym_char] = ACTIONS(1409), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1409), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [702] = { + [sym__expression] = STATE(3426), + [sym_block] = STATE(3426), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3426), + [sym_nil] = STATE(3426), + [sym__atom] = STATE(3426), + [sym_quoted_atom] = STATE(3426), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [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(5608), + [sym_dot] = STATE(3426), + [sym_call] = STATE(3426), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3426), + [sym_anonymous_function] = STATE(3426), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2183), + [sym_integer] = ACTIONS(2183), + [sym_float] = ACTIONS(2183), + [sym_char] = ACTIONS(2183), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [703] = { + [sym__expression] = STATE(3429), + [sym_block] = STATE(3429), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3429), + [sym_nil] = STATE(3429), + [sym__atom] = STATE(3429), + [sym_quoted_atom] = STATE(3429), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [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(5608), + [sym_dot] = STATE(3429), + [sym_call] = STATE(3429), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3429), + [sym_anonymous_function] = STATE(3429), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2185), + [sym_integer] = ACTIONS(2185), + [sym_float] = ACTIONS(2185), + [sym_char] = ACTIONS(2185), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(2185), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [704] = { + [sym__expression] = STATE(1817), + [sym_block] = STATE(1817), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(1817), + [sym_nil] = STATE(1817), + [sym__atom] = STATE(1817), + [sym_quoted_atom] = STATE(1817), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(1817), + [sym_call] = STATE(1817), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(1817), + [sym_anonymous_function] = STATE(1817), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(1765), + [sym_integer] = ACTIONS(1765), + [sym_float] = ACTIONS(1765), + [sym_char] = ACTIONS(1765), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [705] = { + [sym__expression] = STATE(2180), + [sym_block] = STATE(2180), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2180), + [sym_nil] = STATE(2180), + [sym__atom] = STATE(2180), + [sym_quoted_atom] = STATE(2180), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2180), + [sym_charlist] = STATE(2180), + [sym_sigil] = STATE(2180), + [sym_list] = STATE(2180), + [sym_tuple] = STATE(2180), + [sym_bitstring] = STATE(2180), + [sym_map] = STATE(2180), + [sym_unary_operator] = STATE(2180), + [sym_binary_operator] = STATE(2180), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2180), + [sym_call] = STATE(2180), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2180), + [sym_anonymous_function] = STATE(2180), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2187), + [sym_integer] = ACTIONS(2187), + [sym_float] = ACTIONS(2187), + [sym_char] = ACTIONS(2187), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2187), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [706] = { + [sym__expression] = STATE(4141), + [sym_block] = STATE(4141), + [sym_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(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4141), + [sym_call] = STATE(4141), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4141), + [sym_anonymous_function] = STATE(4141), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2189), + [sym_integer] = ACTIONS(2189), + [sym_float] = ACTIONS(2189), + [sym_char] = ACTIONS(2189), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2189), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [707] = { + [sym__expression] = STATE(3210), + [sym_block] = STATE(3210), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3210), + [sym_nil] = STATE(3210), + [sym__atom] = STATE(3210), + [sym_quoted_atom] = STATE(3210), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [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(5616), + [sym_dot] = STATE(3210), + [sym_call] = STATE(3210), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3210), + [sym_anonymous_function] = STATE(3210), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2191), + [sym_integer] = ACTIONS(2191), + [sym_float] = ACTIONS(2191), + [sym_char] = ACTIONS(2191), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [708] = { + [sym__expression] = STATE(4144), + [sym_block] = STATE(4144), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(4144), + [sym_nil] = STATE(4144), + [sym__atom] = STATE(4144), + [sym_quoted_atom] = STATE(4144), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4144), + [sym_call] = STATE(4144), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4144), + [sym_anonymous_function] = STATE(4144), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2193), + [sym_integer] = ACTIONS(2193), + [sym_float] = ACTIONS(2193), + [sym_char] = ACTIONS(2193), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2193), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [709] = { + [sym__expression] = STATE(3211), + [sym_block] = STATE(3211), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3211), + [sym_nil] = STATE(3211), + [sym__atom] = STATE(3211), + [sym_quoted_atom] = STATE(3211), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [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(5616), + [sym_dot] = STATE(3211), + [sym_call] = STATE(3211), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3211), + [sym_anonymous_function] = STATE(3211), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2195), + [sym_integer] = ACTIONS(2195), + [sym_float] = ACTIONS(2195), + [sym_char] = ACTIONS(2195), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(2195), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [710] = { + [sym__expression] = STATE(3212), + [sym_block] = STATE(3212), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3212), + [sym_nil] = STATE(3212), + [sym__atom] = STATE(3212), + [sym_quoted_atom] = STATE(3212), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [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(5616), + [sym_dot] = STATE(3212), + [sym_call] = STATE(3212), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3212), + [sym_anonymous_function] = STATE(3212), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2197), + [sym_integer] = ACTIONS(2197), + [sym_float] = ACTIONS(2197), + [sym_char] = ACTIONS(2197), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [711] = { + [sym__expression] = STATE(3213), + [sym_block] = STATE(3213), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3213), + [sym_nil] = STATE(3213), + [sym__atom] = STATE(3213), + [sym_quoted_atom] = STATE(3213), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [sym_string] = STATE(3213), + [sym_charlist] = STATE(3213), + [sym_sigil] = STATE(3213), + [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(5616), + [sym_dot] = STATE(3213), + [sym_call] = STATE(3213), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3213), + [sym_anonymous_function] = STATE(3213), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2199), + [sym_integer] = ACTIONS(2199), + [sym_float] = ACTIONS(2199), + [sym_char] = ACTIONS(2199), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(2199), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [712] = { + [sym__expression] = STATE(3214), + [sym_block] = STATE(3214), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3214), + [sym_nil] = STATE(3214), + [sym__atom] = STATE(3214), + [sym_quoted_atom] = STATE(3214), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [sym_string] = STATE(3214), + [sym_charlist] = STATE(3214), + [sym_sigil] = STATE(3214), + [sym_list] = STATE(3214), + [sym_tuple] = STATE(3214), + [sym_bitstring] = STATE(3214), + [sym_map] = STATE(3214), + [sym_unary_operator] = STATE(3214), + [sym_binary_operator] = STATE(3214), + [sym_operator_identifier] = STATE(5616), + [sym_dot] = STATE(3214), + [sym_call] = STATE(3214), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3214), + [sym_anonymous_function] = STATE(3214), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2201), + [sym_integer] = ACTIONS(2201), + [sym_float] = ACTIONS(2201), + [sym_char] = ACTIONS(2201), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(2201), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [713] = { + [sym__expression] = STATE(3215), + [sym_block] = STATE(3215), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3215), + [sym_nil] = STATE(3215), + [sym__atom] = STATE(3215), + [sym_quoted_atom] = STATE(3215), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [sym_string] = STATE(3215), + [sym_charlist] = STATE(3215), + [sym_sigil] = STATE(3215), + [sym_list] = STATE(3215), + [sym_tuple] = STATE(3215), + [sym_bitstring] = STATE(3215), + [sym_map] = STATE(3215), + [sym_unary_operator] = STATE(3215), + [sym_binary_operator] = STATE(3215), + [sym_operator_identifier] = STATE(5616), + [sym_dot] = STATE(3215), + [sym_call] = STATE(3215), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3215), + [sym_anonymous_function] = STATE(3215), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2203), + [sym_integer] = ACTIONS(2203), + [sym_float] = ACTIONS(2203), + [sym_char] = ACTIONS(2203), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(2203), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [714] = { + [sym__expression] = STATE(3216), + [sym_block] = STATE(3216), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3216), + [sym_nil] = STATE(3216), + [sym__atom] = STATE(3216), + [sym_quoted_atom] = STATE(3216), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [sym_string] = STATE(3216), + [sym_charlist] = STATE(3216), + [sym_sigil] = STATE(3216), + [sym_list] = STATE(3216), + [sym_tuple] = STATE(3216), + [sym_bitstring] = STATE(3216), + [sym_map] = STATE(3216), + [sym_unary_operator] = STATE(3216), + [sym_binary_operator] = STATE(3216), + [sym_operator_identifier] = STATE(5616), + [sym_dot] = STATE(3216), + [sym_call] = STATE(3216), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3216), + [sym_anonymous_function] = STATE(3216), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2205), + [sym_integer] = ACTIONS(2205), + [sym_float] = ACTIONS(2205), + [sym_char] = ACTIONS(2205), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [715] = { + [sym__expression] = STATE(3217), + [sym_block] = STATE(3217), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3217), + [sym_nil] = STATE(3217), + [sym__atom] = STATE(3217), + [sym_quoted_atom] = STATE(3217), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [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(5616), + [sym_dot] = STATE(3217), + [sym_call] = STATE(3217), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3217), + [sym_anonymous_function] = STATE(3217), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2207), + [sym_integer] = ACTIONS(2207), + [sym_float] = ACTIONS(2207), + [sym_char] = ACTIONS(2207), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [716] = { + [sym__expression] = STATE(3218), + [sym_block] = STATE(3218), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3218), + [sym_nil] = STATE(3218), + [sym__atom] = STATE(3218), + [sym_quoted_atom] = STATE(3218), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [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(5616), + [sym_dot] = STATE(3218), + [sym_call] = STATE(3218), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3218), + [sym_anonymous_function] = STATE(3218), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2209), + [sym_integer] = ACTIONS(2209), + [sym_float] = ACTIONS(2209), + [sym_char] = ACTIONS(2209), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(2209), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [717] = { + [sym__expression] = STATE(3219), + [sym_block] = STATE(3219), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3219), + [sym_nil] = STATE(3219), + [sym__atom] = STATE(3219), + [sym_quoted_atom] = STATE(3219), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [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(5616), + [sym_dot] = STATE(3219), + [sym_call] = STATE(3219), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3219), + [sym_anonymous_function] = STATE(3219), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2211), + [sym_integer] = ACTIONS(2211), + [sym_float] = ACTIONS(2211), + [sym_char] = ACTIONS(2211), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(2211), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [718] = { + [sym__expression] = STATE(3220), + [sym_block] = STATE(3220), + [sym_identifier] = STATE(62), + [sym_boolean] = STATE(3220), + [sym_nil] = STATE(3220), + [sym__atom] = STATE(3220), + [sym_quoted_atom] = STATE(3220), + [sym__quoted_i_double] = STATE(3305), + [sym__quoted_i_single] = STATE(3304), + [sym__quoted_i_heredoc_single] = STATE(3303), + [sym__quoted_i_heredoc_double] = STATE(3302), + [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(5616), + [sym_dot] = STATE(3220), + [sym_call] = STATE(3220), + [sym__call_without_parentheses] = STATE(3301), + [sym__call_with_parentheses] = STATE(3300), + [sym__local_call_without_parentheses] = STATE(3299), + [sym__local_call_with_parentheses] = STATE(2410), + [sym__local_call_just_do_block] = STATE(3298), + [sym__remote_call_without_parentheses] = STATE(3297), + [sym__remote_call_with_parentheses] = STATE(2413), + [sym__remote_dot] = STATE(58), + [sym__anonymous_call] = STATE(2415), + [sym__anonymous_dot] = STATE(5486), + [sym__double_call] = STATE(3295), + [sym_access_call] = STATE(3220), + [sym_anonymous_function] = STATE(3220), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(524), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2213), + [sym_integer] = ACTIONS(2213), + [sym_float] = ACTIONS(2213), + [sym_char] = ACTIONS(2213), + [anon_sym_true] = ACTIONS(530), + [anon_sym_false] = ACTIONS(530), + [anon_sym_nil] = ACTIONS(532), + [sym_atom] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(534), + [anon_sym_SQUOTE] = ACTIONS(536), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(538), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(540), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LBRACK] = ACTIONS(544), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(546), + [anon_sym_LT_LT] = ACTIONS(550), + [anon_sym_PERCENT] = ACTIONS(552), + [anon_sym_AMP] = ACTIONS(554), + [anon_sym_PLUS] = ACTIONS(556), + [anon_sym_DASH] = ACTIONS(556), + [anon_sym_BANG] = ACTIONS(556), + [anon_sym_CARET] = ACTIONS(556), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(556), + [anon_sym_not] = ACTIONS(556), + [anon_sym_AT] = ACTIONS(558), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(562), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(568), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(570), + }, + [719] = { + [sym__expression] = STATE(1784), + [sym_block] = STATE(1784), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(1784), + [sym_nil] = STATE(1784), + [sym__atom] = STATE(1784), + [sym_quoted_atom] = STATE(1784), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(1784), + [sym_call] = STATE(1784), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(1784), + [sym_anonymous_function] = STATE(1784), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(1739), + [sym_integer] = ACTIONS(1739), + [sym_float] = ACTIONS(1739), + [sym_char] = ACTIONS(1739), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [720] = { + [sym__expression] = STATE(2177), + [sym_block] = STATE(2177), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2177), + [sym_nil] = STATE(2177), + [sym__atom] = STATE(2177), + [sym_quoted_atom] = STATE(2177), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2177), + [sym_charlist] = STATE(2177), + [sym_sigil] = STATE(2177), + [sym_list] = STATE(2177), + [sym_tuple] = STATE(2177), + [sym_bitstring] = STATE(2177), + [sym_map] = STATE(2177), + [sym_unary_operator] = STATE(2177), + [sym_binary_operator] = STATE(2177), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2177), + [sym_call] = STATE(2177), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2177), + [sym_anonymous_function] = STATE(2177), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2215), + [sym_integer] = ACTIONS(2215), + [sym_float] = ACTIONS(2215), + [sym_char] = ACTIONS(2215), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [721] = { + [sym__expression] = STATE(2315), + [sym_block] = STATE(2315), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2315), + [sym_nil] = STATE(2315), + [sym__atom] = STATE(2315), + [sym_quoted_atom] = STATE(2315), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [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(5600), + [sym_dot] = STATE(2315), + [sym_call] = STATE(2315), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2315), + [sym_anonymous_function] = STATE(2315), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2217), + [sym_integer] = ACTIONS(2217), + [sym_float] = ACTIONS(2217), + [sym_char] = ACTIONS(2217), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2217), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [722] = { + [sym__expression] = STATE(3431), + [sym_block] = STATE(3431), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3431), + [sym_nil] = STATE(3431), + [sym__atom] = STATE(3431), + [sym_quoted_atom] = STATE(3431), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(3431), + [sym_charlist] = STATE(3431), + [sym_sigil] = STATE(3431), + [sym_list] = STATE(3431), + [sym_tuple] = STATE(3431), + [sym_bitstring] = STATE(3431), + [sym_map] = STATE(3431), + [sym_unary_operator] = STATE(3431), + [sym_binary_operator] = STATE(3431), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(3431), + [sym_call] = STATE(3431), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3431), + [sym_anonymous_function] = STATE(3431), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2219), + [sym_integer] = ACTIONS(2219), + [sym_float] = ACTIONS(2219), + [sym_char] = ACTIONS(2219), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(2219), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [723] = { + [sym__expression] = STATE(2316), + [sym_block] = STATE(2316), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2316), + [sym_nil] = STATE(2316), + [sym__atom] = STATE(2316), + [sym_quoted_atom] = STATE(2316), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [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(5600), + [sym_dot] = STATE(2316), + [sym_call] = STATE(2316), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2316), + [sym_anonymous_function] = STATE(2316), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2221), + [sym_integer] = ACTIONS(2221), + [sym_float] = ACTIONS(2221), + [sym_char] = ACTIONS(2221), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [724] = { + [sym__expression] = STATE(2702), + [sym_block] = STATE(2702), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(2702), + [sym_nil] = STATE(2702), + [sym__atom] = STATE(2702), + [sym_quoted_atom] = STATE(2702), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2702), + [sym_charlist] = STATE(2702), + [sym_sigil] = STATE(2702), + [sym_list] = STATE(2702), + [sym_tuple] = STATE(2702), + [sym_bitstring] = STATE(2702), + [sym_map] = STATE(2702), + [sym_unary_operator] = STATE(2702), + [sym_binary_operator] = STATE(2702), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2702), + [sym_call] = STATE(2702), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2702), + [sym_anonymous_function] = STATE(2702), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2223), + [sym_integer] = ACTIONS(2223), + [sym_float] = ACTIONS(2223), + [sym_char] = ACTIONS(2223), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2223), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [725] = { + [sym__expression] = STATE(2986), + [sym_block] = STATE(2986), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(2986), + [sym_nil] = STATE(2986), + [sym__atom] = STATE(2986), + [sym_quoted_atom] = STATE(2986), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2986), + [sym_charlist] = STATE(2986), + [sym_sigil] = STATE(2986), + [sym_list] = STATE(2986), + [sym_tuple] = STATE(2986), + [sym_bitstring] = STATE(2986), + [sym_map] = STATE(2986), + [sym_unary_operator] = STATE(2986), + [sym_binary_operator] = STATE(2986), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2986), + [sym_call] = STATE(2986), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2986), + [sym_anonymous_function] = STATE(2986), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2225), + [sym_integer] = ACTIONS(2225), + [sym_float] = ACTIONS(2225), + [sym_char] = ACTIONS(2225), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [726] = { + [sym__expression] = STATE(2987), + [sym_block] = STATE(2987), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(2987), + [sym_nil] = STATE(2987), + [sym__atom] = STATE(2987), + [sym_quoted_atom] = STATE(2987), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2987), + [sym_charlist] = STATE(2987), + [sym_sigil] = STATE(2987), + [sym_list] = STATE(2987), + [sym_tuple] = STATE(2987), + [sym_bitstring] = STATE(2987), + [sym_map] = STATE(2987), + [sym_unary_operator] = STATE(2987), + [sym_binary_operator] = STATE(2987), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2987), + [sym_call] = STATE(2987), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2987), + [sym_anonymous_function] = STATE(2987), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2227), + [sym_integer] = ACTIONS(2227), + [sym_float] = ACTIONS(2227), + [sym_char] = ACTIONS(2227), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2227), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [727] = { + [sym__expression] = STATE(2988), + [sym_block] = STATE(2988), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(2988), + [sym_nil] = STATE(2988), + [sym__atom] = STATE(2988), + [sym_quoted_atom] = STATE(2988), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2988), + [sym_charlist] = STATE(2988), + [sym_sigil] = STATE(2988), + [sym_list] = STATE(2988), + [sym_tuple] = STATE(2988), + [sym_bitstring] = STATE(2988), + [sym_map] = STATE(2988), + [sym_unary_operator] = STATE(2988), + [sym_binary_operator] = STATE(2988), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2988), + [sym_call] = STATE(2988), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2988), + [sym_anonymous_function] = STATE(2988), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2229), + [sym_integer] = ACTIONS(2229), + [sym_float] = ACTIONS(2229), + [sym_char] = ACTIONS(2229), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2229), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [728] = { + [sym__expression] = STATE(2989), + [sym_block] = STATE(2989), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(2989), + [sym_nil] = STATE(2989), + [sym__atom] = STATE(2989), + [sym_quoted_atom] = STATE(2989), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2989), + [sym_charlist] = STATE(2989), + [sym_sigil] = STATE(2989), + [sym_list] = STATE(2989), + [sym_tuple] = STATE(2989), + [sym_bitstring] = STATE(2989), + [sym_map] = STATE(2989), + [sym_unary_operator] = STATE(2989), + [sym_binary_operator] = STATE(2989), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2989), + [sym_call] = STATE(2989), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2989), + [sym_anonymous_function] = STATE(2989), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2231), + [sym_integer] = ACTIONS(2231), + [sym_float] = ACTIONS(2231), + [sym_char] = ACTIONS(2231), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2231), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [729] = { + [sym__expression] = STATE(3872), + [sym_block] = STATE(3872), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3872), + [sym_nil] = STATE(3872), + [sym__atom] = STATE(3872), + [sym_quoted_atom] = STATE(3872), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3872), + [sym_charlist] = STATE(3872), + [sym_sigil] = STATE(3872), + [sym_list] = STATE(3872), + [sym_tuple] = STATE(3872), + [sym_bitstring] = STATE(3872), + [sym_map] = STATE(3872), + [sym_unary_operator] = STATE(3872), + [sym_binary_operator] = STATE(3872), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3872), + [sym_call] = STATE(3872), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3872), + [sym_anonymous_function] = STATE(3872), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(2233), + [sym_integer] = ACTIONS(2233), + [sym_float] = ACTIONS(2233), + [sym_char] = ACTIONS(2233), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2233), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [730] = { + [sym__expression] = STATE(1784), + [sym_block] = STATE(1784), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(1784), + [sym_nil] = STATE(1784), + [sym__atom] = STATE(1784), + [sym_quoted_atom] = STATE(1784), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(1784), + [sym_call] = STATE(1784), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(1784), + [sym_anonymous_function] = STATE(1784), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(1739), + [sym_integer] = ACTIONS(1739), + [sym_float] = ACTIONS(1739), + [sym_char] = ACTIONS(1739), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1739), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [731] = { + [sym__expression] = STATE(3966), + [sym_block] = STATE(3966), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3966), + [sym_nil] = STATE(3966), + [sym__atom] = STATE(3966), + [sym_quoted_atom] = STATE(3966), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [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(5643), + [sym_dot] = STATE(3966), + [sym_call] = STATE(3966), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3966), + [sym_anonymous_function] = STATE(3966), + [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_alias] = ACTIONS(2235), + [sym_integer] = ACTIONS(2235), + [sym_float] = ACTIONS(2235), + [sym_char] = ACTIONS(2235), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(2235), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [732] = { + [sym__expression] = STATE(3433), + [sym_block] = STATE(3433), + [sym_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(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(3433), + [sym_charlist] = STATE(3433), + [sym_sigil] = STATE(3433), + [sym_list] = STATE(3433), + [sym_tuple] = STATE(3433), + [sym_bitstring] = STATE(3433), + [sym_map] = STATE(3433), + [sym_unary_operator] = STATE(3433), + [sym_binary_operator] = STATE(3433), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(3433), + [sym_call] = STATE(3433), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3433), + [sym_anonymous_function] = STATE(3433), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2237), + [sym_integer] = ACTIONS(2237), + [sym_float] = ACTIONS(2237), + [sym_char] = ACTIONS(2237), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [733] = { + [sym__expression] = STATE(3871), + [sym_block] = STATE(3871), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3871), + [sym_nil] = STATE(3871), + [sym__atom] = STATE(3871), + [sym_quoted_atom] = STATE(3871), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3871), + [sym_charlist] = STATE(3871), + [sym_sigil] = STATE(3871), + [sym_list] = STATE(3871), + [sym_tuple] = STATE(3871), + [sym_bitstring] = STATE(3871), + [sym_map] = STATE(3871), + [sym_unary_operator] = STATE(3871), + [sym_binary_operator] = STATE(3871), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3871), + [sym_call] = STATE(3871), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3871), + [sym_anonymous_function] = STATE(3871), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(2239), + [sym_integer] = ACTIONS(2239), + [sym_float] = ACTIONS(2239), + [sym_char] = ACTIONS(2239), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2239), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [734] = { + [sym__expression] = STATE(1817), + [sym_block] = STATE(1817), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(1817), + [sym_nil] = STATE(1817), + [sym__atom] = STATE(1817), + [sym_quoted_atom] = STATE(1817), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(1817), + [sym_call] = STATE(1817), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(1817), + [sym_anonymous_function] = STATE(1817), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(1765), + [sym_integer] = ACTIONS(1765), + [sym_float] = ACTIONS(1765), + [sym_char] = ACTIONS(1765), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1765), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [735] = { + [sym__expression] = STATE(3660), + [sym_block] = STATE(3660), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3660), + [sym_nil] = STATE(3660), + [sym__atom] = STATE(3660), + [sym_quoted_atom] = STATE(3660), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3660), + [sym_charlist] = STATE(3660), + [sym_sigil] = STATE(3660), + [sym_list] = STATE(3660), + [sym_tuple] = STATE(3660), + [sym_bitstring] = STATE(3660), + [sym_map] = STATE(3660), + [sym_unary_operator] = STATE(3660), + [sym_binary_operator] = STATE(3660), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3660), + [sym_call] = STATE(3660), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3660), + [sym_anonymous_function] = STATE(3660), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(2241), + [sym_integer] = ACTIONS(2241), + [sym_float] = ACTIONS(2241), + [sym_char] = ACTIONS(2241), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [736] = { + [sym__expression] = STATE(3678), + [sym_block] = STATE(3678), + [sym_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(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(3678), + [sym_call] = STATE(3678), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3678), + [sym_anonymous_function] = STATE(3678), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(2243), + [sym_integer] = ACTIONS(2243), + [sym_float] = ACTIONS(2243), + [sym_char] = ACTIONS(2243), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [737] = { + [sym__expression] = STATE(3604), + [sym_block] = STATE(3604), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(3604), + [sym_nil] = STATE(3604), + [sym__atom] = STATE(3604), + [sym_quoted_atom] = STATE(3604), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(3604), + [sym_charlist] = STATE(3604), + [sym_sigil] = STATE(3604), + [sym_list] = STATE(3604), + [sym_tuple] = STATE(3604), + [sym_bitstring] = STATE(3604), + [sym_map] = STATE(3604), + [sym_unary_operator] = STATE(3604), + [sym_binary_operator] = STATE(3604), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(3604), + [sym_call] = STATE(3604), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3604), + [sym_anonymous_function] = STATE(3604), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2245), + [sym_integer] = ACTIONS(2245), + [sym_float] = ACTIONS(2245), + [sym_char] = ACTIONS(2245), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(2245), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [738] = { + [sym__expression] = STATE(3676), + [sym_block] = STATE(3676), + [sym_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(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(3676), + [sym_call] = STATE(3676), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3676), + [sym_anonymous_function] = STATE(3676), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(2247), + [sym_integer] = ACTIONS(2247), + [sym_float] = ACTIONS(2247), + [sym_char] = ACTIONS(2247), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2247), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [739] = { + [sym__expression] = STATE(3675), + [sym_block] = STATE(3675), + [sym_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(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(3675), + [sym_call] = STATE(3675), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3675), + [sym_anonymous_function] = STATE(3675), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(2249), + [sym_integer] = ACTIONS(2249), + [sym_float] = ACTIONS(2249), + [sym_char] = ACTIONS(2249), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2249), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [740] = { + [sym__expression] = STATE(3674), + [sym_block] = STATE(3674), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3674), + [sym_nil] = STATE(3674), + [sym__atom] = STATE(3674), + [sym_quoted_atom] = STATE(3674), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3674), + [sym_charlist] = STATE(3674), + [sym_sigil] = STATE(3674), + [sym_list] = STATE(3674), + [sym_tuple] = STATE(3674), + [sym_bitstring] = STATE(3674), + [sym_map] = STATE(3674), + [sym_unary_operator] = STATE(3674), + [sym_binary_operator] = STATE(3674), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3674), + [sym_call] = STATE(3674), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3674), + [sym_anonymous_function] = STATE(3674), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(2251), + [sym_integer] = ACTIONS(2251), + [sym_float] = ACTIONS(2251), + [sym_char] = ACTIONS(2251), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [741] = { + [sym__expression] = STATE(1488), + [sym_block] = STATE(1488), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1488), + [sym_nil] = STATE(1488), + [sym__atom] = STATE(1488), + [sym_quoted_atom] = STATE(1488), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1488), + [sym_charlist] = STATE(1488), + [sym_sigil] = STATE(1488), + [sym_list] = STATE(1488), + [sym_tuple] = STATE(1488), + [sym_bitstring] = STATE(1488), + [sym_map] = STATE(1488), + [sym_unary_operator] = STATE(1488), + [sym_binary_operator] = STATE(1488), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1488), + [sym_call] = STATE(1488), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1488), + [sym_anonymous_function] = STATE(1488), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1319), + [sym_integer] = ACTIONS(1319), + [sym_float] = ACTIONS(1319), + [sym_char] = ACTIONS(1319), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(1319), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [742] = { + [sym__expression] = STATE(3672), + [sym_block] = STATE(3672), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3672), + [sym_nil] = STATE(3672), + [sym__atom] = STATE(3672), + [sym_quoted_atom] = STATE(3672), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3672), + [sym_charlist] = STATE(3672), + [sym_sigil] = STATE(3672), + [sym_list] = STATE(3672), + [sym_tuple] = STATE(3672), + [sym_bitstring] = STATE(3672), + [sym_map] = STATE(3672), + [sym_unary_operator] = STATE(3672), + [sym_binary_operator] = STATE(3672), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3672), + [sym_call] = STATE(3672), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3672), + [sym_anonymous_function] = STATE(3672), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(2253), + [sym_integer] = ACTIONS(2253), + [sym_float] = ACTIONS(2253), + [sym_char] = ACTIONS(2253), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2253), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [743] = { + [sym__expression] = STATE(3671), + [sym_block] = STATE(3671), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3671), + [sym_nil] = STATE(3671), + [sym__atom] = STATE(3671), + [sym_quoted_atom] = STATE(3671), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(3671), + [sym_call] = STATE(3671), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3671), + [sym_anonymous_function] = STATE(3671), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(2255), + [sym_integer] = ACTIONS(2255), + [sym_float] = ACTIONS(2255), + [sym_char] = ACTIONS(2255), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2255), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [744] = { + [sym__expression] = STATE(4034), + [sym_block] = STATE(4034), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(4034), + [sym_nil] = STATE(4034), + [sym__atom] = STATE(4034), + [sym_quoted_atom] = STATE(4034), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(4034), + [sym_charlist] = STATE(4034), + [sym_sigil] = STATE(4034), + [sym_list] = STATE(4034), + [sym_tuple] = STATE(4034), + [sym_bitstring] = STATE(4034), + [sym_map] = STATE(4034), + [sym_unary_operator] = STATE(4034), + [sym_binary_operator] = STATE(4034), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(4034), + [sym_call] = STATE(4034), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(4034), + [sym_anonymous_function] = STATE(4034), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(1467), + [sym_integer] = ACTIONS(1467), + [sym_float] = ACTIONS(1467), + [sym_char] = ACTIONS(1467), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [745] = { + [sym__expression] = STATE(3670), + [sym_block] = STATE(3670), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3670), + [sym_nil] = STATE(3670), + [sym__atom] = STATE(3670), + [sym_quoted_atom] = STATE(3670), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3670), + [sym_charlist] = STATE(3670), + [sym_sigil] = STATE(3670), + [sym_list] = STATE(3670), + [sym_tuple] = STATE(3670), + [sym_bitstring] = STATE(3670), + [sym_map] = STATE(3670), + [sym_unary_operator] = STATE(3670), + [sym_binary_operator] = STATE(3670), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3670), + [sym_call] = STATE(3670), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3670), + [sym_anonymous_function] = STATE(3670), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(2257), + [sym_integer] = ACTIONS(2257), + [sym_float] = ACTIONS(2257), + [sym_char] = ACTIONS(2257), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [746] = { + [sym__expression] = STATE(3434), + [sym_block] = STATE(3434), + [sym_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(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [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(5608), + [sym_dot] = STATE(3434), + [sym_call] = STATE(3434), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(3434), + [sym_anonymous_function] = STATE(3434), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2259), + [sym_integer] = ACTIONS(2259), + [sym_float] = ACTIONS(2259), + [sym_char] = ACTIONS(2259), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(2259), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [747] = { [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__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), [sym_string] = STATE(3669), [sym_charlist] = STATE(3669), [sym_sigil] = STATE(3669), @@ -138580,1997 +112329,13920 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_map] = STATE(3669), [sym_unary_operator] = STATE(3669), [sym_binary_operator] = STATE(3669), - [sym_operator_identifier] = STATE(5604), + [sym_operator_identifier] = STATE(5592), [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__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), [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(2569), - [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(2261), + [sym_integer] = ACTIONS(2261), + [sym_float] = ACTIONS(2261), + [sym_char] = ACTIONS(2261), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2261), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), [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), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [748] = { + [sym__expression] = STATE(3668), + [sym_block] = STATE(3668), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3668), + [sym_nil] = STATE(3668), + [sym__atom] = STATE(3668), + [sym_quoted_atom] = STATE(3668), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3668), + [sym_charlist] = STATE(3668), + [sym_sigil] = STATE(3668), + [sym_list] = STATE(3668), + [sym_tuple] = STATE(3668), + [sym_bitstring] = STATE(3668), + [sym_map] = STATE(3668), + [sym_unary_operator] = STATE(3668), + [sym_binary_operator] = STATE(3668), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3668), + [sym_call] = STATE(3668), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3668), + [sym_anonymous_function] = STATE(3668), [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(2571), - [sym_integer] = ACTIONS(2571), - [sym_float] = ACTIONS(2571), - [sym_char] = ACTIONS(2571), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(2571), - [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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(2263), + [sym_integer] = ACTIONS(2263), + [sym_float] = ACTIONS(2263), + [sym_char] = ACTIONS(2263), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2263), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), [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), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [749] = { + [sym__expression] = STATE(3667), + [sym_block] = STATE(3667), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3667), + [sym_nil] = STATE(3667), + [sym__atom] = STATE(3667), + [sym_quoted_atom] = STATE(3667), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3667), + [sym_charlist] = STATE(3667), + [sym_sigil] = STATE(3667), + [sym_list] = STATE(3667), + [sym_tuple] = STATE(3667), + [sym_bitstring] = STATE(3667), + [sym_map] = STATE(3667), + [sym_unary_operator] = STATE(3667), + [sym_binary_operator] = STATE(3667), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3667), + [sym_call] = STATE(3667), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3667), + [sym_anonymous_function] = STATE(3667), [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(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), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(2265), + [sym_integer] = ACTIONS(2265), + [sym_float] = ACTIONS(2265), + [sym_char] = ACTIONS(2265), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), [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), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), }, - [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), + [750] = { + [sym__expression] = STATE(2990), + [sym_block] = STATE(2990), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(2990), + [sym_nil] = STATE(2990), + [sym__atom] = STATE(2990), + [sym_quoted_atom] = STATE(2990), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2990), + [sym_charlist] = STATE(2990), + [sym_sigil] = STATE(2990), + [sym_list] = STATE(2990), + [sym_tuple] = STATE(2990), + [sym_bitstring] = STATE(2990), + [sym_map] = STATE(2990), + [sym_unary_operator] = STATE(2990), + [sym_binary_operator] = STATE(2990), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2990), + [sym_call] = STATE(2990), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2990), + [sym_anonymous_function] = STATE(2990), [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(2573), - [sym_integer] = ACTIONS(2573), - [sym_float] = ACTIONS(2573), - [sym_char] = ACTIONS(2573), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(2573), - [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), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2267), + [sym_integer] = ACTIONS(2267), + [sym_float] = ACTIONS(2267), + [sym_char] = ACTIONS(2267), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2267), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), [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), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), }, - [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), + [751] = { + [sym__expression] = STATE(2133), + [sym_block] = STATE(2133), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(2133), + [sym_nil] = STATE(2133), + [sym__atom] = STATE(2133), + [sym_quoted_atom] = STATE(2133), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2133), + [sym_charlist] = STATE(2133), + [sym_sigil] = STATE(2133), + [sym_list] = STATE(2133), + [sym_tuple] = STATE(2133), + [sym_bitstring] = STATE(2133), + [sym_map] = STATE(2133), + [sym_unary_operator] = STATE(2133), + [sym_binary_operator] = STATE(2133), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2133), + [sym_call] = STATE(2133), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2133), + [sym_anonymous_function] = STATE(2133), [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(2575), - [sym_integer] = ACTIONS(2575), - [sym_float] = ACTIONS(2575), - [sym_char] = ACTIONS(2575), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(2575), - [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), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1883), + [sym_integer] = ACTIONS(1883), + [sym_float] = ACTIONS(1883), + [sym_char] = ACTIONS(1883), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1883), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), [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), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), }, - [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), + [752] = { + [sym__expression] = STATE(2136), + [sym_block] = STATE(2136), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(2136), + [sym_nil] = STATE(2136), + [sym__atom] = STATE(2136), + [sym_quoted_atom] = STATE(2136), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2136), + [sym_charlist] = STATE(2136), + [sym_sigil] = STATE(2136), + [sym_list] = STATE(2136), + [sym_tuple] = STATE(2136), + [sym_bitstring] = STATE(2136), + [sym_map] = STATE(2136), + [sym_unary_operator] = STATE(2136), + [sym_binary_operator] = STATE(2136), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2136), + [sym_call] = STATE(2136), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2136), + [sym_anonymous_function] = STATE(2136), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1881), + [sym_integer] = ACTIONS(1881), + [sym_float] = ACTIONS(1881), + [sym_char] = ACTIONS(1881), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [753] = { + [sym__expression] = STATE(3666), + [sym_block] = STATE(3666), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3666), + [sym_nil] = STATE(3666), + [sym__atom] = STATE(3666), + [sym_quoted_atom] = STATE(3666), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3666), + [sym_charlist] = STATE(3666), + [sym_sigil] = STATE(3666), + [sym_list] = STATE(3666), + [sym_tuple] = STATE(3666), + [sym_bitstring] = STATE(3666), + [sym_map] = STATE(3666), + [sym_unary_operator] = STATE(3666), + [sym_binary_operator] = STATE(3666), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3666), + [sym_call] = STATE(3666), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3666), + [sym_anonymous_function] = STATE(3666), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(2269), + [sym_integer] = ACTIONS(2269), + [sym_float] = ACTIONS(2269), + [sym_char] = ACTIONS(2269), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2269), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [754] = { + [sym__expression] = STATE(3665), + [sym_block] = STATE(3665), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3665), + [sym_nil] = STATE(3665), + [sym__atom] = STATE(3665), + [sym_quoted_atom] = STATE(3665), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3665), + [sym_charlist] = STATE(3665), + [sym_sigil] = STATE(3665), + [sym_list] = STATE(3665), + [sym_tuple] = STATE(3665), + [sym_bitstring] = STATE(3665), + [sym_map] = STATE(3665), + [sym_unary_operator] = STATE(3665), + [sym_binary_operator] = STATE(3665), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3665), + [sym_call] = STATE(3665), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3665), + [sym_anonymous_function] = STATE(3665), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(2271), + [sym_integer] = ACTIONS(2271), + [sym_float] = ACTIONS(2271), + [sym_char] = ACTIONS(2271), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2271), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [755] = { + [sym__expression] = STATE(3664), + [sym_block] = STATE(3664), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3664), + [sym_nil] = STATE(3664), + [sym__atom] = STATE(3664), + [sym_quoted_atom] = STATE(3664), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3664), + [sym_charlist] = STATE(3664), + [sym_sigil] = STATE(3664), + [sym_list] = STATE(3664), + [sym_tuple] = STATE(3664), + [sym_bitstring] = STATE(3664), + [sym_map] = STATE(3664), + [sym_unary_operator] = STATE(3664), + [sym_binary_operator] = STATE(3664), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3664), + [sym_call] = STATE(3664), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3664), + [sym_anonymous_function] = STATE(3664), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(2273), + [sym_integer] = ACTIONS(2273), + [sym_float] = ACTIONS(2273), + [sym_char] = ACTIONS(2273), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2273), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [756] = { + [sym__expression] = STATE(1567), + [sym_block] = STATE(1567), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1567), + [sym_nil] = STATE(1567), + [sym__atom] = STATE(1567), + [sym_quoted_atom] = STATE(1567), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1567), + [sym_charlist] = STATE(1567), + [sym_sigil] = STATE(1567), + [sym_list] = STATE(1567), + [sym_tuple] = STATE(1567), + [sym_bitstring] = STATE(1567), + [sym_map] = STATE(1567), + [sym_unary_operator] = STATE(1567), + [sym_binary_operator] = STATE(1567), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1567), + [sym_call] = STATE(1567), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1567), + [sym_anonymous_function] = STATE(1567), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2275), + [sym_integer] = ACTIONS(2275), + [sym_float] = ACTIONS(2275), + [sym_char] = ACTIONS(2275), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2275), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [757] = { + [sym__expression] = STATE(3663), + [sym_block] = STATE(3663), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3663), + [sym_nil] = STATE(3663), + [sym__atom] = STATE(3663), + [sym_quoted_atom] = STATE(3663), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3663), + [sym_charlist] = STATE(3663), + [sym_sigil] = STATE(3663), + [sym_list] = STATE(3663), + [sym_tuple] = STATE(3663), + [sym_bitstring] = STATE(3663), + [sym_map] = STATE(3663), + [sym_unary_operator] = STATE(3663), + [sym_binary_operator] = STATE(3663), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3663), + [sym_call] = STATE(3663), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3663), + [sym_anonymous_function] = STATE(3663), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(2277), + [sym_integer] = ACTIONS(2277), + [sym_float] = ACTIONS(2277), + [sym_char] = ACTIONS(2277), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2277), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [758] = { + [sym__expression] = STATE(2992), + [sym_block] = STATE(2992), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(2992), + [sym_nil] = STATE(2992), + [sym__atom] = STATE(2992), + [sym_quoted_atom] = STATE(2992), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [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(5631), + [sym_dot] = STATE(2992), + [sym_call] = STATE(2992), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2992), + [sym_anonymous_function] = STATE(2992), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2279), + [sym_integer] = ACTIONS(2279), + [sym_float] = ACTIONS(2279), + [sym_char] = ACTIONS(2279), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2279), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [759] = { + [sym__expression] = STATE(3009), + [sym_block] = STATE(3009), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3009), + [sym_nil] = STATE(3009), + [sym__atom] = STATE(3009), + [sym_quoted_atom] = STATE(3009), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(3009), + [sym_charlist] = STATE(3009), + [sym_sigil] = STATE(3009), + [sym_list] = STATE(3009), + [sym_tuple] = STATE(3009), + [sym_bitstring] = STATE(3009), + [sym_map] = STATE(3009), + [sym_unary_operator] = STATE(3009), + [sym_binary_operator] = STATE(3009), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(3009), + [sym_call] = STATE(3009), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3009), + [sym_anonymous_function] = STATE(3009), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2281), + [sym_integer] = ACTIONS(2281), + [sym_float] = ACTIONS(2281), + [sym_char] = ACTIONS(2281), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2281), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [760] = { + [sym__expression] = STATE(3016), + [sym_block] = STATE(3016), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3016), + [sym_nil] = STATE(3016), + [sym__atom] = STATE(3016), + [sym_quoted_atom] = STATE(3016), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(3016), + [sym_charlist] = STATE(3016), + [sym_sigil] = STATE(3016), + [sym_list] = STATE(3016), + [sym_tuple] = STATE(3016), + [sym_bitstring] = STATE(3016), + [sym_map] = STATE(3016), + [sym_unary_operator] = STATE(3016), + [sym_binary_operator] = STATE(3016), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(3016), + [sym_call] = STATE(3016), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3016), + [sym_anonymous_function] = STATE(3016), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2283), + [sym_integer] = ACTIONS(2283), + [sym_float] = ACTIONS(2283), + [sym_char] = ACTIONS(2283), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2283), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [761] = { + [sym__expression] = STATE(3017), + [sym_block] = STATE(3017), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3017), + [sym_nil] = STATE(3017), + [sym__atom] = STATE(3017), + [sym_quoted_atom] = STATE(3017), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(3017), + [sym_charlist] = STATE(3017), + [sym_sigil] = STATE(3017), + [sym_list] = STATE(3017), + [sym_tuple] = STATE(3017), + [sym_bitstring] = STATE(3017), + [sym_map] = STATE(3017), + [sym_unary_operator] = STATE(3017), + [sym_binary_operator] = STATE(3017), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(3017), + [sym_call] = STATE(3017), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3017), + [sym_anonymous_function] = STATE(3017), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2285), + [sym_integer] = ACTIONS(2285), + [sym_float] = ACTIONS(2285), + [sym_char] = ACTIONS(2285), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2285), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [762] = { + [sym__expression] = STATE(3018), + [sym_block] = STATE(3018), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3018), + [sym_nil] = STATE(3018), + [sym__atom] = STATE(3018), + [sym_quoted_atom] = STATE(3018), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(3018), + [sym_charlist] = STATE(3018), + [sym_sigil] = STATE(3018), + [sym_list] = STATE(3018), + [sym_tuple] = STATE(3018), + [sym_bitstring] = STATE(3018), + [sym_map] = STATE(3018), + [sym_unary_operator] = STATE(3018), + [sym_binary_operator] = STATE(3018), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(3018), + [sym_call] = STATE(3018), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3018), + [sym_anonymous_function] = STATE(3018), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2287), + [sym_integer] = ACTIONS(2287), + [sym_float] = ACTIONS(2287), + [sym_char] = ACTIONS(2287), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2287), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [763] = { + [sym__expression] = STATE(2151), + [sym_block] = STATE(2151), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(2151), + [sym_nil] = STATE(2151), + [sym__atom] = STATE(2151), + [sym_quoted_atom] = STATE(2151), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [sym_string] = STATE(2151), + [sym_charlist] = STATE(2151), + [sym_sigil] = STATE(2151), + [sym_list] = STATE(2151), + [sym_tuple] = STATE(2151), + [sym_bitstring] = STATE(2151), + [sym_map] = STATE(2151), + [sym_unary_operator] = STATE(2151), + [sym_binary_operator] = STATE(2151), + [sym_operator_identifier] = STATE(5608), + [sym_dot] = STATE(2151), + [sym_call] = STATE(2151), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2151), + [sym_anonymous_function] = STATE(2151), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1879), + [sym_integer] = ACTIONS(1879), + [sym_float] = ACTIONS(1879), + [sym_char] = ACTIONS(1879), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [764] = { + [sym__expression] = STATE(3020), + [sym_block] = STATE(3020), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3020), + [sym_nil] = STATE(3020), + [sym__atom] = STATE(3020), + [sym_quoted_atom] = STATE(3020), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [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(5631), + [sym_dot] = STATE(3020), + [sym_call] = STATE(3020), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3020), + [sym_anonymous_function] = STATE(3020), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2289), + [sym_integer] = ACTIONS(2289), + [sym_float] = ACTIONS(2289), + [sym_char] = ACTIONS(2289), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2289), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [765] = { + [sym__expression] = STATE(3021), + [sym_block] = STATE(3021), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3021), + [sym_nil] = STATE(3021), + [sym__atom] = STATE(3021), + [sym_quoted_atom] = STATE(3021), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [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(5631), + [sym_dot] = STATE(3021), + [sym_call] = STATE(3021), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3021), + [sym_anonymous_function] = STATE(3021), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2291), + [sym_integer] = ACTIONS(2291), + [sym_float] = ACTIONS(2291), + [sym_char] = ACTIONS(2291), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2291), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [766] = { + [sym__expression] = STATE(3022), + [sym_block] = STATE(3022), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3022), + [sym_nil] = STATE(3022), + [sym__atom] = STATE(3022), + [sym_quoted_atom] = STATE(3022), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(3022), + [sym_charlist] = STATE(3022), + [sym_sigil] = STATE(3022), + [sym_list] = STATE(3022), + [sym_tuple] = STATE(3022), + [sym_bitstring] = STATE(3022), + [sym_map] = STATE(3022), + [sym_unary_operator] = STATE(3022), + [sym_binary_operator] = STATE(3022), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(3022), + [sym_call] = STATE(3022), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3022), + [sym_anonymous_function] = STATE(3022), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2293), + [sym_integer] = ACTIONS(2293), + [sym_float] = ACTIONS(2293), + [sym_char] = ACTIONS(2293), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2293), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [767] = { + [sym__expression] = STATE(1209), + [sym_block] = STATE(1209), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(1209), + [sym_nil] = STATE(1209), + [sym__atom] = STATE(1209), + [sym_quoted_atom] = STATE(1209), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1209), + [sym_charlist] = STATE(1209), + [sym_sigil] = STATE(1209), + [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(5600), + [sym_dot] = STATE(1209), + [sym_call] = STATE(1209), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1209), + [sym_anonymous_function] = STATE(1209), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2057), + [sym_integer] = ACTIONS(2057), + [sym_float] = ACTIONS(2057), + [sym_char] = ACTIONS(2057), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [768] = { + [sym__expression] = STATE(3024), + [sym_block] = STATE(3024), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3024), + [sym_nil] = STATE(3024), + [sym__atom] = STATE(3024), + [sym_quoted_atom] = STATE(3024), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(3024), + [sym_charlist] = STATE(3024), + [sym_sigil] = STATE(3024), + [sym_list] = STATE(3024), + [sym_tuple] = STATE(3024), + [sym_bitstring] = STATE(3024), + [sym_map] = STATE(3024), + [sym_unary_operator] = STATE(3024), + [sym_binary_operator] = STATE(3024), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(3024), + [sym_call] = STATE(3024), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3024), + [sym_anonymous_function] = STATE(3024), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2295), + [sym_integer] = ACTIONS(2295), + [sym_float] = ACTIONS(2295), + [sym_char] = ACTIONS(2295), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2295), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [769] = { + [sym__expression] = STATE(3025), + [sym_block] = STATE(3025), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(3025), + [sym_nil] = STATE(3025), + [sym__atom] = STATE(3025), + [sym_quoted_atom] = STATE(3025), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(3025), + [sym_charlist] = STATE(3025), + [sym_sigil] = STATE(3025), + [sym_list] = STATE(3025), + [sym_tuple] = STATE(3025), + [sym_bitstring] = STATE(3025), + [sym_map] = STATE(3025), + [sym_unary_operator] = STATE(3025), + [sym_binary_operator] = STATE(3025), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(3025), + [sym_call] = STATE(3025), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3025), + [sym_anonymous_function] = STATE(3025), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2297), + [sym_integer] = ACTIONS(2297), + [sym_float] = ACTIONS(2297), + [sym_char] = ACTIONS(2297), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2297), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [770] = { + [sym__expression] = STATE(3870), + [sym_block] = STATE(3870), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3870), + [sym_nil] = STATE(3870), + [sym__atom] = STATE(3870), + [sym_quoted_atom] = STATE(3870), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3870), + [sym_charlist] = STATE(3870), + [sym_sigil] = STATE(3870), + [sym_list] = STATE(3870), + [sym_tuple] = STATE(3870), + [sym_bitstring] = STATE(3870), + [sym_map] = STATE(3870), + [sym_unary_operator] = STATE(3870), + [sym_binary_operator] = STATE(3870), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3870), + [sym_call] = STATE(3870), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3870), + [sym_anonymous_function] = STATE(3870), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(2299), + [sym_integer] = ACTIONS(2299), + [sym_float] = ACTIONS(2299), + [sym_char] = ACTIONS(2299), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2299), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [771] = { + [sym__expression] = STATE(2332), + [sym_block] = STATE(2332), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2332), + [sym_nil] = STATE(2332), + [sym__atom] = STATE(2332), + [sym_quoted_atom] = STATE(2332), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2332), + [sym_charlist] = STATE(2332), + [sym_sigil] = STATE(2332), + [sym_list] = STATE(2332), + [sym_tuple] = STATE(2332), + [sym_bitstring] = STATE(2332), + [sym_map] = STATE(2332), + [sym_unary_operator] = STATE(2332), + [sym_binary_operator] = STATE(2332), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(2332), + [sym_call] = STATE(2332), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2332), + [sym_anonymous_function] = STATE(2332), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2301), + [sym_integer] = ACTIONS(2301), + [sym_float] = ACTIONS(2301), + [sym_char] = ACTIONS(2301), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2301), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [772] = { + [sym__expression] = STATE(1372), + [sym_block] = STATE(1372), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(1372), + [sym_nil] = STATE(1372), + [sym__atom] = STATE(1372), + [sym_quoted_atom] = STATE(1372), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1372), + [sym_charlist] = STATE(1372), + [sym_sigil] = STATE(1372), + [sym_list] = STATE(1372), + [sym_tuple] = STATE(1372), + [sym_bitstring] = STATE(1372), + [sym_map] = STATE(1372), + [sym_unary_operator] = STATE(1372), + [sym_binary_operator] = STATE(1372), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1372), + [sym_call] = STATE(1372), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1372), + [sym_anonymous_function] = STATE(1372), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2303), + [sym_integer] = ACTIONS(2303), + [sym_float] = ACTIONS(2303), + [sym_char] = ACTIONS(2303), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2303), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [773] = { + [sym__expression] = STATE(2703), + [sym_block] = STATE(2703), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(2703), + [sym_nil] = STATE(2703), + [sym__atom] = STATE(2703), + [sym_quoted_atom] = STATE(2703), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2703), + [sym_charlist] = STATE(2703), + [sym_sigil] = STATE(2703), + [sym_list] = STATE(2703), + [sym_tuple] = STATE(2703), + [sym_bitstring] = STATE(2703), + [sym_map] = STATE(2703), + [sym_unary_operator] = STATE(2703), + [sym_binary_operator] = STATE(2703), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2703), + [sym_call] = STATE(2703), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2703), + [sym_anonymous_function] = STATE(2703), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2305), + [sym_integer] = ACTIONS(2305), + [sym_float] = ACTIONS(2305), + [sym_char] = ACTIONS(2305), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2305), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [774] = { + [sym__expression] = STATE(2153), + [sym_block] = STATE(2153), + [sym_identifier] = STATE(70), + [sym_boolean] = STATE(2153), + [sym_nil] = STATE(2153), + [sym__atom] = STATE(2153), + [sym_quoted_atom] = STATE(2153), + [sym__quoted_i_double] = STATE(2187), + [sym__quoted_i_single] = STATE(2188), + [sym__quoted_i_heredoc_single] = STATE(2189), + [sym__quoted_i_heredoc_double] = STATE(2190), + [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(5608), + [sym_dot] = STATE(2153), + [sym_call] = STATE(2153), + [sym__call_without_parentheses] = STATE(2191), + [sym__call_with_parentheses] = STATE(2192), + [sym__local_call_without_parentheses] = STATE(2193), + [sym__local_call_with_parentheses] = STATE(1512), + [sym__local_call_just_do_block] = STATE(2195), + [sym__remote_call_without_parentheses] = STATE(2196), + [sym__remote_call_with_parentheses] = STATE(1511), + [sym__remote_dot] = STATE(71), + [sym__anonymous_call] = STATE(1509), + [sym__anonymous_dot] = STATE(5456), + [sym__double_call] = STATE(2156), + [sym_access_call] = STATE(2153), + [sym_anonymous_function] = STATE(2153), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(343), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(1877), + [sym_integer] = ACTIONS(1877), + [sym_float] = ACTIONS(1877), + [sym_char] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(349), + [anon_sym_false] = ACTIONS(349), + [anon_sym_nil] = ACTIONS(351), + [sym_atom] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(353), + [anon_sym_SQUOTE] = ACTIONS(355), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(357), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(359), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LBRACK] = ACTIONS(363), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(365), + [anon_sym_LT_LT] = ACTIONS(369), + [anon_sym_PERCENT] = ACTIONS(371), + [anon_sym_AMP] = ACTIONS(632), + [anon_sym_PLUS] = ACTIONS(634), + [anon_sym_DASH] = ACTIONS(634), + [anon_sym_BANG] = ACTIONS(634), + [anon_sym_CARET] = ACTIONS(634), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(634), + [anon_sym_not] = ACTIONS(634), + [anon_sym_AT] = ACTIONS(636), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(379), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(638), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(385), + }, + [775] = { + [sym__expression] = STATE(3657), + [sym_block] = STATE(3657), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(3657), + [sym_nil] = STATE(3657), + [sym__atom] = STATE(3657), + [sym_quoted_atom] = STATE(3657), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3657), + [sym_charlist] = STATE(3657), + [sym_sigil] = STATE(3657), + [sym_list] = STATE(3657), + [sym_tuple] = STATE(3657), + [sym_bitstring] = STATE(3657), + [sym_map] = STATE(3657), + [sym_unary_operator] = STATE(3657), + [sym_binary_operator] = STATE(3657), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3657), + [sym_call] = STATE(3657), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3657), + [sym_anonymous_function] = STATE(3657), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(2307), + [sym_integer] = ACTIONS(2307), + [sym_float] = ACTIONS(2307), + [sym_char] = ACTIONS(2307), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [776] = { + [sym__expression] = STATE(2623), + [sym_block] = STATE(2623), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2623), + [sym_nil] = STATE(2623), + [sym__atom] = STATE(2623), + [sym_quoted_atom] = STATE(2623), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(2623), + [sym_charlist] = STATE(2623), + [sym_sigil] = STATE(2623), + [sym_list] = STATE(2623), + [sym_tuple] = STATE(2623), + [sym_bitstring] = STATE(2623), + [sym_map] = STATE(2623), + [sym_unary_operator] = STATE(2623), + [sym_binary_operator] = STATE(2623), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(2623), + [sym_call] = STATE(2623), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2623), + [sym_anonymous_function] = STATE(2623), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(1269), + [sym_integer] = ACTIONS(1269), + [sym_float] = ACTIONS(1269), + [sym_char] = ACTIONS(1269), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(1269), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [777] = { + [sym__expression] = STATE(3762), + [sym_block] = STATE(3762), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3762), + [sym_nil] = STATE(3762), + [sym__atom] = STATE(3762), + [sym_quoted_atom] = STATE(3762), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3762), + [sym_charlist] = STATE(3762), + [sym_sigil] = STATE(3762), + [sym_list] = STATE(3762), + [sym_tuple] = STATE(3762), + [sym_bitstring] = STATE(3762), + [sym_map] = STATE(3762), + [sym_unary_operator] = STATE(3762), + [sym_binary_operator] = STATE(3762), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3762), + [sym_call] = STATE(3762), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3762), + [sym_anonymous_function] = STATE(3762), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2309), + [sym_integer] = ACTIONS(2309), + [sym_float] = ACTIONS(2309), + [sym_char] = ACTIONS(2309), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [778] = { + [sym__expression] = STATE(3071), + [sym_block] = STATE(3071), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(3071), + [sym_nil] = STATE(3071), + [sym__atom] = STATE(3071), + [sym_quoted_atom] = STATE(3071), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3071), + [sym_charlist] = STATE(3071), + [sym_sigil] = STATE(3071), + [sym_list] = STATE(3071), + [sym_tuple] = STATE(3071), + [sym_bitstring] = STATE(3071), + [sym_map] = STATE(3071), + [sym_unary_operator] = STATE(3071), + [sym_binary_operator] = STATE(3071), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3071), + [sym_call] = STATE(3071), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3071), + [sym_anonymous_function] = STATE(3071), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2311), + [sym_integer] = ACTIONS(2311), + [sym_float] = ACTIONS(2311), + [sym_char] = ACTIONS(2311), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2311), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [779] = { + [sym__expression] = STATE(3763), + [sym_block] = STATE(3763), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3763), + [sym_nil] = STATE(3763), + [sym__atom] = STATE(3763), + [sym_quoted_atom] = STATE(3763), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3763), + [sym_charlist] = STATE(3763), + [sym_sigil] = STATE(3763), + [sym_list] = STATE(3763), + [sym_tuple] = STATE(3763), + [sym_bitstring] = STATE(3763), + [sym_map] = STATE(3763), + [sym_unary_operator] = STATE(3763), + [sym_binary_operator] = STATE(3763), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3763), + [sym_call] = STATE(3763), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3763), + [sym_anonymous_function] = STATE(3763), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2313), + [sym_integer] = ACTIONS(2313), + [sym_float] = ACTIONS(2313), + [sym_char] = ACTIONS(2313), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2313), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [780] = { + [sym__expression] = STATE(3764), + [sym_block] = STATE(3764), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3764), + [sym_nil] = STATE(3764), + [sym__atom] = STATE(3764), + [sym_quoted_atom] = STATE(3764), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3764), + [sym_charlist] = STATE(3764), + [sym_sigil] = STATE(3764), + [sym_list] = STATE(3764), + [sym_tuple] = STATE(3764), + [sym_bitstring] = STATE(3764), + [sym_map] = STATE(3764), + [sym_unary_operator] = STATE(3764), + [sym_binary_operator] = STATE(3764), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3764), + [sym_call] = STATE(3764), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3764), + [sym_anonymous_function] = STATE(3764), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2315), + [sym_integer] = ACTIONS(2315), + [sym_float] = ACTIONS(2315), + [sym_char] = ACTIONS(2315), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2315), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [781] = { + [sym__expression] = STATE(3765), + [sym_block] = STATE(3765), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3765), + [sym_nil] = STATE(3765), + [sym__atom] = STATE(3765), + [sym_quoted_atom] = STATE(3765), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3765), + [sym_charlist] = STATE(3765), + [sym_sigil] = STATE(3765), + [sym_list] = STATE(3765), + [sym_tuple] = STATE(3765), + [sym_bitstring] = STATE(3765), + [sym_map] = STATE(3765), + [sym_unary_operator] = STATE(3765), + [sym_binary_operator] = STATE(3765), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3765), + [sym_call] = STATE(3765), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3765), + [sym_anonymous_function] = STATE(3765), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2317), + [sym_integer] = ACTIONS(2317), + [sym_float] = ACTIONS(2317), + [sym_char] = ACTIONS(2317), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2317), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [782] = { + [sym__expression] = STATE(3766), + [sym_block] = STATE(3766), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3766), + [sym_nil] = STATE(3766), + [sym__atom] = STATE(3766), + [sym_quoted_atom] = STATE(3766), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3766), + [sym_charlist] = STATE(3766), + [sym_sigil] = STATE(3766), + [sym_list] = STATE(3766), + [sym_tuple] = STATE(3766), + [sym_bitstring] = STATE(3766), + [sym_map] = STATE(3766), + [sym_unary_operator] = STATE(3766), + [sym_binary_operator] = STATE(3766), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3766), + [sym_call] = STATE(3766), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3766), + [sym_anonymous_function] = STATE(3766), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2319), + [sym_integer] = ACTIONS(2319), + [sym_float] = ACTIONS(2319), + [sym_char] = ACTIONS(2319), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2319), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [783] = { + [sym__expression] = STATE(4043), + [sym_block] = STATE(4043), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(4043), + [sym_nil] = STATE(4043), + [sym__atom] = STATE(4043), + [sym_quoted_atom] = STATE(4043), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4043), + [sym_call] = STATE(4043), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4043), + [sym_anonymous_function] = STATE(4043), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2321), + [sym_integer] = ACTIONS(2321), + [sym_float] = ACTIONS(2321), + [sym_char] = ACTIONS(2321), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2321), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [784] = { + [sym__expression] = STATE(4045), + [sym_block] = STATE(4045), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(4045), + [sym_nil] = STATE(4045), + [sym__atom] = STATE(4045), + [sym_quoted_atom] = STATE(4045), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(4045), + [sym_charlist] = STATE(4045), + [sym_sigil] = STATE(4045), + [sym_list] = STATE(4045), + [sym_tuple] = STATE(4045), + [sym_bitstring] = STATE(4045), + [sym_map] = STATE(4045), + [sym_unary_operator] = STATE(4045), + [sym_binary_operator] = STATE(4045), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4045), + [sym_call] = STATE(4045), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4045), + [sym_anonymous_function] = STATE(4045), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2323), + [sym_integer] = ACTIONS(2323), + [sym_float] = ACTIONS(2323), + [sym_char] = ACTIONS(2323), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2323), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [785] = { + [sym__expression] = STATE(4049), + [sym_block] = STATE(4049), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(4049), + [sym_nil] = STATE(4049), + [sym__atom] = STATE(4049), + [sym_quoted_atom] = STATE(4049), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4049), + [sym_call] = STATE(4049), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4049), + [sym_anonymous_function] = STATE(4049), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2325), + [sym_integer] = ACTIONS(2325), + [sym_float] = ACTIONS(2325), + [sym_char] = ACTIONS(2325), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2325), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [786] = { + [sym__expression] = STATE(4057), + [sym_block] = STATE(4057), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(4057), + [sym_nil] = STATE(4057), + [sym__atom] = STATE(4057), + [sym_quoted_atom] = STATE(4057), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4057), + [sym_call] = STATE(4057), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4057), + [sym_anonymous_function] = STATE(4057), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2327), + [sym_integer] = ACTIONS(2327), + [sym_float] = ACTIONS(2327), + [sym_char] = ACTIONS(2327), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2327), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [787] = { + [sym__expression] = STATE(4062), + [sym_block] = STATE(4062), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(4062), + [sym_nil] = STATE(4062), + [sym__atom] = STATE(4062), + [sym_quoted_atom] = STATE(4062), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(4062), + [sym_charlist] = STATE(4062), + [sym_sigil] = STATE(4062), + [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(5548), + [sym_dot] = STATE(4062), + [sym_call] = STATE(4062), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4062), + [sym_anonymous_function] = STATE(4062), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2329), + [sym_integer] = ACTIONS(2329), + [sym_float] = ACTIONS(2329), + [sym_char] = ACTIONS(2329), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2329), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [788] = { + [sym__expression] = STATE(3162), + [sym_block] = STATE(3162), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3162), + [sym_nil] = STATE(3162), + [sym__atom] = STATE(3162), + [sym_quoted_atom] = STATE(3162), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(3162), + [sym_call] = STATE(3162), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3162), + [sym_anonymous_function] = STATE(3162), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2331), + [sym_integer] = ACTIONS(2331), + [sym_float] = ACTIONS(2331), + [sym_char] = ACTIONS(2331), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2331), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [789] = { + [sym__expression] = STATE(3161), + [sym_block] = STATE(3161), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3161), + [sym_nil] = STATE(3161), + [sym__atom] = STATE(3161), + [sym_quoted_atom] = STATE(3161), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(3161), + [sym_call] = STATE(3161), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3161), + [sym_anonymous_function] = STATE(3161), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2333), + [sym_integer] = ACTIONS(2333), + [sym_float] = ACTIONS(2333), + [sym_char] = ACTIONS(2333), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2333), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [790] = { + [sym__expression] = STATE(4131), + [sym_block] = STATE(4131), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(4131), + [sym_nil] = STATE(4131), + [sym__atom] = STATE(4131), + [sym_quoted_atom] = STATE(4131), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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_binary_operator] = STATE(4131), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4131), + [sym_call] = STATE(4131), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4131), + [sym_anonymous_function] = STATE(4131), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2335), + [sym_integer] = ACTIONS(2335), + [sym_float] = ACTIONS(2335), + [sym_char] = ACTIONS(2335), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2335), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [791] = { + [sym__expression] = STATE(3767), + [sym_block] = STATE(3767), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3767), + [sym_nil] = STATE(3767), + [sym__atom] = STATE(3767), + [sym_quoted_atom] = STATE(3767), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3767), + [sym_charlist] = STATE(3767), + [sym_sigil] = STATE(3767), + [sym_list] = STATE(3767), + [sym_tuple] = STATE(3767), + [sym_bitstring] = STATE(3767), + [sym_map] = STATE(3767), + [sym_unary_operator] = STATE(3767), + [sym_binary_operator] = STATE(3767), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3767), + [sym_call] = STATE(3767), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3767), + [sym_anonymous_function] = STATE(3767), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2337), + [sym_integer] = ACTIONS(2337), + [sym_float] = ACTIONS(2337), + [sym_char] = ACTIONS(2337), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2337), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [792] = { + [sym__expression] = STATE(3768), + [sym_block] = STATE(3768), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3768), + [sym_nil] = STATE(3768), + [sym__atom] = STATE(3768), + [sym_quoted_atom] = STATE(3768), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3768), + [sym_charlist] = STATE(3768), + [sym_sigil] = STATE(3768), + [sym_list] = STATE(3768), + [sym_tuple] = STATE(3768), + [sym_bitstring] = STATE(3768), + [sym_map] = STATE(3768), + [sym_unary_operator] = STATE(3768), + [sym_binary_operator] = STATE(3768), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3768), + [sym_call] = STATE(3768), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3768), + [sym_anonymous_function] = STATE(3768), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2339), + [sym_integer] = ACTIONS(2339), + [sym_float] = ACTIONS(2339), + [sym_char] = ACTIONS(2339), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2339), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [793] = { + [sym__expression] = STATE(3769), + [sym_block] = STATE(3769), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3769), + [sym_nil] = STATE(3769), + [sym__atom] = STATE(3769), + [sym_quoted_atom] = STATE(3769), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3769), + [sym_charlist] = STATE(3769), + [sym_sigil] = STATE(3769), + [sym_list] = STATE(3769), + [sym_tuple] = STATE(3769), + [sym_bitstring] = STATE(3769), + [sym_map] = STATE(3769), + [sym_unary_operator] = STATE(3769), + [sym_binary_operator] = STATE(3769), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3769), + [sym_call] = STATE(3769), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3769), + [sym_anonymous_function] = STATE(3769), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2341), + [sym_integer] = ACTIONS(2341), + [sym_float] = ACTIONS(2341), + [sym_char] = ACTIONS(2341), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2341), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [794] = { + [sym__expression] = STATE(1367), + [sym_block] = STATE(1367), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(1367), + [sym_nil] = STATE(1367), + [sym__atom] = STATE(1367), + [sym_quoted_atom] = STATE(1367), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1367), + [sym_charlist] = STATE(1367), + [sym_sigil] = STATE(1367), + [sym_list] = STATE(1367), + [sym_tuple] = STATE(1367), + [sym_bitstring] = STATE(1367), + [sym_map] = STATE(1367), + [sym_unary_operator] = STATE(1367), + [sym_binary_operator] = STATE(1367), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1367), + [sym_call] = STATE(1367), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1367), + [sym_anonymous_function] = STATE(1367), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2343), + [sym_integer] = ACTIONS(2343), + [sym_float] = ACTIONS(2343), + [sym_char] = ACTIONS(2343), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2343), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [795] = { + [sym__expression] = STATE(2704), + [sym_block] = STATE(2704), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(2704), + [sym_nil] = STATE(2704), + [sym__atom] = STATE(2704), + [sym_quoted_atom] = STATE(2704), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2704), + [sym_charlist] = STATE(2704), + [sym_sigil] = STATE(2704), + [sym_list] = STATE(2704), + [sym_tuple] = STATE(2704), + [sym_bitstring] = STATE(2704), + [sym_map] = STATE(2704), + [sym_unary_operator] = STATE(2704), + [sym_binary_operator] = STATE(2704), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2704), + [sym_call] = STATE(2704), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2704), + [sym_anonymous_function] = STATE(2704), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2345), + [sym_integer] = ACTIONS(2345), + [sym_float] = ACTIONS(2345), + [sym_char] = ACTIONS(2345), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2345), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [796] = { + [sym__expression] = STATE(4063), + [sym_block] = STATE(4063), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(4063), + [sym_nil] = STATE(4063), + [sym__atom] = STATE(4063), + [sym_quoted_atom] = STATE(4063), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(4063), + [sym_charlist] = STATE(4063), + [sym_sigil] = STATE(4063), + [sym_list] = STATE(4063), + [sym_tuple] = STATE(4063), + [sym_bitstring] = STATE(4063), + [sym_map] = STATE(4063), + [sym_unary_operator] = STATE(4063), + [sym_binary_operator] = STATE(4063), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4063), + [sym_call] = STATE(4063), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4063), + [sym_anonymous_function] = STATE(4063), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2347), + [sym_integer] = ACTIONS(2347), + [sym_float] = ACTIONS(2347), + [sym_char] = ACTIONS(2347), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2347), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [797] = { + [sym__expression] = STATE(3770), + [sym_block] = STATE(3770), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3770), + [sym_nil] = STATE(3770), + [sym__atom] = STATE(3770), + [sym_quoted_atom] = STATE(3770), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3770), + [sym_charlist] = STATE(3770), + [sym_sigil] = STATE(3770), + [sym_list] = STATE(3770), + [sym_tuple] = STATE(3770), + [sym_bitstring] = STATE(3770), + [sym_map] = STATE(3770), + [sym_unary_operator] = STATE(3770), + [sym_binary_operator] = STATE(3770), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3770), + [sym_call] = STATE(3770), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3770), + [sym_anonymous_function] = STATE(3770), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2349), + [sym_integer] = ACTIONS(2349), + [sym_float] = ACTIONS(2349), + [sym_char] = ACTIONS(2349), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2349), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [798] = { + [sym__expression] = STATE(3771), + [sym_block] = STATE(3771), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3771), + [sym_nil] = STATE(3771), + [sym__atom] = STATE(3771), + [sym_quoted_atom] = STATE(3771), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3771), + [sym_charlist] = STATE(3771), + [sym_sigil] = STATE(3771), + [sym_list] = STATE(3771), + [sym_tuple] = STATE(3771), + [sym_bitstring] = STATE(3771), + [sym_map] = STATE(3771), + [sym_unary_operator] = STATE(3771), + [sym_binary_operator] = STATE(3771), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3771), + [sym_call] = STATE(3771), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3771), + [sym_anonymous_function] = STATE(3771), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2351), + [sym_integer] = ACTIONS(2351), + [sym_float] = ACTIONS(2351), + [sym_char] = ACTIONS(2351), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2351), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [799] = { + [sym__expression] = STATE(2952), + [sym_block] = STATE(2952), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2952), + [sym_nil] = STATE(2952), + [sym__atom] = STATE(2952), + [sym_quoted_atom] = STATE(2952), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2952), + [sym_charlist] = STATE(2952), + [sym_sigil] = STATE(2952), + [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(5631), + [sym_dot] = STATE(2952), + [sym_call] = STATE(2952), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2952), + [sym_anonymous_function] = STATE(2952), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2353), + [sym_integer] = ACTIONS(2353), + [sym_float] = ACTIONS(2353), + [sym_char] = ACTIONS(2353), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2353), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [800] = { + [sym__expression] = STATE(3115), + [sym_block] = STATE(3115), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(3115), + [sym_nil] = STATE(3115), + [sym__atom] = STATE(3115), + [sym_quoted_atom] = STATE(3115), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(3115), + [sym_charlist] = STATE(3115), + [sym_sigil] = STATE(3115), + [sym_list] = STATE(3115), + [sym_tuple] = STATE(3115), + [sym_bitstring] = STATE(3115), + [sym_map] = STATE(3115), + [sym_unary_operator] = STATE(3115), + [sym_binary_operator] = STATE(3115), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(3115), + [sym_call] = STATE(3115), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3115), + [sym_anonymous_function] = STATE(3115), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2355), + [sym_integer] = ACTIONS(2355), + [sym_float] = ACTIONS(2355), + [sym_char] = ACTIONS(2355), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2355), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [801] = { + [sym__expression] = STATE(3117), + [sym_block] = STATE(3117), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(3117), + [sym_nil] = STATE(3117), + [sym__atom] = STATE(3117), + [sym_quoted_atom] = STATE(3117), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [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(5631), + [sym_dot] = STATE(3117), + [sym_call] = STATE(3117), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3117), + [sym_anonymous_function] = STATE(3117), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2357), + [sym_integer] = ACTIONS(2357), + [sym_float] = ACTIONS(2357), + [sym_char] = ACTIONS(2357), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2357), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [802] = { + [sym__expression] = STATE(4125), + [sym_block] = STATE(4125), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(4125), + [sym_nil] = STATE(4125), + [sym__atom] = STATE(4125), + [sym_quoted_atom] = STATE(4125), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(4125), + [sym_charlist] = STATE(4125), + [sym_sigil] = STATE(4125), + [sym_list] = STATE(4125), + [sym_tuple] = STATE(4125), + [sym_bitstring] = STATE(4125), + [sym_map] = STATE(4125), + [sym_unary_operator] = STATE(4125), + [sym_binary_operator] = STATE(4125), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4125), + [sym_call] = STATE(4125), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4125), + [sym_anonymous_function] = STATE(4125), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2359), + [sym_integer] = ACTIONS(2359), + [sym_float] = ACTIONS(2359), + [sym_char] = ACTIONS(2359), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2359), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [803] = { + [sym__expression] = STATE(3118), + [sym_block] = STATE(3118), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(3118), + [sym_nil] = STATE(3118), + [sym__atom] = STATE(3118), + [sym_quoted_atom] = STATE(3118), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [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(5631), + [sym_dot] = STATE(3118), + [sym_call] = STATE(3118), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3118), + [sym_anonymous_function] = STATE(3118), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2361), + [sym_integer] = ACTIONS(2361), + [sym_float] = ACTIONS(2361), + [sym_char] = ACTIONS(2361), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2361), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [804] = { + [sym__expression] = STATE(3119), + [sym_block] = STATE(3119), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(3119), + [sym_nil] = STATE(3119), + [sym__atom] = STATE(3119), + [sym_quoted_atom] = STATE(3119), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [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(5631), + [sym_dot] = STATE(3119), + [sym_call] = STATE(3119), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3119), + [sym_anonymous_function] = STATE(3119), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2363), + [sym_integer] = ACTIONS(2363), + [sym_float] = ACTIONS(2363), + [sym_char] = ACTIONS(2363), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2363), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [805] = { + [sym__expression] = STATE(2664), + [sym_block] = STATE(2664), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2664), + [sym_nil] = STATE(2664), + [sym__atom] = STATE(2664), + [sym_quoted_atom] = STATE(2664), + [sym__quoted_i_double] = STATE(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [sym_string] = STATE(2664), + [sym_charlist] = STATE(2664), + [sym_sigil] = STATE(2664), + [sym_list] = STATE(2664), + [sym_tuple] = STATE(2664), + [sym_bitstring] = STATE(2664), + [sym_map] = STATE(2664), + [sym_unary_operator] = STATE(2664), + [sym_binary_operator] = STATE(2664), + [sym_operator_identifier] = STATE(5624), + [sym_dot] = STATE(2664), + [sym_call] = STATE(2664), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2664), + [sym_anonymous_function] = STATE(2664), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2365), + [sym_integer] = ACTIONS(2365), + [sym_float] = ACTIONS(2365), + [sym_char] = ACTIONS(2365), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(2365), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), + }, + [806] = { + [sym__expression] = STATE(2663), + [sym_block] = STATE(2663), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2663), + [sym_nil] = STATE(2663), + [sym__atom] = STATE(2663), + [sym_quoted_atom] = STATE(2663), + [sym__quoted_i_double] = STATE(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [sym_string] = STATE(2663), + [sym_charlist] = STATE(2663), + [sym_sigil] = STATE(2663), + [sym_list] = STATE(2663), + [sym_tuple] = STATE(2663), + [sym_bitstring] = STATE(2663), + [sym_map] = STATE(2663), + [sym_unary_operator] = STATE(2663), + [sym_binary_operator] = STATE(2663), + [sym_operator_identifier] = STATE(5624), + [sym_dot] = STATE(2663), + [sym_call] = STATE(2663), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2663), + [sym_anonymous_function] = STATE(2663), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2367), + [sym_integer] = ACTIONS(2367), + [sym_float] = ACTIONS(2367), + [sym_char] = ACTIONS(2367), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(2367), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), + }, + [807] = { + [sym__expression] = STATE(3146), + [sym_block] = STATE(3146), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3146), + [sym_nil] = STATE(3146), + [sym__atom] = STATE(3146), + [sym_quoted_atom] = STATE(3146), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3146), + [sym_charlist] = STATE(3146), + [sym_sigil] = STATE(3146), + [sym_list] = STATE(3146), + [sym_tuple] = STATE(3146), + [sym_bitstring] = STATE(3146), + [sym_map] = STATE(3146), + [sym_unary_operator] = STATE(3146), + [sym_binary_operator] = STATE(3146), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3146), + [sym_call] = STATE(3146), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3146), + [sym_anonymous_function] = STATE(3146), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2369), + [sym_integer] = ACTIONS(2369), + [sym_float] = ACTIONS(2369), + [sym_char] = ACTIONS(2369), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2369), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [808] = { + [sym__expression] = STATE(3145), + [sym_block] = STATE(3145), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3145), + [sym_nil] = STATE(3145), + [sym__atom] = STATE(3145), + [sym_quoted_atom] = STATE(3145), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3145), + [sym_charlist] = STATE(3145), + [sym_sigil] = STATE(3145), + [sym_list] = STATE(3145), + [sym_tuple] = STATE(3145), + [sym_bitstring] = STATE(3145), + [sym_map] = STATE(3145), + [sym_unary_operator] = STATE(3145), + [sym_binary_operator] = STATE(3145), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3145), + [sym_call] = STATE(3145), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3145), + [sym_anonymous_function] = STATE(3145), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2371), + [sym_integer] = ACTIONS(2371), + [sym_float] = ACTIONS(2371), + [sym_char] = ACTIONS(2371), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [809] = { + [sym__expression] = STATE(3120), + [sym_block] = STATE(3120), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(3120), + [sym_nil] = STATE(3120), + [sym__atom] = STATE(3120), + [sym_quoted_atom] = STATE(3120), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [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(5631), + [sym_dot] = STATE(3120), + [sym_call] = STATE(3120), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3120), + [sym_anonymous_function] = STATE(3120), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2373), + [sym_integer] = ACTIONS(2373), + [sym_float] = ACTIONS(2373), + [sym_char] = ACTIONS(2373), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [810] = { + [sym__expression] = STATE(3121), + [sym_block] = STATE(3121), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(3121), + [sym_nil] = STATE(3121), + [sym__atom] = STATE(3121), + [sym_quoted_atom] = STATE(3121), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [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(5631), + [sym_dot] = STATE(3121), + [sym_call] = STATE(3121), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3121), + [sym_anonymous_function] = STATE(3121), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2375), + [sym_integer] = ACTIONS(2375), + [sym_float] = ACTIONS(2375), + [sym_char] = ACTIONS(2375), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2375), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [811] = { + [sym__expression] = STATE(4066), + [sym_block] = STATE(4066), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(4066), + [sym_nil] = STATE(4066), + [sym__atom] = STATE(4066), + [sym_quoted_atom] = STATE(4066), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4066), + [sym_call] = STATE(4066), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4066), + [sym_anonymous_function] = STATE(4066), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2377), + [sym_integer] = ACTIONS(2377), + [sym_float] = ACTIONS(2377), + [sym_char] = ACTIONS(2377), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [812] = { + [sym__expression] = STATE(4067), + [sym_block] = STATE(4067), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(4067), + [sym_nil] = STATE(4067), + [sym__atom] = STATE(4067), + [sym_quoted_atom] = STATE(4067), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(4067), + [sym_charlist] = STATE(4067), + [sym_sigil] = STATE(4067), + [sym_list] = STATE(4067), + [sym_tuple] = STATE(4067), + [sym_bitstring] = STATE(4067), + [sym_map] = STATE(4067), + [sym_unary_operator] = STATE(4067), + [sym_binary_operator] = STATE(4067), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4067), + [sym_call] = STATE(4067), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4067), + [sym_anonymous_function] = STATE(4067), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2379), + [sym_integer] = ACTIONS(2379), + [sym_float] = ACTIONS(2379), + [sym_char] = ACTIONS(2379), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2379), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [813] = { + [sym__expression] = STATE(3990), + [sym_block] = STATE(3990), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(3990), + [sym_nil] = STATE(3990), + [sym__atom] = STATE(3990), + [sym_quoted_atom] = STATE(3990), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3990), + [sym_charlist] = STATE(3990), + [sym_sigil] = STATE(3990), + [sym_list] = STATE(3990), + [sym_tuple] = STATE(3990), + [sym_bitstring] = STATE(3990), + [sym_map] = STATE(3990), + [sym_unary_operator] = STATE(3990), + [sym_binary_operator] = STATE(3990), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3990), + [sym_call] = STATE(3990), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3990), + [sym_anonymous_function] = STATE(3990), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2381), + [sym_integer] = ACTIONS(2381), + [sym_float] = ACTIONS(2381), + [sym_char] = ACTIONS(2381), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [814] = { + [sym__expression] = STATE(4134), + [sym_block] = STATE(4134), + [sym_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(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4134), + [sym_call] = STATE(4134), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4134), + [sym_anonymous_function] = STATE(4134), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2383), + [sym_integer] = ACTIONS(2383), + [sym_float] = ACTIONS(2383), + [sym_char] = ACTIONS(2383), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2383), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [815] = { + [sym__expression] = STATE(3122), + [sym_block] = STATE(3122), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(3122), + [sym_nil] = STATE(3122), + [sym__atom] = STATE(3122), + [sym_quoted_atom] = STATE(3122), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [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(5631), + [sym_dot] = STATE(3122), + [sym_call] = STATE(3122), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3122), + [sym_anonymous_function] = STATE(3122), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2385), + [sym_integer] = ACTIONS(2385), + [sym_float] = ACTIONS(2385), + [sym_char] = ACTIONS(2385), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2385), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [816] = { + [sym__expression] = STATE(3123), + [sym_block] = STATE(3123), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(3123), + [sym_nil] = STATE(3123), + [sym__atom] = STATE(3123), + [sym_quoted_atom] = STATE(3123), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [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(5631), + [sym_dot] = STATE(3123), + [sym_call] = STATE(3123), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3123), + [sym_anonymous_function] = STATE(3123), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2387), + [sym_integer] = ACTIONS(2387), + [sym_float] = ACTIONS(2387), + [sym_char] = ACTIONS(2387), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2387), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [817] = { + [sym__expression] = STATE(3124), + [sym_block] = STATE(3124), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(3124), + [sym_nil] = STATE(3124), + [sym__atom] = STATE(3124), + [sym_quoted_atom] = STATE(3124), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [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(5631), + [sym_dot] = STATE(3124), + [sym_call] = STATE(3124), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3124), + [sym_anonymous_function] = STATE(3124), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2389), + [sym_integer] = ACTIONS(2389), + [sym_float] = ACTIONS(2389), + [sym_char] = ACTIONS(2389), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2389), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [818] = { + [sym__expression] = STATE(3125), + [sym_block] = STATE(3125), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(3125), + [sym_nil] = STATE(3125), + [sym__atom] = STATE(3125), + [sym_quoted_atom] = STATE(3125), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [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(5631), + [sym_dot] = STATE(3125), + [sym_call] = STATE(3125), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3125), + [sym_anonymous_function] = STATE(3125), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2391), + [sym_integer] = ACTIONS(2391), + [sym_float] = ACTIONS(2391), + [sym_char] = ACTIONS(2391), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2391), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [819] = { + [sym__expression] = STATE(1174), + [sym_block] = STATE(1174), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(1174), + [sym_nil] = STATE(1174), + [sym__atom] = STATE(1174), + [sym_quoted_atom] = STATE(1174), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1174), + [sym_charlist] = STATE(1174), + [sym_sigil] = STATE(1174), + [sym_list] = STATE(1174), + [sym_tuple] = STATE(1174), + [sym_bitstring] = STATE(1174), + [sym_map] = STATE(1174), + [sym_unary_operator] = STATE(1174), + [sym_binary_operator] = STATE(1174), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1174), + [sym_call] = STATE(1174), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1174), + [sym_anonymous_function] = STATE(1174), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2067), + [sym_integer] = ACTIONS(2067), + [sym_float] = ACTIONS(2067), + [sym_char] = ACTIONS(2067), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [820] = { + [sym__expression] = STATE(3127), + [sym_block] = STATE(3127), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(3127), + [sym_nil] = STATE(3127), + [sym__atom] = STATE(3127), + [sym_quoted_atom] = STATE(3127), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [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(5631), + [sym_dot] = STATE(3127), + [sym_call] = STATE(3127), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3127), + [sym_anonymous_function] = STATE(3127), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2393), + [sym_integer] = ACTIONS(2393), + [sym_float] = ACTIONS(2393), + [sym_char] = ACTIONS(2393), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2393), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [821] = { + [sym__expression] = STATE(3128), + [sym_block] = STATE(3128), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(3128), + [sym_nil] = STATE(3128), + [sym__atom] = STATE(3128), + [sym_quoted_atom] = STATE(3128), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [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(5631), + [sym_dot] = STATE(3128), + [sym_call] = STATE(3128), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3128), + [sym_anonymous_function] = STATE(3128), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2395), + [sym_integer] = ACTIONS(2395), + [sym_float] = ACTIONS(2395), + [sym_char] = ACTIONS(2395), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2395), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [822] = { + [sym__expression] = STATE(3129), + [sym_block] = STATE(3129), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(3129), + [sym_nil] = STATE(3129), + [sym__atom] = STATE(3129), + [sym_quoted_atom] = STATE(3129), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [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(5631), + [sym_dot] = STATE(3129), + [sym_call] = STATE(3129), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3129), + [sym_anonymous_function] = STATE(3129), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2397), + [sym_integer] = ACTIONS(2397), + [sym_float] = ACTIONS(2397), + [sym_char] = ACTIONS(2397), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [823] = { + [sym__expression] = STATE(4129), + [sym_block] = STATE(4129), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(4129), + [sym_nil] = STATE(4129), + [sym__atom] = STATE(4129), + [sym_quoted_atom] = STATE(4129), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(4129), + [sym_charlist] = STATE(4129), + [sym_sigil] = STATE(4129), + [sym_list] = STATE(4129), + [sym_tuple] = STATE(4129), + [sym_bitstring] = STATE(4129), + [sym_map] = STATE(4129), + [sym_unary_operator] = STATE(4129), + [sym_binary_operator] = STATE(4129), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4129), + [sym_call] = STATE(4129), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4129), + [sym_anonymous_function] = STATE(4129), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2399), + [sym_integer] = ACTIONS(2399), + [sym_float] = ACTIONS(2399), + [sym_char] = ACTIONS(2399), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2399), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [824] = { + [sym__expression] = STATE(2363), + [sym_block] = STATE(2363), + [sym_identifier] = STATE(41), + [sym_boolean] = STATE(2363), + [sym_nil] = STATE(2363), + [sym__atom] = STATE(2363), + [sym_quoted_atom] = STATE(2363), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(2363), + [sym_charlist] = STATE(2363), + [sym_sigil] = STATE(2363), + [sym_list] = STATE(2363), + [sym_tuple] = STATE(2363), + [sym_bitstring] = STATE(2363), + [sym_map] = STATE(2363), + [sym_unary_operator] = STATE(2363), + [sym_binary_operator] = STATE(2363), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(2363), + [sym_call] = STATE(2363), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(45), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(2363), + [sym_anonymous_function] = STATE(2363), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2401), + [sym_integer] = ACTIONS(2401), + [sym_float] = ACTIONS(2401), + [sym_char] = ACTIONS(2401), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(426), + [anon_sym_PLUS] = ACTIONS(431), + [anon_sym_DASH] = ACTIONS(431), + [anon_sym_BANG] = ACTIONS(431), + [anon_sym_CARET] = ACTIONS(431), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(431), + [anon_sym_not] = ACTIONS(431), + [anon_sym_AT] = ACTIONS(433), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(435), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [825] = { + [sym__expression] = STATE(3131), + [sym_block] = STATE(3131), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(3131), + [sym_nil] = STATE(3131), + [sym__atom] = STATE(3131), + [sym_quoted_atom] = STATE(3131), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [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(5631), + [sym_dot] = STATE(3131), + [sym_call] = STATE(3131), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3131), + [sym_anonymous_function] = STATE(3131), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2403), + [sym_integer] = ACTIONS(2403), + [sym_float] = ACTIONS(2403), + [sym_char] = ACTIONS(2403), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2403), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [826] = { + [sym__expression] = STATE(3132), + [sym_block] = STATE(3132), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(3132), + [sym_nil] = STATE(3132), + [sym__atom] = STATE(3132), + [sym_quoted_atom] = STATE(3132), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [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(5631), + [sym_dot] = STATE(3132), + [sym_call] = STATE(3132), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(3132), + [sym_anonymous_function] = STATE(3132), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2405), + [sym_integer] = ACTIONS(2405), + [sym_float] = ACTIONS(2405), + [sym_char] = ACTIONS(2405), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2405), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [827] = { + [sym__expression] = STATE(3772), + [sym_block] = STATE(3772), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3772), + [sym_nil] = STATE(3772), + [sym__atom] = STATE(3772), + [sym_quoted_atom] = STATE(3772), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3772), + [sym_charlist] = STATE(3772), + [sym_sigil] = STATE(3772), + [sym_list] = STATE(3772), + [sym_tuple] = STATE(3772), + [sym_bitstring] = STATE(3772), + [sym_map] = STATE(3772), + [sym_unary_operator] = STATE(3772), + [sym_binary_operator] = STATE(3772), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3772), + [sym_call] = STATE(3772), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3772), + [sym_anonymous_function] = STATE(3772), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2407), + [sym_integer] = ACTIONS(2407), + [sym_float] = ACTIONS(2407), + [sym_char] = ACTIONS(2407), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [828] = { + [sym__expression] = STATE(4070), + [sym_block] = STATE(4070), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(4070), + [sym_nil] = STATE(4070), + [sym__atom] = STATE(4070), + [sym_quoted_atom] = STATE(4070), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4070), + [sym_call] = STATE(4070), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4070), + [sym_anonymous_function] = STATE(4070), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2409), + [sym_integer] = ACTIONS(2409), + [sym_float] = ACTIONS(2409), + [sym_char] = ACTIONS(2409), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2409), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [829] = { + [sym__expression] = STATE(3258), + [sym_block] = STATE(3258), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3258), + [sym_nil] = STATE(3258), + [sym__atom] = STATE(3258), + [sym_quoted_atom] = STATE(3258), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(3258), + [sym_call] = STATE(3258), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3258), + [sym_anonymous_function] = STATE(3258), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2411), + [sym_integer] = ACTIONS(2411), + [sym_float] = ACTIONS(2411), + [sym_char] = ACTIONS(2411), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [830] = { + [sym__expression] = STATE(3259), + [sym_block] = STATE(3259), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3259), + [sym_nil] = STATE(3259), + [sym__atom] = STATE(3259), + [sym_quoted_atom] = STATE(3259), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3259), + [sym_charlist] = STATE(3259), + [sym_sigil] = STATE(3259), + [sym_list] = STATE(3259), + [sym_tuple] = STATE(3259), + [sym_bitstring] = STATE(3259), + [sym_map] = STATE(3259), + [sym_unary_operator] = STATE(3259), + [sym_binary_operator] = STATE(3259), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3259), + [sym_call] = STATE(3259), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3259), + [sym_anonymous_function] = STATE(3259), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2413), + [sym_integer] = ACTIONS(2413), + [sym_float] = ACTIONS(2413), + [sym_char] = ACTIONS(2413), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2413), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [831] = { + [sym__expression] = STATE(1643), + [sym_block] = STATE(1643), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1643), + [sym_nil] = STATE(1643), + [sym__atom] = STATE(1643), + [sym_quoted_atom] = STATE(1643), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1643), + [sym_charlist] = STATE(1643), + [sym_sigil] = STATE(1643), + [sym_list] = STATE(1643), + [sym_tuple] = STATE(1643), + [sym_bitstring] = STATE(1643), + [sym_map] = STATE(1643), + [sym_unary_operator] = STATE(1643), + [sym_binary_operator] = STATE(1643), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1643), + [sym_call] = STATE(1643), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1643), + [sym_anonymous_function] = STATE(1643), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2415), + [sym_integer] = ACTIONS(2415), + [sym_float] = ACTIONS(2415), + [sym_char] = ACTIONS(2415), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2415), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [832] = { + [sym__expression] = STATE(3261), + [sym_block] = STATE(3261), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3261), + [sym_nil] = STATE(3261), + [sym__atom] = STATE(3261), + [sym_quoted_atom] = STATE(3261), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3261), + [sym_charlist] = STATE(3261), + [sym_sigil] = STATE(3261), + [sym_list] = STATE(3261), + [sym_tuple] = STATE(3261), + [sym_bitstring] = STATE(3261), + [sym_map] = STATE(3261), + [sym_unary_operator] = STATE(3261), + [sym_binary_operator] = STATE(3261), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3261), + [sym_call] = STATE(3261), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3261), + [sym_anonymous_function] = STATE(3261), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2417), + [sym_integer] = ACTIONS(2417), + [sym_float] = ACTIONS(2417), + [sym_char] = ACTIONS(2417), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2417), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [833] = { + [sym__expression] = STATE(3262), + [sym_block] = STATE(3262), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3262), + [sym_nil] = STATE(3262), + [sym__atom] = STATE(3262), + [sym_quoted_atom] = STATE(3262), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3262), + [sym_charlist] = STATE(3262), + [sym_sigil] = STATE(3262), + [sym_list] = STATE(3262), + [sym_tuple] = STATE(3262), + [sym_bitstring] = STATE(3262), + [sym_map] = STATE(3262), + [sym_unary_operator] = STATE(3262), + [sym_binary_operator] = STATE(3262), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3262), + [sym_call] = STATE(3262), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3262), + [sym_anonymous_function] = STATE(3262), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2419), + [sym_integer] = ACTIONS(2419), + [sym_float] = ACTIONS(2419), + [sym_char] = ACTIONS(2419), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2419), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [834] = { + [sym__expression] = STATE(3188), + [sym_block] = STATE(3188), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3188), + [sym_nil] = STATE(3188), + [sym__atom] = STATE(3188), + [sym_quoted_atom] = STATE(3188), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(3188), + [sym_call] = STATE(3188), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3188), + [sym_anonymous_function] = STATE(3188), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2421), + [sym_integer] = ACTIONS(2421), + [sym_float] = ACTIONS(2421), + [sym_char] = ACTIONS(2421), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [835] = { + [sym__expression] = STATE(1644), + [sym_block] = STATE(1644), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1644), + [sym_nil] = STATE(1644), + [sym__atom] = STATE(1644), + [sym_quoted_atom] = STATE(1644), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1644), + [sym_charlist] = STATE(1644), + [sym_sigil] = STATE(1644), + [sym_list] = STATE(1644), + [sym_tuple] = STATE(1644), + [sym_bitstring] = STATE(1644), + [sym_map] = STATE(1644), + [sym_unary_operator] = STATE(1644), + [sym_binary_operator] = STATE(1644), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1644), + [sym_call] = STATE(1644), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1644), + [sym_anonymous_function] = STATE(1644), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2423), + [sym_integer] = ACTIONS(2423), + [sym_float] = ACTIONS(2423), + [sym_char] = ACTIONS(2423), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2423), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [836] = { + [sym__expression] = STATE(3267), + [sym_block] = STATE(3267), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3267), + [sym_nil] = STATE(3267), + [sym__atom] = STATE(3267), + [sym_quoted_atom] = STATE(3267), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3267), + [sym_charlist] = STATE(3267), + [sym_sigil] = STATE(3267), + [sym_list] = STATE(3267), + [sym_tuple] = STATE(3267), + [sym_bitstring] = STATE(3267), + [sym_map] = STATE(3267), + [sym_unary_operator] = STATE(3267), + [sym_binary_operator] = STATE(3267), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3267), + [sym_call] = STATE(3267), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3267), + [sym_anonymous_function] = STATE(3267), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2425), + [sym_integer] = ACTIONS(2425), + [sym_float] = ACTIONS(2425), + [sym_char] = ACTIONS(2425), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [837] = { + [sym__expression] = STATE(3268), + [sym_block] = STATE(3268), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3268), + [sym_nil] = STATE(3268), + [sym__atom] = STATE(3268), + [sym_quoted_atom] = STATE(3268), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3268), + [sym_charlist] = STATE(3268), + [sym_sigil] = STATE(3268), + [sym_list] = STATE(3268), + [sym_tuple] = STATE(3268), + [sym_bitstring] = STATE(3268), + [sym_map] = STATE(3268), + [sym_unary_operator] = STATE(3268), + [sym_binary_operator] = STATE(3268), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3268), + [sym_call] = STATE(3268), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3268), + [sym_anonymous_function] = STATE(3268), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2427), + [sym_integer] = ACTIONS(2427), + [sym_float] = ACTIONS(2427), + [sym_char] = ACTIONS(2427), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2427), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [838] = { + [sym__expression] = STATE(3269), + [sym_block] = STATE(3269), + [sym_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(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(3269), + [sym_call] = STATE(3269), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3269), + [sym_anonymous_function] = STATE(3269), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2429), + [sym_integer] = ACTIONS(2429), + [sym_float] = ACTIONS(2429), + [sym_char] = ACTIONS(2429), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [839] = { + [sym__expression] = STATE(3270), + [sym_block] = STATE(3270), + [sym_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(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(3270), + [sym_call] = STATE(3270), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3270), + [sym_anonymous_function] = STATE(3270), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2431), + [sym_integer] = ACTIONS(2431), + [sym_float] = ACTIONS(2431), + [sym_char] = ACTIONS(2431), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2431), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [840] = { + [sym__expression] = STATE(3271), + [sym_block] = STATE(3271), + [sym_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(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(3271), + [sym_call] = STATE(3271), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3271), + [sym_anonymous_function] = STATE(3271), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2433), + [sym_integer] = ACTIONS(2433), + [sym_float] = ACTIONS(2433), + [sym_char] = ACTIONS(2433), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2433), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [841] = { + [sym__expression] = STATE(3272), + [sym_block] = STATE(3272), + [sym_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(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(3272), + [sym_call] = STATE(3272), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3272), + [sym_anonymous_function] = STATE(3272), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2435), + [sym_integer] = ACTIONS(2435), + [sym_float] = ACTIONS(2435), + [sym_char] = ACTIONS(2435), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2435), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [842] = { + [sym__expression] = STATE(3273), + [sym_block] = STATE(3273), + [sym_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(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(3273), + [sym_call] = STATE(3273), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3273), + [sym_anonymous_function] = STATE(3273), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2437), + [sym_integer] = ACTIONS(2437), + [sym_float] = ACTIONS(2437), + [sym_char] = ACTIONS(2437), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2437), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [843] = { + [sym__expression] = STATE(3274), + [sym_block] = STATE(3274), + [sym_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(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3274), + [sym_charlist] = STATE(3274), + [sym_sigil] = STATE(3274), + [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(5548), + [sym_dot] = STATE(3274), + [sym_call] = STATE(3274), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3274), + [sym_anonymous_function] = STATE(3274), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2439), + [sym_integer] = ACTIONS(2439), + [sym_float] = ACTIONS(2439), + [sym_char] = ACTIONS(2439), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2439), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [844] = { + [sym__expression] = STATE(3275), + [sym_block] = STATE(3275), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3275), + [sym_nil] = STATE(3275), + [sym__atom] = STATE(3275), + [sym_quoted_atom] = STATE(3275), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3275), + [sym_charlist] = STATE(3275), + [sym_sigil] = STATE(3275), + [sym_list] = STATE(3275), + [sym_tuple] = STATE(3275), + [sym_bitstring] = STATE(3275), + [sym_map] = STATE(3275), + [sym_unary_operator] = STATE(3275), + [sym_binary_operator] = STATE(3275), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3275), + [sym_call] = STATE(3275), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3275), + [sym_anonymous_function] = STATE(3275), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2441), + [sym_integer] = ACTIONS(2441), + [sym_float] = ACTIONS(2441), + [sym_char] = ACTIONS(2441), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [845] = { + [sym__expression] = STATE(3277), + [sym_block] = STATE(3277), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3277), + [sym_nil] = STATE(3277), + [sym__atom] = STATE(3277), + [sym_quoted_atom] = STATE(3277), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3277), + [sym_charlist] = STATE(3277), + [sym_sigil] = STATE(3277), + [sym_list] = STATE(3277), + [sym_tuple] = STATE(3277), + [sym_bitstring] = STATE(3277), + [sym_map] = STATE(3277), + [sym_unary_operator] = STATE(3277), + [sym_binary_operator] = STATE(3277), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3277), + [sym_call] = STATE(3277), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3277), + [sym_anonymous_function] = STATE(3277), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2443), + [sym_integer] = ACTIONS(2443), + [sym_float] = ACTIONS(2443), + [sym_char] = ACTIONS(2443), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2443), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [846] = { + [sym__expression] = STATE(3071), + [sym_block] = STATE(3071), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3071), + [sym_nil] = STATE(3071), + [sym__atom] = STATE(3071), + [sym_quoted_atom] = STATE(3071), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3071), + [sym_charlist] = STATE(3071), + [sym_sigil] = STATE(3071), + [sym_list] = STATE(3071), + [sym_tuple] = STATE(3071), + [sym_bitstring] = STATE(3071), + [sym_map] = STATE(3071), + [sym_unary_operator] = STATE(3071), + [sym_binary_operator] = STATE(3071), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3071), + [sym_call] = STATE(3071), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3071), + [sym_anonymous_function] = STATE(3071), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2311), + [sym_integer] = ACTIONS(2311), + [sym_float] = ACTIONS(2311), + [sym_char] = ACTIONS(2311), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2311), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [847] = { + [sym__expression] = STATE(1372), + [sym_block] = STATE(1372), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(1372), + [sym_nil] = STATE(1372), + [sym__atom] = STATE(1372), + [sym_quoted_atom] = STATE(1372), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1372), + [sym_charlist] = STATE(1372), + [sym_sigil] = STATE(1372), + [sym_list] = STATE(1372), + [sym_tuple] = STATE(1372), + [sym_bitstring] = STATE(1372), + [sym_map] = STATE(1372), + [sym_unary_operator] = STATE(1372), + [sym_binary_operator] = STATE(1372), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1372), + [sym_call] = STATE(1372), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1372), + [sym_anonymous_function] = STATE(1372), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2303), + [sym_integer] = ACTIONS(2303), + [sym_float] = ACTIONS(2303), + [sym_char] = ACTIONS(2303), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2303), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [848] = { + [sym__expression] = STATE(2899), + [sym_block] = STATE(2899), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2899), + [sym_nil] = STATE(2899), + [sym__atom] = STATE(2899), + [sym_quoted_atom] = STATE(2899), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2899), + [sym_charlist] = STATE(2899), + [sym_sigil] = STATE(2899), + [sym_list] = STATE(2899), + [sym_tuple] = STATE(2899), + [sym_bitstring] = STATE(2899), + [sym_map] = STATE(2899), + [sym_unary_operator] = STATE(2899), + [sym_binary_operator] = STATE(2899), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2899), + [sym_call] = STATE(2899), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2899), + [sym_anonymous_function] = STATE(2899), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2445), + [sym_integer] = ACTIONS(2445), + [sym_float] = ACTIONS(2445), + [sym_char] = ACTIONS(2445), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [849] = { + [sym__expression] = STATE(3775), + [sym_block] = STATE(3775), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3775), + [sym_nil] = STATE(3775), + [sym__atom] = STATE(3775), + [sym_quoted_atom] = STATE(3775), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [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(5576), + [sym_dot] = STATE(3775), + [sym_call] = STATE(3775), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3775), + [sym_anonymous_function] = STATE(3775), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2447), + [sym_integer] = ACTIONS(2447), + [sym_float] = ACTIONS(2447), + [sym_char] = ACTIONS(2447), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2447), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [850] = { + [sym__expression] = STATE(2872), + [sym_block] = STATE(2872), + [sym_identifier] = STATE(56), + [sym_boolean] = STATE(2872), + [sym_nil] = STATE(2872), + [sym__atom] = STATE(2872), + [sym_quoted_atom] = STATE(2872), + [sym__quoted_i_double] = STATE(2901), + [sym__quoted_i_single] = STATE(2900), + [sym__quoted_i_heredoc_single] = STATE(2898), + [sym__quoted_i_heredoc_double] = STATE(2794), + [sym_string] = STATE(2872), + [sym_charlist] = STATE(2872), + [sym_sigil] = STATE(2872), + [sym_list] = STATE(2872), + [sym_tuple] = STATE(2872), + [sym_bitstring] = STATE(2872), + [sym_map] = STATE(2872), + [sym_unary_operator] = STATE(2872), + [sym_binary_operator] = STATE(2872), + [sym_operator_identifier] = STATE(5624), + [sym_dot] = STATE(2872), + [sym_call] = STATE(2872), + [sym__call_without_parentheses] = STATE(2877), + [sym__call_with_parentheses] = STATE(2871), + [sym__local_call_without_parentheses] = STATE(2862), + [sym__local_call_with_parentheses] = STATE(2025), + [sym__local_call_just_do_block] = STATE(2857), + [sym__remote_call_without_parentheses] = STATE(2841), + [sym__remote_call_with_parentheses] = STATE(2026), + [sym__remote_dot] = STATE(57), + [sym__anonymous_call] = STATE(2039), + [sym__anonymous_dot] = STATE(5522), + [sym__double_call] = STATE(2826), + [sym_access_call] = STATE(2872), + [sym_anonymous_function] = STATE(2872), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(572), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2449), + [sym_integer] = ACTIONS(2449), + [sym_float] = ACTIONS(2449), + [sym_char] = ACTIONS(2449), + [anon_sym_true] = ACTIONS(576), + [anon_sym_false] = ACTIONS(576), + [anon_sym_nil] = ACTIONS(578), + [sym_atom] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(580), + [anon_sym_SQUOTE] = ACTIONS(582), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(584), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LBRACK] = ACTIONS(590), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(592), + [anon_sym_LT_LT] = ACTIONS(596), + [anon_sym_PERCENT] = ACTIONS(598), + [anon_sym_AMP] = ACTIONS(600), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(605), + [anon_sym_not] = ACTIONS(605), + [anon_sym_AT] = ACTIONS(607), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(609), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(613), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(615), + }, + [851] = { + [sym__expression] = STATE(1581), + [sym_block] = STATE(1581), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1581), + [sym_nil] = STATE(1581), + [sym__atom] = STATE(1581), + [sym_quoted_atom] = STATE(1581), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1581), + [sym_charlist] = STATE(1581), + [sym_sigil] = STATE(1581), + [sym_list] = STATE(1581), + [sym_tuple] = STATE(1581), + [sym_bitstring] = STATE(1581), + [sym_map] = STATE(1581), + [sym_unary_operator] = STATE(1581), + [sym_binary_operator] = STATE(1581), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1581), + [sym_call] = STATE(1581), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), [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), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1581), + [sym_anonymous_function] = STATE(1581), [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(2577), - [sym_integer] = ACTIONS(2577), - [sym_float] = ACTIONS(2577), - [sym_char] = ACTIONS(2577), - [anon_sym_true] = ACTIONS(255), - [anon_sym_false] = ACTIONS(255), - [anon_sym_nil] = ACTIONS(257), - [sym_atom] = ACTIONS(2577), - [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), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(1863), + [sym_integer] = ACTIONS(1863), + [sym_float] = ACTIONS(1863), + [sym_char] = ACTIONS(1863), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), [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), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [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), + [852] = { + [sym__expression] = STATE(4140), + [sym_block] = STATE(4140), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(4140), + [sym_nil] = STATE(4140), + [sym__atom] = STATE(4140), + [sym_quoted_atom] = STATE(4140), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4140), + [sym_call] = STATE(4140), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4140), + [sym_anonymous_function] = STATE(4140), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2451), + [sym_integer] = ACTIONS(2451), + [sym_float] = ACTIONS(2451), + [sym_char] = ACTIONS(2451), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2451), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [853] = { + [sym__expression] = STATE(1367), + [sym_block] = STATE(1367), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(1367), + [sym_nil] = STATE(1367), + [sym__atom] = STATE(1367), + [sym_quoted_atom] = STATE(1367), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1367), + [sym_charlist] = STATE(1367), + [sym_sigil] = STATE(1367), + [sym_list] = STATE(1367), + [sym_tuple] = STATE(1367), + [sym_bitstring] = STATE(1367), + [sym_map] = STATE(1367), + [sym_unary_operator] = STATE(1367), + [sym_binary_operator] = STATE(1367), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1367), + [sym_call] = STATE(1367), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1367), + [sym_anonymous_function] = STATE(1367), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2343), + [sym_integer] = ACTIONS(2343), + [sym_float] = ACTIONS(2343), + [sym_char] = ACTIONS(2343), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2343), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [854] = { + [sym__expression] = STATE(3776), + [sym_block] = STATE(3776), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3776), + [sym_nil] = STATE(3776), + [sym__atom] = STATE(3776), + [sym_quoted_atom] = STATE(3776), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [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(5576), + [sym_dot] = STATE(3776), + [sym_call] = STATE(3776), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3776), + [sym_anonymous_function] = STATE(3776), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2453), + [sym_integer] = ACTIONS(2453), + [sym_float] = ACTIONS(2453), + [sym_char] = ACTIONS(2453), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [855] = { + [sym__expression] = STATE(2867), + [sym_block] = STATE(2867), + [sym_identifier] = STATE(43), + [sym_boolean] = STATE(2867), + [sym_nil] = STATE(2867), + [sym__atom] = STATE(2867), + [sym_quoted_atom] = STATE(2867), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2867), + [sym_charlist] = STATE(2867), + [sym_sigil] = STATE(2867), + [sym_list] = STATE(2867), + [sym_tuple] = STATE(2867), + [sym_bitstring] = STATE(2867), + [sym_map] = STATE(2867), + [sym_unary_operator] = STATE(2867), + [sym_binary_operator] = STATE(2867), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2867), + [sym_call] = STATE(2867), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(49), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2867), + [sym_anonymous_function] = STATE(2867), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2455), + [sym_integer] = ACTIONS(2455), + [sym_float] = ACTIONS(2455), + [sym_char] = ACTIONS(2455), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2455), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(455), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(459), + [anon_sym_PLUS] = ACTIONS(464), + [anon_sym_DASH] = ACTIONS(464), + [anon_sym_BANG] = ACTIONS(464), + [anon_sym_CARET] = ACTIONS(464), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(464), + [anon_sym_not] = ACTIONS(464), + [anon_sym_AT] = ACTIONS(466), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(468), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [856] = { + [sym__expression] = STATE(3855), + [sym_block] = STATE(3855), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3855), + [sym_nil] = STATE(3855), + [sym__atom] = STATE(3855), + [sym_quoted_atom] = STATE(3855), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3855), + [sym_charlist] = STATE(3855), + [sym_sigil] = STATE(3855), + [sym_list] = STATE(3855), + [sym_tuple] = STATE(3855), + [sym_bitstring] = STATE(3855), + [sym_map] = STATE(3855), + [sym_unary_operator] = STATE(3855), + [sym_binary_operator] = STATE(3855), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3855), + [sym_call] = STATE(3855), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3855), + [sym_anonymous_function] = STATE(3855), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2457), + [sym_integer] = ACTIONS(2457), + [sym_float] = ACTIONS(2457), + [sym_char] = ACTIONS(2457), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [857] = { + [sym__expression] = STATE(3777), + [sym_block] = STATE(3777), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3777), + [sym_nil] = STATE(3777), + [sym__atom] = STATE(3777), + [sym_quoted_atom] = STATE(3777), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [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(5576), + [sym_dot] = STATE(3777), + [sym_call] = STATE(3777), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3777), + [sym_anonymous_function] = STATE(3777), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2459), + [sym_integer] = ACTIONS(2459), + [sym_float] = ACTIONS(2459), + [sym_char] = ACTIONS(2459), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2459), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [858] = { + [sym__expression] = STATE(1645), + [sym_block] = STATE(1645), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1645), + [sym_nil] = STATE(1645), + [sym__atom] = STATE(1645), + [sym_quoted_atom] = STATE(1645), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1645), + [sym_charlist] = STATE(1645), + [sym_sigil] = STATE(1645), + [sym_list] = STATE(1645), + [sym_tuple] = STATE(1645), + [sym_bitstring] = STATE(1645), + [sym_map] = STATE(1645), + [sym_unary_operator] = STATE(1645), + [sym_binary_operator] = STATE(1645), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1645), + [sym_call] = STATE(1645), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1645), + [sym_anonymous_function] = STATE(1645), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2461), + [sym_integer] = ACTIONS(2461), + [sym_float] = ACTIONS(2461), + [sym_char] = ACTIONS(2461), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2461), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [859] = { + [sym__expression] = STATE(1661), + [sym_block] = STATE(1661), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1661), + [sym_nil] = STATE(1661), + [sym__atom] = STATE(1661), + [sym_quoted_atom] = STATE(1661), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1661), + [sym_charlist] = STATE(1661), + [sym_sigil] = STATE(1661), + [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(5631), + [sym_dot] = STATE(1661), + [sym_call] = STATE(1661), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1661), + [sym_anonymous_function] = STATE(1661), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2463), + [sym_integer] = ACTIONS(2463), + [sym_float] = ACTIONS(2463), + [sym_char] = ACTIONS(2463), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2463), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [860] = { + [sym__expression] = STATE(1719), + [sym_block] = STATE(1719), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1719), + [sym_nil] = STATE(1719), + [sym__atom] = STATE(1719), + [sym_quoted_atom] = STATE(1719), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1719), + [sym_charlist] = STATE(1719), + [sym_sigil] = STATE(1719), + [sym_list] = STATE(1719), + [sym_tuple] = STATE(1719), + [sym_bitstring] = STATE(1719), + [sym_map] = STATE(1719), + [sym_unary_operator] = STATE(1719), + [sym_binary_operator] = STATE(1719), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1719), + [sym_call] = STATE(1719), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), [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), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1719), + [sym_anonymous_function] = STATE(1719), [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), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2465), + [sym_integer] = ACTIONS(2465), + [sym_float] = ACTIONS(2465), + [sym_char] = ACTIONS(2465), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), [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), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [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), + [861] = { + [sym__expression] = STATE(3780), + [sym_block] = STATE(3780), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3780), + [sym_nil] = STATE(3780), + [sym__atom] = STATE(3780), + [sym_quoted_atom] = STATE(3780), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [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(5576), + [sym_dot] = STATE(3780), + [sym_call] = STATE(3780), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3780), + [sym_anonymous_function] = STATE(3780), [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), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2467), + [sym_integer] = ACTIONS(2467), + [sym_float] = ACTIONS(2467), + [sym_char] = ACTIONS(2467), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2467), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), [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), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), }, - [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), + [862] = { + [sym__expression] = STATE(3781), + [sym_block] = STATE(3781), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3781), + [sym_nil] = STATE(3781), + [sym__atom] = STATE(3781), + [sym_quoted_atom] = STATE(3781), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [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(5576), + [sym_dot] = STATE(3781), + [sym_call] = STATE(3781), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3781), + [sym_anonymous_function] = STATE(3781), [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), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2469), + [sym_integer] = ACTIONS(2469), + [sym_float] = ACTIONS(2469), + [sym_char] = ACTIONS(2469), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2469), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), [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), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), }, - [897] = { - [sym__expression] = STATE(1900), - [sym_block] = STATE(1900), - [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(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), - [sym_list] = STATE(1900), - [sym_tuple] = STATE(1900), - [sym_bitstring] = STATE(1900), - [sym_map] = STATE(1900), - [sym_unary_operator] = STATE(1900), - [sym_binary_operator] = STATE(1900), - [sym_operator_identifier] = STATE(5577), - [sym_dot] = STATE(1900), - [sym_call] = STATE(1900), - [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(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(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(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), - }, - [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), + [863] = { + [sym__expression] = STATE(3835), + [sym_block] = STATE(3835), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3835), + [sym_nil] = STATE(3835), + [sym__atom] = STATE(3835), + [sym_quoted_atom] = STATE(3835), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(3835), + [sym_charlist] = STATE(3835), + [sym_sigil] = STATE(3835), + [sym_list] = STATE(3835), + [sym_tuple] = STATE(3835), + [sym_bitstring] = STATE(3835), + [sym_map] = STATE(3835), + [sym_unary_operator] = STATE(3835), + [sym_binary_operator] = STATE(3835), [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_dot] = STATE(3835), + [sym_call] = STATE(3835), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3835), + [sym_anonymous_function] = STATE(3835), + [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_alias] = ACTIONS(2471), + [sym_integer] = ACTIONS(2471), + [sym_float] = ACTIONS(2471), + [sym_char] = ACTIONS(2471), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [864] = { + [sym__expression] = STATE(1589), + [sym_block] = STATE(1589), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1589), + [sym_nil] = STATE(1589), + [sym__atom] = STATE(1589), + [sym_quoted_atom] = STATE(1589), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [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(5565), + [sym_dot] = STATE(1589), + [sym_call] = STATE(1589), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), [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), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1589), + [sym_anonymous_function] = STATE(1589), [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(2587), - [sym_integer] = ACTIONS(2587), - [sym_float] = ACTIONS(2587), - [sym_char] = ACTIONS(2587), - [anon_sym_true] = ACTIONS(255), - [anon_sym_false] = ACTIONS(255), - [anon_sym_nil] = ACTIONS(257), - [sym_atom] = ACTIONS(2587), - [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), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(1899), + [sym_integer] = ACTIONS(1899), + [sym_float] = ACTIONS(1899), + [sym_char] = ACTIONS(1899), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(1899), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), [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), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [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), + [865] = { + [sym__expression] = STATE(1630), + [sym_block] = STATE(1630), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1630), + [sym_nil] = STATE(1630), + [sym__atom] = STATE(1630), + [sym_quoted_atom] = STATE(1630), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1630), + [sym_charlist] = STATE(1630), + [sym_sigil] = STATE(1630), + [sym_list] = STATE(1630), + [sym_tuple] = STATE(1630), + [sym_bitstring] = STATE(1630), + [sym_map] = STATE(1630), + [sym_unary_operator] = STATE(1630), + [sym_binary_operator] = STATE(1630), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1630), + [sym_call] = STATE(1630), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1630), + [sym_anonymous_function] = STATE(1630), [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(2589), - [sym_integer] = ACTIONS(2589), - [sym_float] = ACTIONS(2589), - [sym_char] = ACTIONS(2589), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(2589), - [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), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2473), + [sym_integer] = ACTIONS(2473), + [sym_float] = ACTIONS(2473), + [sym_char] = ACTIONS(2473), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2473), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), [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), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), }, - [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(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(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(2591), - [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), - }, - [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(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(2593), - [sym_integer] = ACTIONS(2593), - [sym_float] = ACTIONS(2593), - [sym_char] = ACTIONS(2593), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(2593), - [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), - }, - [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(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(2595), - [sym_integer] = ACTIONS(2595), - [sym_float] = ACTIONS(2595), - [sym_char] = ACTIONS(2595), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(2595), - [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), - }, - [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(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(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(2597), - [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), - }, - [904] = { + [866] = { [sym__expression] = STATE(1893), [sym_block] = STATE(1893), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), + [sym_identifier] = STATE(26), [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__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), [sym_string] = STATE(1893), [sym_charlist] = STATE(1893), [sym_sigil] = STATE(1893), @@ -140580,122 +126252,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_map] = STATE(1893), [sym_unary_operator] = STATE(1893), [sym_binary_operator] = STATE(1893), - [sym_operator_identifier] = STATE(5577), + [sym_operator_identifier] = STATE(5565), [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__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), [sym_access_call] = STATE(1893), [sym_anonymous_function] = STATE(1893), [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(2599), - [sym_integer] = ACTIONS(2599), - [sym_float] = ACTIONS(2599), - [sym_char] = ACTIONS(2599), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(2599), - [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), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2475), + [sym_integer] = ACTIONS(2475), + [sym_float] = ACTIONS(2475), + [sym_char] = ACTIONS(2475), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(2475), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), [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), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [905] = { + [867] = { + [sym__expression] = STATE(3837), + [sym_block] = STATE(3837), + [sym_identifier] = STATE(60), + [sym_boolean] = STATE(3837), + [sym_nil] = STATE(3837), + [sym__atom] = STATE(3837), + [sym_quoted_atom] = STATE(3837), + [sym__quoted_i_double] = STATE(3652), + [sym__quoted_i_single] = STATE(3685), + [sym__quoted_i_heredoc_single] = STATE(3686), + [sym__quoted_i_heredoc_double] = STATE(3690), + [sym_string] = STATE(3837), + [sym_charlist] = STATE(3837), + [sym_sigil] = STATE(3837), + [sym_list] = STATE(3837), + [sym_tuple] = STATE(3837), + [sym_bitstring] = STATE(3837), + [sym_map] = STATE(3837), + [sym_unary_operator] = STATE(3837), + [sym_binary_operator] = STATE(3837), + [sym_operator_identifier] = STATE(5643), + [sym_dot] = STATE(3837), + [sym_call] = STATE(3837), + [sym__call_without_parentheses] = STATE(3693), + [sym__call_with_parentheses] = STATE(3715), + [sym__local_call_without_parentheses] = STATE(3753), + [sym__local_call_with_parentheses] = STATE(2670), + [sym__local_call_just_do_block] = STATE(3796), + [sym__remote_call_without_parentheses] = STATE(3798), + [sym__remote_call_with_parentheses] = STATE(2671), + [sym__remote_dot] = STATE(47), + [sym__anonymous_call] = STATE(2673), + [sym__anonymous_dot] = STATE(5444), + [sym__double_call] = STATE(3799), + [sym_access_call] = STATE(3837), + [sym_anonymous_function] = STATE(3837), + [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_alias] = ACTIONS(2477), + [sym_integer] = ACTIONS(2477), + [sym_float] = ACTIONS(2477), + [sym_char] = ACTIONS(2477), + [anon_sym_true] = ACTIONS(19), + [anon_sym_false] = ACTIONS(19), + [anon_sym_nil] = ACTIONS(21), + [sym_atom] = ACTIONS(2477), + [anon_sym_DQUOTE] = ACTIONS(23), + [anon_sym_SQUOTE] = ACTIONS(25), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(27), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LBRACK] = ACTIONS(33), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(37), + [anon_sym_LT_LT] = ACTIONS(39), + [anon_sym_PERCENT] = ACTIONS(41), + [anon_sym_AMP] = ACTIONS(43), + [anon_sym_PLUS] = ACTIONS(45), + [anon_sym_DASH] = ACTIONS(45), + [anon_sym_BANG] = ACTIONS(45), + [anon_sym_CARET] = ACTIONS(45), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(45), + [anon_sym_not] = ACTIONS(45), + [anon_sym_AT] = ACTIONS(47), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(49), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(51), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(55), + }, + [868] = { + [sym__expression] = STATE(4073), + [sym_block] = STATE(4073), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(4073), + [sym_nil] = STATE(4073), + [sym__atom] = STATE(4073), + [sym_quoted_atom] = STATE(4073), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(4073), + [sym_charlist] = STATE(4073), + [sym_sigil] = STATE(4073), + [sym_list] = STATE(4073), + [sym_tuple] = STATE(4073), + [sym_bitstring] = STATE(4073), + [sym_map] = STATE(4073), + [sym_unary_operator] = STATE(4073), + [sym_binary_operator] = STATE(4073), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4073), + [sym_call] = STATE(4073), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4073), + [sym_anonymous_function] = STATE(4073), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2479), + [sym_integer] = ACTIONS(2479), + [sym_float] = ACTIONS(2479), + [sym_char] = ACTIONS(2479), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2479), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [869] = { [sym__expression] = STATE(1892), [sym_block] = STATE(1892), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), + [sym_identifier] = STATE(26), [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__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), [sym_string] = STATE(1892), [sym_charlist] = STATE(1892), [sym_sigil] = STATE(1892), @@ -140705,247 +126603,1167 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_map] = STATE(1892), [sym_unary_operator] = STATE(1892), [sym_binary_operator] = STATE(1892), - [sym_operator_identifier] = STATE(5577), + [sym_operator_identifier] = STATE(5565), [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__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), [sym_access_call] = STATE(1892), [sym_anonymous_function] = STATE(1892), [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(2601), - [sym_integer] = ACTIONS(2601), - [sym_float] = ACTIONS(2601), - [sym_char] = ACTIONS(2601), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(2601), - [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), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2481), + [sym_integer] = ACTIONS(2481), + [sym_float] = ACTIONS(2481), + [sym_char] = ACTIONS(2481), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(2481), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), [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), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), }, - [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), + [870] = { + [sym__expression] = STATE(3482), + [sym_block] = STATE(3482), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(3482), + [sym_nil] = STATE(3482), + [sym__atom] = STATE(3482), + [sym_quoted_atom] = STATE(3482), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3482), + [sym_charlist] = STATE(3482), + [sym_sigil] = STATE(3482), + [sym_list] = STATE(3482), + [sym_tuple] = STATE(3482), + [sym_bitstring] = STATE(3482), + [sym_map] = STATE(3482), + [sym_unary_operator] = STATE(3482), + [sym_binary_operator] = STATE(3482), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3482), + [sym_call] = STATE(3482), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3482), + [sym_anonymous_function] = STATE(3482), [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(2603), - [sym_integer] = ACTIONS(2603), - [sym_float] = ACTIONS(2603), - [sym_char] = ACTIONS(2603), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(2603), - [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), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2483), + [sym_integer] = ACTIONS(2483), + [sym_float] = ACTIONS(2483), + [sym_char] = ACTIONS(2483), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2483), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), [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), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, - [907] = { + [871] = { + [sym__expression] = STATE(1372), + [sym_block] = STATE(1372), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1372), + [sym_nil] = STATE(1372), + [sym__atom] = STATE(1372), + [sym_quoted_atom] = STATE(1372), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1372), + [sym_charlist] = STATE(1372), + [sym_sigil] = STATE(1372), + [sym_list] = STATE(1372), + [sym_tuple] = STATE(1372), + [sym_bitstring] = STATE(1372), + [sym_map] = STATE(1372), + [sym_unary_operator] = STATE(1372), + [sym_binary_operator] = STATE(1372), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1372), + [sym_call] = STATE(1372), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1372), + [sym_anonymous_function] = STATE(1372), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2303), + [sym_integer] = ACTIONS(2303), + [sym_float] = ACTIONS(2303), + [sym_char] = ACTIONS(2303), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2303), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [872] = { + [sym__expression] = STATE(1637), + [sym_block] = STATE(1637), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1637), + [sym_nil] = STATE(1637), + [sym__atom] = STATE(1637), + [sym_quoted_atom] = STATE(1637), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1637), + [sym_charlist] = STATE(1637), + [sym_sigil] = STATE(1637), + [sym_list] = STATE(1637), + [sym_tuple] = STATE(1637), + [sym_bitstring] = STATE(1637), + [sym_map] = STATE(1637), + [sym_unary_operator] = STATE(1637), + [sym_binary_operator] = STATE(1637), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1637), + [sym_call] = STATE(1637), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1637), + [sym_anonymous_function] = STATE(1637), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2485), + [sym_integer] = ACTIONS(2485), + [sym_float] = ACTIONS(2485), + [sym_char] = ACTIONS(2485), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [873] = { + [sym__expression] = STATE(1890), + [sym_block] = STATE(1890), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1890), + [sym_nil] = STATE(1890), + [sym__atom] = STATE(1890), + [sym_quoted_atom] = STATE(1890), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1890), + [sym_charlist] = STATE(1890), + [sym_sigil] = STATE(1890), + [sym_list] = STATE(1890), + [sym_tuple] = STATE(1890), + [sym_bitstring] = STATE(1890), + [sym_map] = STATE(1890), + [sym_unary_operator] = STATE(1890), + [sym_binary_operator] = STATE(1890), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1890), + [sym_call] = STATE(1890), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1890), + [sym_anonymous_function] = STATE(1890), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2487), + [sym_integer] = ACTIONS(2487), + [sym_float] = ACTIONS(2487), + [sym_char] = ACTIONS(2487), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(2487), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [874] = { + [sym__expression] = STATE(2864), + [sym_block] = STATE(2864), + [sym_identifier] = STATE(52), + [sym_boolean] = STATE(2864), + [sym_nil] = STATE(2864), + [sym__atom] = STATE(2864), + [sym_quoted_atom] = STATE(2864), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(2864), + [sym_charlist] = STATE(2864), + [sym_sigil] = STATE(2864), + [sym_list] = STATE(2864), + [sym_tuple] = STATE(2864), + [sym_bitstring] = STATE(2864), + [sym_map] = STATE(2864), + [sym_unary_operator] = STATE(2864), + [sym_binary_operator] = STATE(2864), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(2864), + [sym_call] = STATE(2864), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(42), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(2864), + [sym_anonymous_function] = STATE(2864), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2489), + [sym_integer] = ACTIONS(2489), + [sym_float] = ACTIONS(2489), + [sym_char] = ACTIONS(2489), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(441), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(445), + [anon_sym_PLUS] = ACTIONS(447), + [anon_sym_DASH] = ACTIONS(447), + [anon_sym_BANG] = ACTIONS(447), + [anon_sym_CARET] = ACTIONS(447), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(447), + [anon_sym_not] = ACTIONS(447), + [anon_sym_AT] = ACTIONS(449), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(451), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [875] = { + [sym__expression] = STATE(3790), + [sym_block] = STATE(3790), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3790), + [sym_nil] = STATE(3790), + [sym__atom] = STATE(3790), + [sym_quoted_atom] = STATE(3790), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3790), + [sym_charlist] = STATE(3790), + [sym_sigil] = STATE(3790), + [sym_list] = STATE(3790), + [sym_tuple] = STATE(3790), + [sym_bitstring] = STATE(3790), + [sym_map] = STATE(3790), + [sym_unary_operator] = STATE(3790), + [sym_binary_operator] = STATE(3790), + [sym_operator_identifier] = STATE(5576), + [sym_dot] = STATE(3790), + [sym_call] = STATE(3790), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3790), + [sym_anonymous_function] = STATE(3790), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2491), + [sym_integer] = ACTIONS(2491), + [sym_float] = ACTIONS(2491), + [sym_char] = ACTIONS(2491), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2491), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [876] = { + [sym__expression] = STATE(3791), + [sym_block] = STATE(3791), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3791), + [sym_nil] = STATE(3791), + [sym__atom] = STATE(3791), + [sym_quoted_atom] = STATE(3791), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [sym_string] = STATE(3791), + [sym_charlist] = STATE(3791), + [sym_sigil] = STATE(3791), + [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(5576), + [sym_dot] = STATE(3791), + [sym_call] = STATE(3791), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3791), + [sym_anonymous_function] = STATE(3791), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2493), + [sym_integer] = ACTIONS(2493), + [sym_float] = ACTIONS(2493), + [sym_char] = ACTIONS(2493), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2493), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [877] = { + [sym__expression] = STATE(1889), + [sym_block] = STATE(1889), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1889), + [sym_nil] = STATE(1889), + [sym__atom] = STATE(1889), + [sym_quoted_atom] = STATE(1889), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1889), + [sym_charlist] = STATE(1889), + [sym_sigil] = STATE(1889), + [sym_list] = STATE(1889), + [sym_tuple] = STATE(1889), + [sym_bitstring] = STATE(1889), + [sym_map] = STATE(1889), + [sym_unary_operator] = STATE(1889), + [sym_binary_operator] = STATE(1889), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1889), + [sym_call] = STATE(1889), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1889), + [sym_anonymous_function] = STATE(1889), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2495), + [sym_integer] = ACTIONS(2495), + [sym_float] = ACTIONS(2495), + [sym_char] = ACTIONS(2495), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(2495), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [878] = { + [sym__expression] = STATE(1888), + [sym_block] = STATE(1888), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1888), + [sym_nil] = STATE(1888), + [sym__atom] = STATE(1888), + [sym_quoted_atom] = STATE(1888), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1888), + [sym_charlist] = STATE(1888), + [sym_sigil] = STATE(1888), + [sym_list] = STATE(1888), + [sym_tuple] = STATE(1888), + [sym_bitstring] = STATE(1888), + [sym_map] = STATE(1888), + [sym_unary_operator] = STATE(1888), + [sym_binary_operator] = STATE(1888), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1888), + [sym_call] = STATE(1888), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1888), + [sym_anonymous_function] = STATE(1888), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2497), + [sym_integer] = ACTIONS(2497), + [sym_float] = ACTIONS(2497), + [sym_char] = ACTIONS(2497), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(2497), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [879] = { [sym__expression] = STATE(1886), [sym_block] = STATE(1886), - [sym__identifier] = STATE(25), - [sym_identifier] = STATE(25), - [sym_special_identifier] = STATE(25), + [sym_identifier] = STATE(26), [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__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), [sym_string] = STATE(1886), [sym_charlist] = STATE(1886), [sym_sigil] = STATE(1886), @@ -140955,16957 +127773,18306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_map] = STATE(1886), [sym_unary_operator] = STATE(1886), [sym_binary_operator] = STATE(1886), - [sym_operator_identifier] = STATE(5577), + [sym_operator_identifier] = STATE(5565), [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__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), [sym_access_call] = STATE(1886), [sym_anonymous_function] = STATE(1886), [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(2605), - [sym_integer] = ACTIONS(2605), - [sym_float] = ACTIONS(2605), - [sym_char] = ACTIONS(2605), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(2605), - [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), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2499), + [sym_integer] = ACTIONS(2499), + [sym_float] = ACTIONS(2499), + [sym_char] = ACTIONS(2499), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(2499), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), [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), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [880] = { + [sym__expression] = STATE(2828), + [sym_block] = STATE(2828), + [sym_identifier] = STATE(63), + [sym_boolean] = STATE(2828), + [sym_nil] = STATE(2828), + [sym__atom] = STATE(2828), + [sym_quoted_atom] = STATE(2828), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2828), + [sym_call] = STATE(2828), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(46), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2828), + [sym_anonymous_function] = STATE(2828), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(1279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1279), + [sym_alias] = ACTIONS(2501), + [sym_integer] = ACTIONS(2501), + [sym_float] = ACTIONS(2501), + [sym_char] = ACTIONS(2501), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2501), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1283), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1287), + [anon_sym_PLUS] = ACTIONS(1289), + [anon_sym_DASH] = ACTIONS(1289), + [anon_sym_BANG] = ACTIONS(1289), + [anon_sym_CARET] = ACTIONS(1289), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1289), + [anon_sym_not] = ACTIONS(1289), + [anon_sym_AT] = ACTIONS(1291), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1293), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [881] = { + [sym__expression] = STATE(1638), + [sym_block] = STATE(1638), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1638), + [sym_nil] = STATE(1638), + [sym__atom] = STATE(1638), + [sym_quoted_atom] = STATE(1638), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1638), + [sym_charlist] = STATE(1638), + [sym_sigil] = STATE(1638), + [sym_list] = STATE(1638), + [sym_tuple] = STATE(1638), + [sym_bitstring] = STATE(1638), + [sym_map] = STATE(1638), + [sym_unary_operator] = STATE(1638), + [sym_binary_operator] = STATE(1638), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1638), + [sym_call] = STATE(1638), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1638), + [sym_anonymous_function] = STATE(1638), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2503), + [sym_integer] = ACTIONS(2503), + [sym_float] = ACTIONS(2503), + [sym_char] = ACTIONS(2503), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2503), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [882] = { + [sym__expression] = STATE(1367), + [sym_block] = STATE(1367), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1367), + [sym_nil] = STATE(1367), + [sym__atom] = STATE(1367), + [sym_quoted_atom] = STATE(1367), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1367), + [sym_charlist] = STATE(1367), + [sym_sigil] = STATE(1367), + [sym_list] = STATE(1367), + [sym_tuple] = STATE(1367), + [sym_bitstring] = STATE(1367), + [sym_map] = STATE(1367), + [sym_unary_operator] = STATE(1367), + [sym_binary_operator] = STATE(1367), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1367), + [sym_call] = STATE(1367), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1367), + [sym_anonymous_function] = STATE(1367), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2343), + [sym_integer] = ACTIONS(2343), + [sym_float] = ACTIONS(2343), + [sym_char] = ACTIONS(2343), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(2343), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [883] = { + [sym__expression] = STATE(1885), + [sym_block] = STATE(1885), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1885), + [sym_nil] = STATE(1885), + [sym__atom] = STATE(1885), + [sym_quoted_atom] = STATE(1885), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [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(5565), + [sym_dot] = STATE(1885), + [sym_call] = STATE(1885), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1885), + [sym_anonymous_function] = STATE(1885), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2505), + [sym_integer] = ACTIONS(2505), + [sym_float] = ACTIONS(2505), + [sym_char] = ACTIONS(2505), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(2505), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [884] = { + [sym__expression] = STATE(3802), + [sym_block] = STATE(3802), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3802), + [sym_nil] = STATE(3802), + [sym__atom] = STATE(3802), + [sym_quoted_atom] = STATE(3802), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [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(5576), + [sym_dot] = STATE(3802), + [sym_call] = STATE(3802), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3802), + [sym_anonymous_function] = STATE(3802), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2507), + [sym_integer] = ACTIONS(2507), + [sym_float] = ACTIONS(2507), + [sym_char] = ACTIONS(2507), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2507), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [885] = { + [sym__expression] = STATE(3803), + [sym_block] = STATE(3803), + [sym_identifier] = STATE(67), + [sym_boolean] = STATE(3803), + [sym_nil] = STATE(3803), + [sym__atom] = STATE(3803), + [sym_quoted_atom] = STATE(3803), + [sym__quoted_i_double] = STATE(3831), + [sym__quoted_i_single] = STATE(3864), + [sym__quoted_i_heredoc_single] = STATE(3863), + [sym__quoted_i_heredoc_double] = STATE(3859), + [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(5576), + [sym_dot] = STATE(3803), + [sym_call] = STATE(3803), + [sym__call_without_parentheses] = STATE(3858), + [sym__call_with_parentheses] = STATE(3834), + [sym__local_call_without_parentheses] = STATE(3832), + [sym__local_call_with_parentheses] = STATE(2751), + [sym__local_call_just_do_block] = STATE(3760), + [sym__remote_call_without_parentheses] = STATE(3830), + [sym__remote_call_with_parentheses] = STATE(2743), + [sym__remote_dot] = STATE(59), + [sym__anonymous_call] = STATE(2736), + [sym__anonymous_dot] = STATE(5447), + [sym__double_call] = STATE(3829), + [sym_access_call] = STATE(3803), + [sym_anonymous_function] = STATE(3803), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1297), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2509), + [sym_integer] = ACTIONS(2509), + [sym_float] = ACTIONS(2509), + [sym_char] = ACTIONS(2509), + [anon_sym_true] = ACTIONS(786), + [anon_sym_false] = ACTIONS(786), + [anon_sym_nil] = ACTIONS(788), + [sym_atom] = ACTIONS(2509), + [anon_sym_DQUOTE] = ACTIONS(790), + [anon_sym_SQUOTE] = ACTIONS(792), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(794), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LBRACK] = ACTIONS(800), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(802), + [anon_sym_LT_LT] = ACTIONS(804), + [anon_sym_PERCENT] = ACTIONS(806), + [anon_sym_AMP] = ACTIONS(808), + [anon_sym_PLUS] = ACTIONS(810), + [anon_sym_DASH] = ACTIONS(810), + [anon_sym_BANG] = ACTIONS(810), + [anon_sym_CARET] = ACTIONS(810), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(810), + [anon_sym_not] = ACTIONS(810), + [anon_sym_AT] = ACTIONS(812), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(816), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(818), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(820), + }, + [886] = { + [sym__expression] = STATE(1884), + [sym_block] = STATE(1884), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1884), + [sym_nil] = STATE(1884), + [sym__atom] = STATE(1884), + [sym_quoted_atom] = STATE(1884), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1884), + [sym_charlist] = STATE(1884), + [sym_sigil] = STATE(1884), + [sym_list] = STATE(1884), + [sym_tuple] = STATE(1884), + [sym_bitstring] = STATE(1884), + [sym_map] = STATE(1884), + [sym_unary_operator] = STATE(1884), + [sym_binary_operator] = STATE(1884), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1884), + [sym_call] = STATE(1884), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1884), + [sym_anonymous_function] = STATE(1884), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2511), + [sym_integer] = ACTIONS(2511), + [sym_float] = ACTIONS(2511), + [sym_char] = ACTIONS(2511), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(2511), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [887] = { + [sym__expression] = STATE(1879), + [sym_block] = STATE(1879), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1879), + [sym_nil] = STATE(1879), + [sym__atom] = STATE(1879), + [sym_quoted_atom] = STATE(1879), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1879), + [sym_charlist] = STATE(1879), + [sym_sigil] = STATE(1879), + [sym_list] = STATE(1879), + [sym_tuple] = STATE(1879), + [sym_bitstring] = STATE(1879), + [sym_map] = STATE(1879), + [sym_unary_operator] = STATE(1879), + [sym_binary_operator] = STATE(1879), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1879), + [sym_call] = STATE(1879), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1879), + [sym_anonymous_function] = STATE(1879), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2513), + [sym_integer] = ACTIONS(2513), + [sym_float] = ACTIONS(2513), + [sym_char] = ACTIONS(2513), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(2513), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [888] = { + [sym__expression] = STATE(1875), + [sym_block] = STATE(1875), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1875), + [sym_nil] = STATE(1875), + [sym__atom] = STATE(1875), + [sym_quoted_atom] = STATE(1875), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1875), + [sym_charlist] = STATE(1875), + [sym_sigil] = STATE(1875), + [sym_list] = STATE(1875), + [sym_tuple] = STATE(1875), + [sym_bitstring] = STATE(1875), + [sym_map] = STATE(1875), + [sym_unary_operator] = STATE(1875), + [sym_binary_operator] = STATE(1875), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1875), + [sym_call] = STATE(1875), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1875), + [sym_anonymous_function] = STATE(1875), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2515), + [sym_integer] = ACTIONS(2515), + [sym_float] = ACTIONS(2515), + [sym_char] = ACTIONS(2515), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(2515), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [889] = { + [sym__expression] = STATE(1872), + [sym_block] = STATE(1872), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1872), + [sym_nil] = STATE(1872), + [sym__atom] = STATE(1872), + [sym_quoted_atom] = STATE(1872), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1872), + [sym_charlist] = STATE(1872), + [sym_sigil] = STATE(1872), + [sym_list] = STATE(1872), + [sym_tuple] = STATE(1872), + [sym_bitstring] = STATE(1872), + [sym_map] = STATE(1872), + [sym_unary_operator] = STATE(1872), + [sym_binary_operator] = STATE(1872), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1872), + [sym_call] = STATE(1872), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1872), + [sym_anonymous_function] = STATE(1872), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2517), + [sym_integer] = ACTIONS(2517), + [sym_float] = ACTIONS(2517), + [sym_char] = ACTIONS(2517), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(2517), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [890] = { + [sym__expression] = STATE(1871), + [sym_block] = STATE(1871), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1871), + [sym_nil] = STATE(1871), + [sym__atom] = STATE(1871), + [sym_quoted_atom] = STATE(1871), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1871), + [sym_charlist] = STATE(1871), + [sym_sigil] = STATE(1871), + [sym_list] = STATE(1871), + [sym_tuple] = STATE(1871), + [sym_bitstring] = STATE(1871), + [sym_map] = STATE(1871), + [sym_unary_operator] = STATE(1871), + [sym_binary_operator] = STATE(1871), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1871), + [sym_call] = STATE(1871), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1871), + [sym_anonymous_function] = STATE(1871), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2519), + [sym_integer] = ACTIONS(2519), + [sym_float] = ACTIONS(2519), + [sym_char] = ACTIONS(2519), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(2519), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [891] = { + [sym__expression] = STATE(4074), + [sym_block] = STATE(4074), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(4074), + [sym_nil] = STATE(4074), + [sym__atom] = STATE(4074), + [sym_quoted_atom] = STATE(4074), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4074), + [sym_call] = STATE(4074), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4074), + [sym_anonymous_function] = STATE(4074), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2521), + [sym_integer] = ACTIONS(2521), + [sym_float] = ACTIONS(2521), + [sym_char] = ACTIONS(2521), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2521), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [892] = { + [sym__expression] = STATE(1868), + [sym_block] = STATE(1868), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1868), + [sym_nil] = STATE(1868), + [sym__atom] = STATE(1868), + [sym_quoted_atom] = STATE(1868), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1868), + [sym_charlist] = STATE(1868), + [sym_sigil] = STATE(1868), + [sym_list] = STATE(1868), + [sym_tuple] = STATE(1868), + [sym_bitstring] = STATE(1868), + [sym_map] = STATE(1868), + [sym_unary_operator] = STATE(1868), + [sym_binary_operator] = STATE(1868), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1868), + [sym_call] = STATE(1868), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1868), + [sym_anonymous_function] = STATE(1868), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2523), + [sym_integer] = ACTIONS(2523), + [sym_float] = ACTIONS(2523), + [sym_char] = ACTIONS(2523), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(2523), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [893] = { + [sym__expression] = STATE(1578), + [sym_block] = STATE(1578), + [sym_identifier] = STATE(14), + [sym_boolean] = STATE(1578), + [sym_nil] = STATE(1578), + [sym__atom] = STATE(1578), + [sym_quoted_atom] = STATE(1578), + [sym__quoted_i_double] = STATE(1492), + [sym__quoted_i_single] = STATE(1433), + [sym__quoted_i_heredoc_single] = STATE(1432), + [sym__quoted_i_heredoc_double] = STATE(1431), + [sym_string] = STATE(1578), + [sym_charlist] = STATE(1578), + [sym_sigil] = STATE(1578), + [sym_list] = STATE(1578), + [sym_tuple] = STATE(1578), + [sym_bitstring] = STATE(1578), + [sym_map] = STATE(1578), + [sym_unary_operator] = STATE(1578), + [sym_binary_operator] = STATE(1578), + [sym_operator_identifier] = STATE(5631), + [sym_dot] = STATE(1578), + [sym_call] = STATE(1578), + [sym__call_without_parentheses] = STATE(1430), + [sym__call_with_parentheses] = STATE(1429), + [sym__local_call_without_parentheses] = STATE(1428), + [sym__local_call_with_parentheses] = STATE(1114), + [sym__local_call_just_do_block] = STATE(1424), + [sym__remote_call_without_parentheses] = STATE(1423), + [sym__remote_call_with_parentheses] = STATE(1112), + [sym__remote_dot] = STATE(18), + [sym__anonymous_call] = STATE(1110), + [sym__anonymous_dot] = STATE(5455), + [sym__double_call] = STATE(1410), + [sym_access_call] = STATE(1578), + [sym_anonymous_function] = STATE(1578), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(185), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(1395), + [sym_integer] = ACTIONS(1395), + [sym_float] = ACTIONS(1395), + [sym_char] = ACTIONS(1395), + [anon_sym_true] = ACTIONS(191), + [anon_sym_false] = ACTIONS(191), + [anon_sym_nil] = ACTIONS(193), + [sym_atom] = ACTIONS(1395), + [anon_sym_DQUOTE] = ACTIONS(195), + [anon_sym_SQUOTE] = ACTIONS(197), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(199), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(201), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LBRACK] = ACTIONS(205), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(210), + [anon_sym_LT_LT] = ACTIONS(214), + [anon_sym_PERCENT] = ACTIONS(216), + [anon_sym_AMP] = ACTIONS(218), + [anon_sym_PLUS] = ACTIONS(223), + [anon_sym_DASH] = ACTIONS(223), + [anon_sym_BANG] = ACTIONS(223), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(223), + [anon_sym_not] = ACTIONS(223), + [anon_sym_AT] = ACTIONS(225), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(227), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(231), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(236), + }, + [894] = { + [sym__expression] = STATE(1468), + [sym_block] = STATE(1468), + [sym_identifier] = STATE(15), + [sym_boolean] = STATE(1468), + [sym_nil] = STATE(1468), + [sym__atom] = STATE(1468), + [sym_quoted_atom] = STATE(1468), + [sym__quoted_i_double] = STATE(1146), + [sym__quoted_i_single] = STATE(1147), + [sym__quoted_i_heredoc_single] = STATE(1148), + [sym__quoted_i_heredoc_double] = STATE(1149), + [sym_string] = STATE(1468), + [sym_charlist] = STATE(1468), + [sym_sigil] = STATE(1468), + [sym_list] = STATE(1468), + [sym_tuple] = STATE(1468), + [sym_bitstring] = STATE(1468), + [sym_map] = STATE(1468), + [sym_unary_operator] = STATE(1468), + [sym_binary_operator] = STATE(1468), + [sym_operator_identifier] = STATE(5600), + [sym_dot] = STATE(1468), + [sym_call] = STATE(1468), + [sym__call_without_parentheses] = STATE(1150), + [sym__call_with_parentheses] = STATE(1151), + [sym__local_call_without_parentheses] = STATE(1152), + [sym__local_call_with_parentheses] = STATE(1072), + [sym__local_call_just_do_block] = STATE(1154), + [sym__remote_call_without_parentheses] = STATE(1155), + [sym__remote_call_with_parentheses] = STATE(1074), + [sym__remote_dot] = STATE(19), + [sym__anonymous_call] = STATE(1075), + [sym__anonymous_dot] = STATE(5495), + [sym__double_call] = STATE(1157), + [sym_access_call] = STATE(1468), + [sym_anonymous_function] = STATE(1468), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(238), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2525), + [sym_integer] = ACTIONS(2525), + [sym_float] = ACTIONS(2525), + [sym_char] = ACTIONS(2525), + [anon_sym_true] = ACTIONS(242), + [anon_sym_false] = ACTIONS(242), + [anon_sym_nil] = ACTIONS(244), + [sym_atom] = ACTIONS(2525), + [anon_sym_DQUOTE] = ACTIONS(246), + [anon_sym_SQUOTE] = ACTIONS(248), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(250), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(252), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LBRACK] = ACTIONS(256), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(258), + [anon_sym_LT_LT] = ACTIONS(262), + [anon_sym_PERCENT] = ACTIONS(264), + [anon_sym_AMP] = ACTIONS(266), + [anon_sym_PLUS] = ACTIONS(271), + [anon_sym_DASH] = ACTIONS(271), + [anon_sym_BANG] = ACTIONS(271), + [anon_sym_CARET] = ACTIONS(271), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(271), + [anon_sym_not] = ACTIONS(271), + [anon_sym_AT] = ACTIONS(273), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(275), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(279), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(281), + }, + [895] = { + [sym__expression] = STATE(1867), + [sym_block] = STATE(1867), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1867), + [sym_nil] = STATE(1867), + [sym__atom] = STATE(1867), + [sym_quoted_atom] = STATE(1867), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1867), + [sym_charlist] = STATE(1867), + [sym_sigil] = STATE(1867), + [sym_list] = STATE(1867), + [sym_tuple] = STATE(1867), + [sym_bitstring] = STATE(1867), + [sym_map] = STATE(1867), + [sym_unary_operator] = STATE(1867), + [sym_binary_operator] = STATE(1867), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1867), + [sym_call] = STATE(1867), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1867), + [sym_anonymous_function] = STATE(1867), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2527), + [sym_integer] = ACTIONS(2527), + [sym_float] = ACTIONS(2527), + [sym_char] = ACTIONS(2527), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(2527), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [896] = { + [sym__expression] = STATE(2629), + [sym_block] = STATE(2629), + [sym_identifier] = STATE(30), + [sym_boolean] = STATE(2629), + [sym_nil] = STATE(2629), + [sym__atom] = STATE(2629), + [sym_quoted_atom] = STATE(2629), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [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(5592), + [sym_dot] = STATE(2629), + [sym_call] = STATE(2629), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(17), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(2629), + [sym_anonymous_function] = STATE(2629), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(896), + [sym_integer] = ACTIONS(896), + [sym_float] = ACTIONS(896), + [sym_char] = ACTIONS(896), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(896), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(920), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_BANG] = ACTIONS(922), + [anon_sym_CARET] = ACTIONS(922), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(922), + [anon_sym_not] = ACTIONS(922), + [anon_sym_AT] = ACTIONS(924), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(930), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [897] = { + [sym__expression] = STATE(4029), + [sym_block] = STATE(4029), + [sym_identifier] = STATE(65), + [sym_boolean] = STATE(4029), + [sym_nil] = STATE(4029), + [sym__atom] = STATE(4029), + [sym_quoted_atom] = STATE(4029), + [sym__quoted_i_double] = STATE(4022), + [sym__quoted_i_single] = STATE(4009), + [sym__quoted_i_heredoc_single] = STATE(4065), + [sym__quoted_i_heredoc_double] = STATE(4071), + [sym_string] = STATE(4029), + [sym_charlist] = STATE(4029), + [sym_sigil] = STATE(4029), + [sym_list] = STATE(4029), + [sym_tuple] = STATE(4029), + [sym_bitstring] = STATE(4029), + [sym_map] = STATE(4029), + [sym_unary_operator] = STATE(4029), + [sym_binary_operator] = STATE(4029), + [sym_operator_identifier] = STATE(5568), + [sym_dot] = STATE(4029), + [sym_call] = STATE(4029), + [sym__call_without_parentheses] = STATE(4077), + [sym__call_with_parentheses] = STATE(4080), + [sym__local_call_without_parentheses] = STATE(4085), + [sym__local_call_with_parentheses] = STATE(3361), + [sym__local_call_just_do_block] = STATE(4086), + [sym__remote_call_without_parentheses] = STATE(4093), + [sym__remote_call_with_parentheses] = STATE(3362), + [sym__remote_dot] = STATE(54), + [sym__anonymous_call] = STATE(3363), + [sym__anonymous_dot] = STATE(5519), + [sym__double_call] = STATE(4094), + [sym_access_call] = STATE(4029), + [sym_anonymous_function] = STATE(4029), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1079), + [aux_sym_identifier_token1] = ACTIONS(1081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1081), + [sym_alias] = ACTIONS(1263), + [sym_integer] = ACTIONS(1263), + [sym_float] = ACTIONS(1263), + [sym_char] = ACTIONS(1263), + [anon_sym_true] = ACTIONS(1085), + [anon_sym_false] = ACTIONS(1085), + [anon_sym_nil] = ACTIONS(1087), + [sym_atom] = ACTIONS(1263), + [anon_sym_DQUOTE] = ACTIONS(1089), + [anon_sym_SQUOTE] = ACTIONS(1091), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1093), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1095), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LBRACK] = ACTIONS(1099), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1101), + [anon_sym_LT_LT] = ACTIONS(1105), + [anon_sym_PERCENT] = ACTIONS(1109), + [anon_sym_AMP] = ACTIONS(1111), + [anon_sym_PLUS] = ACTIONS(1113), + [anon_sym_DASH] = ACTIONS(1113), + [anon_sym_BANG] = ACTIONS(1113), + [anon_sym_CARET] = ACTIONS(1113), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1113), + [anon_sym_not] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(1115), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1117), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1119), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1121), + }, + [898] = { + [sym__expression] = STATE(1866), + [sym_block] = STATE(1866), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1866), + [sym_nil] = STATE(1866), + [sym__atom] = STATE(1866), + [sym_quoted_atom] = STATE(1866), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1866), + [sym_charlist] = STATE(1866), + [sym_sigil] = STATE(1866), + [sym_list] = STATE(1866), + [sym_tuple] = STATE(1866), + [sym_bitstring] = STATE(1866), + [sym_map] = STATE(1866), + [sym_unary_operator] = STATE(1866), + [sym_binary_operator] = STATE(1866), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1866), + [sym_call] = STATE(1866), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1866), + [sym_anonymous_function] = STATE(1866), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2529), + [sym_integer] = ACTIONS(2529), + [sym_float] = ACTIONS(2529), + [sym_char] = ACTIONS(2529), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(2529), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [899] = { + [sym__expression] = STATE(3659), + [sym_block] = STATE(3659), + [sym_identifier] = STATE(55), + [sym_boolean] = STATE(3659), + [sym_nil] = STATE(3659), + [sym__atom] = STATE(3659), + [sym_quoted_atom] = STATE(3659), + [sym__quoted_i_double] = STATE(1930), + [sym__quoted_i_single] = STATE(1912), + [sym__quoted_i_heredoc_single] = STATE(1752), + [sym__quoted_i_heredoc_double] = STATE(1753), + [sym_string] = STATE(3659), + [sym_charlist] = STATE(3659), + [sym_sigil] = STATE(3659), + [sym_list] = STATE(3659), + [sym_tuple] = STATE(3659), + [sym_bitstring] = STATE(3659), + [sym_map] = STATE(3659), + [sym_unary_operator] = STATE(3659), + [sym_binary_operator] = STATE(3659), + [sym_operator_identifier] = STATE(5592), + [sym_dot] = STATE(3659), + [sym_call] = STATE(3659), + [sym__call_without_parentheses] = STATE(1754), + [sym__call_with_parentheses] = STATE(1755), + [sym__local_call_without_parentheses] = STATE(1756), + [sym__local_call_with_parentheses] = STATE(1318), + [sym__local_call_just_do_block] = STATE(1758), + [sym__remote_call_without_parentheses] = STATE(1759), + [sym__remote_call_with_parentheses] = STATE(1319), + [sym__remote_dot] = STATE(53), + [sym__anonymous_call] = STATE(1321), + [sym__anonymous_dot] = STATE(5510), + [sym__double_call] = STATE(1763), + [sym_access_call] = STATE(3659), + [sym_anonymous_function] = STATE(3659), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(894), + [aux_sym_identifier_token1] = ACTIONS(664), + [anon_sym_DOT_DOT_DOT] = ACTIONS(664), + [sym_alias] = ACTIONS(2531), + [sym_integer] = ACTIONS(2531), + [sym_float] = ACTIONS(2531), + [sym_char] = ACTIONS(2531), + [anon_sym_true] = ACTIONS(898), + [anon_sym_false] = ACTIONS(898), + [anon_sym_nil] = ACTIONS(900), + [sym_atom] = ACTIONS(2531), + [anon_sym_DQUOTE] = ACTIONS(902), + [anon_sym_SQUOTE] = ACTIONS(904), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(906), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LBRACK] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_LT_LT] = ACTIONS(916), + [anon_sym_PERCENT] = ACTIONS(918), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1347), + [anon_sym_DASH] = ACTIONS(1347), + [anon_sym_BANG] = ACTIONS(1347), + [anon_sym_CARET] = ACTIONS(1347), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1347), + [anon_sym_not] = ACTIONS(1347), + [anon_sym_AT] = ACTIONS(1349), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(928), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1351), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(932), + }, + [900] = { + [sym__expression] = STATE(4127), + [sym_block] = STATE(4127), + [sym_identifier] = STATE(48), + [sym_boolean] = STATE(4127), + [sym_nil] = STATE(4127), + [sym__atom] = STATE(4127), + [sym_quoted_atom] = STATE(4127), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(4127), + [sym_charlist] = STATE(4127), + [sym_sigil] = STATE(4127), + [sym_list] = STATE(4127), + [sym_tuple] = STATE(4127), + [sym_bitstring] = STATE(4127), + [sym_map] = STATE(4127), + [sym_unary_operator] = STATE(4127), + [sym_binary_operator] = STATE(4127), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(4127), + [sym_call] = STATE(4127), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(35), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4127), + [sym_anonymous_function] = STATE(4127), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2533), + [sym_integer] = ACTIONS(2533), + [sym_float] = ACTIONS(2533), + [sym_char] = ACTIONS(2533), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2533), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1047), + [anon_sym_PLUS] = ACTIONS(1049), + [anon_sym_DASH] = ACTIONS(1049), + [anon_sym_BANG] = ACTIONS(1049), + [anon_sym_CARET] = ACTIONS(1049), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1049), + [anon_sym_not] = ACTIONS(1049), + [anon_sym_AT] = ACTIONS(1051), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1055), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [901] = { + [sym__expression] = STATE(1718), + [sym_block] = STATE(1718), + [sym_identifier] = STATE(26), + [sym_boolean] = STATE(1718), + [sym_nil] = STATE(1718), + [sym__atom] = STATE(1718), + [sym_quoted_atom] = STATE(1718), + [sym__quoted_i_double] = STATE(1685), + [sym__quoted_i_single] = STATE(1684), + [sym__quoted_i_heredoc_single] = STATE(1518), + [sym__quoted_i_heredoc_double] = STATE(1517), + [sym_string] = STATE(1718), + [sym_charlist] = STATE(1718), + [sym_sigil] = STATE(1718), + [sym_list] = STATE(1718), + [sym_tuple] = STATE(1718), + [sym_bitstring] = STATE(1718), + [sym_map] = STATE(1718), + [sym_unary_operator] = STATE(1718), + [sym_binary_operator] = STATE(1718), + [sym_operator_identifier] = STATE(5565), + [sym_dot] = STATE(1718), + [sym_call] = STATE(1718), + [sym__call_without_parentheses] = STATE(1516), + [sym__call_with_parentheses] = STATE(1515), + [sym__local_call_without_parentheses] = STATE(1514), + [sym__local_call_with_parentheses] = STATE(1291), + [sym__local_call_just_do_block] = STATE(1508), + [sym__remote_call_without_parentheses] = STATE(1605), + [sym__remote_call_with_parentheses] = STATE(1125), + [sym__remote_dot] = STATE(16), + [sym__anonymous_call] = STATE(1292), + [sym__anonymous_dot] = STATE(5454), + [sym__double_call] = STATE(1570), + [sym_access_call] = STATE(1718), + [sym_anonymous_function] = STATE(1718), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1385), + [aux_sym_identifier_token1] = ACTIONS(63), + [anon_sym_DOT_DOT_DOT] = ACTIONS(63), + [sym_alias] = ACTIONS(2535), + [sym_integer] = ACTIONS(2535), + [sym_float] = ACTIONS(2535), + [sym_char] = ACTIONS(2535), + [anon_sym_true] = ACTIONS(67), + [anon_sym_false] = ACTIONS(67), + [anon_sym_nil] = ACTIONS(69), + [sym_atom] = ACTIONS(2535), + [anon_sym_DQUOTE] = ACTIONS(71), + [anon_sym_SQUOTE] = ACTIONS(73), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(75), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(77), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LBRACK] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(83), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(89), + [anon_sym_AMP] = ACTIONS(91), + [anon_sym_PLUS] = ACTIONS(93), + [anon_sym_DASH] = ACTIONS(93), + [anon_sym_BANG] = ACTIONS(93), + [anon_sym_CARET] = ACTIONS(93), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(93), + [anon_sym_not] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(107), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(111), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(113), + }, + [902] = { + [sym__expression] = STATE(4075), + [sym_block] = STATE(4075), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(4075), + [sym_nil] = STATE(4075), + [sym__atom] = STATE(4075), + [sym_quoted_atom] = STATE(4075), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4075), + [sym_call] = STATE(4075), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4075), + [sym_anonymous_function] = STATE(4075), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2537), + [sym_integer] = ACTIONS(2537), + [sym_float] = ACTIONS(2537), + [sym_char] = ACTIONS(2537), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2537), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [903] = { + [sym__expression] = STATE(3162), + [sym_block] = STATE(3162), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(3162), + [sym_nil] = STATE(3162), + [sym__atom] = STATE(3162), + [sym_quoted_atom] = STATE(3162), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(3162), + [sym_call] = STATE(3162), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3162), + [sym_anonymous_function] = STATE(3162), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2331), + [sym_integer] = ACTIONS(2331), + [sym_float] = ACTIONS(2331), + [sym_char] = ACTIONS(2331), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2331), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [904] = { + [sym__expression] = STATE(3161), + [sym_block] = STATE(3161), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(3161), + [sym_nil] = STATE(3161), + [sym__atom] = STATE(3161), + [sym_quoted_atom] = STATE(3161), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(3161), + [sym_call] = STATE(3161), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3161), + [sym_anonymous_function] = STATE(3161), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2333), + [sym_integer] = ACTIONS(2333), + [sym_float] = ACTIONS(2333), + [sym_char] = ACTIONS(2333), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2333), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(1010), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [905] = { + [sym__expression] = STATE(4081), + [sym_block] = STATE(4081), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(4081), + [sym_nil] = STATE(4081), + [sym__atom] = STATE(4081), + [sym_quoted_atom] = STATE(4081), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4081), + [sym_call] = STATE(4081), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4081), + [sym_anonymous_function] = STATE(4081), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2539), + [sym_integer] = ACTIONS(2539), + [sym_float] = ACTIONS(2539), + [sym_char] = ACTIONS(2539), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2539), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [906] = { + [sym__expression] = STATE(4120), + [sym_block] = STATE(4120), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(4120), + [sym_nil] = STATE(4120), + [sym__atom] = STATE(4120), + [sym_quoted_atom] = STATE(4120), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4120), + [sym_call] = STATE(4120), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4120), + [sym_anonymous_function] = STATE(4120), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2541), + [sym_integer] = ACTIONS(2541), + [sym_float] = ACTIONS(2541), + [sym_char] = ACTIONS(2541), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2541), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [907] = { + [sym__expression] = STATE(3146), + [sym_block] = STATE(3146), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(3146), + [sym_nil] = STATE(3146), + [sym__atom] = STATE(3146), + [sym_quoted_atom] = STATE(3146), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3146), + [sym_charlist] = STATE(3146), + [sym_sigil] = STATE(3146), + [sym_list] = STATE(3146), + [sym_tuple] = STATE(3146), + [sym_bitstring] = STATE(3146), + [sym_map] = STATE(3146), + [sym_unary_operator] = STATE(3146), + [sym_binary_operator] = STATE(3146), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3146), + [sym_call] = STATE(3146), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3146), + [sym_anonymous_function] = STATE(3146), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2369), + [sym_integer] = ACTIONS(2369), + [sym_float] = ACTIONS(2369), + [sym_char] = ACTIONS(2369), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2369), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, [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), + [sym__expression] = STATE(3145), + [sym_block] = STATE(3145), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(3145), + [sym_nil] = STATE(3145), + [sym__atom] = STATE(3145), + [sym_quoted_atom] = STATE(3145), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [sym_string] = STATE(3145), + [sym_charlist] = STATE(3145), + [sym_sigil] = STATE(3145), + [sym_list] = STATE(3145), + [sym_tuple] = STATE(3145), + [sym_bitstring] = STATE(3145), + [sym_map] = STATE(3145), + [sym_unary_operator] = STATE(3145), + [sym_binary_operator] = STATE(3145), + [sym_operator_identifier] = STATE(5548), + [sym_dot] = STATE(3145), + [sym_call] = STATE(3145), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(3145), + [sym_anonymous_function] = STATE(3145), [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(2607), - [sym_integer] = ACTIONS(2607), - [sym_float] = ACTIONS(2607), - [sym_char] = ACTIONS(2607), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), - [sym_atom] = ACTIONS(2607), - [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), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2371), + [sym_integer] = ACTIONS(2371), + [sym_float] = ACTIONS(2371), + [sym_char] = ACTIONS(2371), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2371), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), [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), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), }, [909] = { - [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), + [sym__expression] = STATE(4087), + [sym_block] = STATE(4087), + [sym_identifier] = STATE(75), + [sym_boolean] = STATE(4087), + [sym_nil] = STATE(4087), + [sym__atom] = STATE(4087), + [sym_quoted_atom] = STATE(4087), + [sym__quoted_i_double] = STATE(2725), + [sym__quoted_i_single] = STATE(2727), + [sym__quoted_i_heredoc_single] = STATE(3092), + [sym__quoted_i_heredoc_double] = STATE(3093), + [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(5548), + [sym_dot] = STATE(4087), + [sym_call] = STATE(4087), + [sym__call_without_parentheses] = STATE(3097), + [sym__call_with_parentheses] = STATE(3099), + [sym__local_call_without_parentheses] = STATE(3100), + [sym__local_call_with_parentheses] = STATE(2103), + [sym__local_call_just_do_block] = STATE(3181), + [sym__remote_call_without_parentheses] = STATE(3178), + [sym__remote_call_with_parentheses] = STATE(2102), + [sym__remote_dot] = STATE(66), + [sym__anonymous_call] = STATE(2101), + [sym__anonymous_dot] = STATE(5504), + [sym__double_call] = STATE(3176), + [sym_access_call] = STATE(4087), + [sym_anonymous_function] = STATE(4087), [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), + [anon_sym_LPAREN] = ACTIONS(1017), + [aux_sym_identifier_token1] = ACTIONS(782), + [anon_sym_DOT_DOT_DOT] = ACTIONS(782), + [sym_alias] = ACTIONS(2543), + [sym_integer] = ACTIONS(2543), + [sym_float] = ACTIONS(2543), + [sym_char] = ACTIONS(2543), + [anon_sym_true] = ACTIONS(1021), + [anon_sym_false] = ACTIONS(1021), + [anon_sym_nil] = ACTIONS(1023), + [sym_atom] = ACTIONS(2543), + [anon_sym_DQUOTE] = ACTIONS(1025), + [anon_sym_SQUOTE] = ACTIONS(1027), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(1029), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(1031), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LBRACK] = ACTIONS(1035), + [anon_sym_LT] = ACTIONS(35), + [anon_sym_GT] = ACTIONS(35), + [anon_sym_PIPE] = ACTIONS(35), + [anon_sym_SLASH] = ACTIONS(35), + [anon_sym_TILDE] = ACTIONS(1039), + [anon_sym_LT_LT] = ACTIONS(1043), + [anon_sym_PERCENT] = ACTIONS(1045), + [anon_sym_AMP] = ACTIONS(1441), + [anon_sym_PLUS] = ACTIONS(1443), + [anon_sym_DASH] = ACTIONS(1443), + [anon_sym_BANG] = ACTIONS(1443), + [anon_sym_CARET] = ACTIONS(1443), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(1443), + [anon_sym_not] = ACTIONS(1443), + [anon_sym_AT] = ACTIONS(1445), + [anon_sym_LT_DASH] = ACTIONS(35), + [anon_sym_BSLASH_BSLASH] = ACTIONS(35), + [anon_sym_when] = ACTIONS(35), + [anon_sym_COLON_COLON] = ACTIONS(35), + [anon_sym_EQ] = ACTIONS(35), + [anon_sym_PIPE_PIPE] = ACTIONS(35), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(35), + [anon_sym_or] = ACTIONS(35), + [anon_sym_AMP_AMP] = ACTIONS(35), + [anon_sym_AMP_AMP_AMP] = ACTIONS(35), + [anon_sym_and] = ACTIONS(35), + [anon_sym_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ] = ACTIONS(35), + [anon_sym_EQ_TILDE] = ACTIONS(35), + [anon_sym_EQ_EQ_EQ] = ACTIONS(35), + [anon_sym_BANG_EQ_EQ] = ACTIONS(35), + [anon_sym_LT_EQ] = ACTIONS(35), + [anon_sym_GT_EQ] = ACTIONS(35), + [anon_sym_PIPE_GT] = ACTIONS(35), + [anon_sym_LT_LT_LT] = ACTIONS(35), + [anon_sym_GT_GT_GT] = ACTIONS(35), + [anon_sym_LT_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT_GT] = ACTIONS(35), + [anon_sym_LT_TILDE] = ACTIONS(35), + [anon_sym_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_TILDE_GT] = ACTIONS(35), + [anon_sym_LT_PIPE_GT] = ACTIONS(35), + [anon_sym_in] = ACTIONS(35), + [anon_sym_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH] = ACTIONS(35), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(35), + [anon_sym_DASH_DASH_DASH] = ACTIONS(35), + [anon_sym_DOT_DOT] = ACTIONS(35), + [anon_sym_LT_GT] = ACTIONS(35), + [anon_sym_STAR] = ACTIONS(35), + [anon_sym_STAR_STAR] = ACTIONS(35), + [anon_sym_CARET_CARET] = ACTIONS(35), + [anon_sym_DASH_GT] = ACTIONS(35), + [anon_sym_DOT] = ACTIONS(35), + [anon_sym_fn] = ACTIONS(1053), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(1447), + [sym__not_in] = ACTIONS(53), + [sym__quoted_atom_start] = ACTIONS(1057), + }, + [910] = { + [aux_sym__terminator_token1] = ACTIONS(2545), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2547), + [aux_sym_identifier_token1] = ACTIONS(2547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2547), + [sym_alias] = ACTIONS(2547), + [sym_integer] = ACTIONS(2547), + [sym_float] = ACTIONS(2547), + [sym_char] = ACTIONS(2547), + [anon_sym_true] = ACTIONS(2547), + [anon_sym_false] = ACTIONS(2547), + [anon_sym_nil] = ACTIONS(2547), + [sym_atom] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2547), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_SLASH] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2547), + [anon_sym_COMMA] = ACTIONS(2547), + [sym_keyword] = ACTIONS(2547), + [anon_sym_LT_LT] = ACTIONS(2547), + [anon_sym_PERCENT] = ACTIONS(2547), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_CARET] = ACTIONS(2547), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2547), + [anon_sym_not] = ACTIONS(2547), + [anon_sym_AT] = ACTIONS(2547), + [anon_sym_LT_DASH] = ACTIONS(2547), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2547), + [anon_sym_when] = ACTIONS(2547), + [anon_sym_COLON_COLON] = ACTIONS(2547), + [anon_sym_EQ_GT] = ACTIONS(2547), + [anon_sym_EQ] = ACTIONS(2547), + [anon_sym_PIPE_PIPE] = ACTIONS(2547), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2547), + [anon_sym_or] = ACTIONS(2547), + [anon_sym_AMP_AMP] = ACTIONS(2547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2547), + [anon_sym_and] = ACTIONS(2547), + [anon_sym_EQ_EQ] = ACTIONS(2547), + [anon_sym_BANG_EQ] = ACTIONS(2547), + [anon_sym_EQ_TILDE] = ACTIONS(2547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2547), + [anon_sym_LT_EQ] = ACTIONS(2547), + [anon_sym_GT_EQ] = ACTIONS(2547), + [anon_sym_PIPE_GT] = ACTIONS(2547), + [anon_sym_LT_LT_LT] = ACTIONS(2547), + [anon_sym_GT_GT_GT] = ACTIONS(2547), + [anon_sym_LT_LT_TILDE] = ACTIONS(2547), + [anon_sym_TILDE_GT_GT] = ACTIONS(2547), + [anon_sym_LT_TILDE] = ACTIONS(2547), + [anon_sym_TILDE_GT] = ACTIONS(2547), + [anon_sym_LT_TILDE_GT] = ACTIONS(2547), + [anon_sym_LT_PIPE_GT] = ACTIONS(2547), + [anon_sym_in] = ACTIONS(2547), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2547), + [anon_sym_SLASH_SLASH] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH] = ACTIONS(2547), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2547), + [anon_sym_DOT_DOT] = ACTIONS(2547), + [anon_sym_LT_GT] = ACTIONS(2547), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_STAR_STAR] = ACTIONS(2547), + [anon_sym_CARET_CARET] = ACTIONS(2547), + [anon_sym_DASH_GT] = ACTIONS(2547), + [anon_sym_DOT] = ACTIONS(2547), + [anon_sym_after] = ACTIONS(2547), + [anon_sym_catch] = ACTIONS(2547), + [anon_sym_do] = ACTIONS(2547), + [anon_sym_else] = ACTIONS(2547), + [anon_sym_end] = ACTIONS(2547), + [anon_sym_fn] = ACTIONS(2547), + [anon_sym_rescue] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(2545), + [anon_sym_LBRACK2] = ACTIONS(2545), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2545), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2545), + [sym__not_in] = ACTIONS(2545), + [sym__quoted_atom_start] = ACTIONS(2545), + }, + [911] = { + [aux_sym__terminator_token1] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_after] = ACTIONS(2551), + [anon_sym_catch] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_end] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_rescue] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [912] = { + [aux_sym__terminator_token1] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_after] = ACTIONS(2551), + [anon_sym_catch] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_end] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_rescue] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [913] = { + [aux_sym__terminator_token1] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2555), + [anon_sym_LPAREN] = ACTIONS(2555), + [aux_sym_identifier_token1] = ACTIONS(2555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2555), + [sym_alias] = ACTIONS(2555), + [sym_integer] = ACTIONS(2555), + [sym_float] = ACTIONS(2555), + [sym_char] = ACTIONS(2555), + [anon_sym_true] = ACTIONS(2555), + [anon_sym_false] = ACTIONS(2555), + [anon_sym_nil] = ACTIONS(2555), + [sym_atom] = ACTIONS(2555), + [anon_sym_DQUOTE] = ACTIONS(2555), + [anon_sym_SQUOTE] = ACTIONS(2555), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2555), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_LT] = ACTIONS(2555), + [anon_sym_GT] = ACTIONS(2555), + [anon_sym_PIPE] = ACTIONS(2555), + [anon_sym_SLASH] = ACTIONS(2555), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_COMMA] = ACTIONS(2555), + [sym_keyword] = ACTIONS(2555), + [anon_sym_LT_LT] = ACTIONS(2555), + [anon_sym_PERCENT] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_BANG] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_AT] = ACTIONS(2555), + [anon_sym_LT_DASH] = ACTIONS(2555), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2555), + [anon_sym_when] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2555), + [anon_sym_EQ_GT] = ACTIONS(2555), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_PIPE_PIPE] = ACTIONS(2555), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2555), + [anon_sym_or] = ACTIONS(2555), + [anon_sym_AMP_AMP] = ACTIONS(2555), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2555), + [anon_sym_and] = ACTIONS(2555), + [anon_sym_EQ_EQ] = ACTIONS(2555), + [anon_sym_BANG_EQ] = ACTIONS(2555), + [anon_sym_EQ_TILDE] = ACTIONS(2555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2555), + [anon_sym_LT_EQ] = ACTIONS(2555), + [anon_sym_GT_EQ] = ACTIONS(2555), + [anon_sym_PIPE_GT] = ACTIONS(2555), + [anon_sym_LT_LT_LT] = ACTIONS(2555), + [anon_sym_GT_GT_GT] = ACTIONS(2555), + [anon_sym_LT_LT_TILDE] = ACTIONS(2555), + [anon_sym_TILDE_GT_GT] = ACTIONS(2555), + [anon_sym_LT_TILDE] = ACTIONS(2555), + [anon_sym_TILDE_GT] = ACTIONS(2555), + [anon_sym_LT_TILDE_GT] = ACTIONS(2555), + [anon_sym_LT_PIPE_GT] = ACTIONS(2555), + [anon_sym_in] = ACTIONS(2555), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2555), + [anon_sym_SLASH_SLASH] = ACTIONS(2555), + [anon_sym_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2555), + [anon_sym_DOT_DOT] = ACTIONS(2555), + [anon_sym_LT_GT] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_STAR_STAR] = ACTIONS(2555), + [anon_sym_CARET_CARET] = ACTIONS(2555), + [anon_sym_DASH_GT] = ACTIONS(2555), + [anon_sym_DOT] = ACTIONS(2555), + [anon_sym_after] = ACTIONS(2555), + [anon_sym_catch] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_else] = ACTIONS(2555), + [anon_sym_end] = ACTIONS(2555), + [anon_sym_fn] = ACTIONS(2555), + [anon_sym_rescue] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2553), + [anon_sym_LBRACK2] = ACTIONS(2553), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2553), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2553), + [sym__not_in] = ACTIONS(2553), + [sym__quoted_atom_start] = ACTIONS(2553), + }, + [914] = { + [aux_sym__terminator_token1] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2559), + [aux_sym_identifier_token1] = ACTIONS(2559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [sym_alias] = ACTIONS(2559), + [sym_integer] = ACTIONS(2559), + [sym_float] = ACTIONS(2559), + [sym_char] = ACTIONS(2559), + [anon_sym_true] = ACTIONS(2559), + [anon_sym_false] = ACTIONS(2559), + [anon_sym_nil] = ACTIONS(2559), + [sym_atom] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(2559), + [anon_sym_SQUOTE] = ACTIONS(2559), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2559), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_LT] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2559), + [anon_sym_PIPE] = ACTIONS(2559), + [anon_sym_SLASH] = ACTIONS(2559), + [anon_sym_TILDE] = ACTIONS(2559), + [anon_sym_COMMA] = ACTIONS(2559), + [sym_keyword] = ACTIONS(2559), + [anon_sym_LT_LT] = ACTIONS(2559), + [anon_sym_PERCENT] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_CARET] = ACTIONS(2559), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AT] = ACTIONS(2559), + [anon_sym_LT_DASH] = ACTIONS(2559), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2559), + [anon_sym_when] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2559), + [anon_sym_EQ_GT] = ACTIONS(2559), + [anon_sym_EQ] = ACTIONS(2559), + [anon_sym_PIPE_PIPE] = ACTIONS(2559), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2559), + [anon_sym_or] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2559), + [anon_sym_and] = ACTIONS(2559), + [anon_sym_EQ_EQ] = ACTIONS(2559), + [anon_sym_BANG_EQ] = ACTIONS(2559), + [anon_sym_EQ_TILDE] = ACTIONS(2559), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2559), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2559), + [anon_sym_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_EQ] = ACTIONS(2559), + [anon_sym_PIPE_GT] = ACTIONS(2559), + [anon_sym_LT_LT_LT] = ACTIONS(2559), + [anon_sym_GT_GT_GT] = ACTIONS(2559), + [anon_sym_LT_LT_TILDE] = ACTIONS(2559), + [anon_sym_TILDE_GT_GT] = ACTIONS(2559), + [anon_sym_LT_TILDE] = ACTIONS(2559), + [anon_sym_TILDE_GT] = ACTIONS(2559), + [anon_sym_LT_TILDE_GT] = ACTIONS(2559), + [anon_sym_LT_PIPE_GT] = ACTIONS(2559), + [anon_sym_in] = ACTIONS(2559), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2559), + [anon_sym_SLASH_SLASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2559), + [anon_sym_DOT_DOT] = ACTIONS(2559), + [anon_sym_LT_GT] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_STAR_STAR] = ACTIONS(2559), + [anon_sym_CARET_CARET] = ACTIONS(2559), + [anon_sym_DASH_GT] = ACTIONS(2559), + [anon_sym_DOT] = ACTIONS(2559), + [anon_sym_after] = ACTIONS(2559), + [anon_sym_catch] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_else] = ACTIONS(2559), + [anon_sym_end] = ACTIONS(2559), + [anon_sym_fn] = ACTIONS(2559), + [anon_sym_rescue] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_LBRACK2] = ACTIONS(2557), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2557), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2557), + [sym__not_in] = ACTIONS(2557), + [sym__quoted_atom_start] = ACTIONS(2557), + }, + [915] = { + [aux_sym__terminator_token1] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2563), + [aux_sym_identifier_token1] = ACTIONS(2563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2563), + [sym_alias] = ACTIONS(2563), + [sym_integer] = ACTIONS(2563), + [sym_float] = ACTIONS(2563), + [sym_char] = ACTIONS(2563), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_nil] = ACTIONS(2563), + [sym_atom] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2563), + [anon_sym_SQUOTE] = ACTIONS(2563), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2563), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_GT] = ACTIONS(2563), + [anon_sym_PIPE] = ACTIONS(2563), + [anon_sym_SLASH] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_COMMA] = ACTIONS(2563), + [sym_keyword] = ACTIONS(2563), + [anon_sym_LT_LT] = ACTIONS(2563), + [anon_sym_PERCENT] = ACTIONS(2563), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_CARET] = ACTIONS(2563), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2563), + [anon_sym_LT_DASH] = ACTIONS(2563), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2563), + [anon_sym_when] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2563), + [anon_sym_EQ_GT] = ACTIONS(2563), + [anon_sym_EQ] = ACTIONS(2563), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_or] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2563), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2563), + [anon_sym_and] = ACTIONS(2563), + [anon_sym_EQ_EQ] = ACTIONS(2563), + [anon_sym_BANG_EQ] = ACTIONS(2563), + [anon_sym_EQ_TILDE] = ACTIONS(2563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2563), + [anon_sym_LT_EQ] = ACTIONS(2563), + [anon_sym_GT_EQ] = ACTIONS(2563), + [anon_sym_PIPE_GT] = ACTIONS(2563), + [anon_sym_LT_LT_LT] = ACTIONS(2563), + [anon_sym_GT_GT_GT] = ACTIONS(2563), + [anon_sym_LT_LT_TILDE] = ACTIONS(2563), + [anon_sym_TILDE_GT_GT] = ACTIONS(2563), + [anon_sym_LT_TILDE] = ACTIONS(2563), + [anon_sym_TILDE_GT] = ACTIONS(2563), + [anon_sym_LT_TILDE_GT] = ACTIONS(2563), + [anon_sym_LT_PIPE_GT] = ACTIONS(2563), + [anon_sym_in] = ACTIONS(2563), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2563), + [anon_sym_SLASH_SLASH] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2563), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2563), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [anon_sym_LT_GT] = ACTIONS(2563), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_STAR_STAR] = ACTIONS(2563), + [anon_sym_CARET_CARET] = ACTIONS(2563), + [anon_sym_DASH_GT] = ACTIONS(2563), + [anon_sym_DOT] = ACTIONS(2563), + [anon_sym_after] = ACTIONS(2563), + [anon_sym_catch] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_else] = ACTIONS(2563), + [anon_sym_end] = ACTIONS(2563), + [anon_sym_fn] = ACTIONS(2563), + [anon_sym_rescue] = ACTIONS(2563), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2561), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2561), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2561), + [sym__not_in] = ACTIONS(2561), + [sym__quoted_atom_start] = ACTIONS(2561), + }, + [916] = { + [aux_sym__terminator_token1] = ACTIONS(2565), + [anon_sym_SEMI] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2567), + [aux_sym_identifier_token1] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2567), + [sym_alias] = ACTIONS(2567), + [sym_integer] = ACTIONS(2567), + [sym_float] = ACTIONS(2567), + [sym_char] = ACTIONS(2567), + [anon_sym_true] = ACTIONS(2567), + [anon_sym_false] = ACTIONS(2567), + [anon_sym_nil] = ACTIONS(2567), + [sym_atom] = ACTIONS(2567), + [anon_sym_DQUOTE] = ACTIONS(2567), + [anon_sym_SQUOTE] = ACTIONS(2567), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2567), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_LT] = ACTIONS(2567), + [anon_sym_GT] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_SLASH] = ACTIONS(2567), + [anon_sym_TILDE] = ACTIONS(2567), + [anon_sym_COMMA] = ACTIONS(2567), + [sym_keyword] = ACTIONS(2567), + [anon_sym_LT_LT] = ACTIONS(2567), + [anon_sym_PERCENT] = ACTIONS(2567), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(2567), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2567), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2567), + [anon_sym_AT] = ACTIONS(2567), + [anon_sym_LT_DASH] = ACTIONS(2567), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2567), + [anon_sym_when] = ACTIONS(2567), + [anon_sym_COLON_COLON] = ACTIONS(2567), + [anon_sym_EQ_GT] = ACTIONS(2567), + [anon_sym_EQ] = ACTIONS(2567), + [anon_sym_PIPE_PIPE] = ACTIONS(2567), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2567), + [anon_sym_or] = ACTIONS(2567), + [anon_sym_AMP_AMP] = ACTIONS(2567), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2567), + [anon_sym_and] = ACTIONS(2567), + [anon_sym_EQ_EQ] = ACTIONS(2567), + [anon_sym_BANG_EQ] = ACTIONS(2567), + [anon_sym_EQ_TILDE] = ACTIONS(2567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2567), + [anon_sym_LT_EQ] = ACTIONS(2567), + [anon_sym_GT_EQ] = ACTIONS(2567), + [anon_sym_PIPE_GT] = ACTIONS(2567), + [anon_sym_LT_LT_LT] = ACTIONS(2567), + [anon_sym_GT_GT_GT] = ACTIONS(2567), + [anon_sym_LT_LT_TILDE] = ACTIONS(2567), + [anon_sym_TILDE_GT_GT] = ACTIONS(2567), + [anon_sym_LT_TILDE] = ACTIONS(2567), + [anon_sym_TILDE_GT] = ACTIONS(2567), + [anon_sym_LT_TILDE_GT] = ACTIONS(2567), + [anon_sym_LT_PIPE_GT] = ACTIONS(2567), + [anon_sym_in] = ACTIONS(2567), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2567), + [anon_sym_SLASH_SLASH] = ACTIONS(2567), + [anon_sym_PLUS_PLUS] = ACTIONS(2567), + [anon_sym_DASH_DASH] = ACTIONS(2567), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2567), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2567), + [anon_sym_DOT_DOT] = ACTIONS(2567), + [anon_sym_LT_GT] = ACTIONS(2567), + [anon_sym_STAR] = ACTIONS(2567), + [anon_sym_STAR_STAR] = ACTIONS(2567), + [anon_sym_CARET_CARET] = ACTIONS(2567), + [anon_sym_DASH_GT] = ACTIONS(2567), + [anon_sym_DOT] = ACTIONS(2567), + [anon_sym_after] = ACTIONS(2567), + [anon_sym_catch] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2567), + [anon_sym_else] = ACTIONS(2567), + [anon_sym_end] = ACTIONS(2567), + [anon_sym_fn] = ACTIONS(2567), + [anon_sym_rescue] = ACTIONS(2567), + [anon_sym_LPAREN2] = ACTIONS(2565), + [anon_sym_LBRACK2] = ACTIONS(2565), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2565), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2565), + [sym__not_in] = ACTIONS(2565), + [sym__quoted_atom_start] = ACTIONS(2565), + }, + [917] = { + [aux_sym__terminator_token1] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2571), + [aux_sym_identifier_token1] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2571), + [sym_alias] = ACTIONS(2571), + [sym_integer] = ACTIONS(2571), + [sym_float] = ACTIONS(2571), + [sym_char] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2571), + [anon_sym_false] = ACTIONS(2571), + [anon_sym_nil] = ACTIONS(2571), + [sym_atom] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_COMMA] = ACTIONS(2571), + [sym_keyword] = ACTIONS(2571), + [anon_sym_LT_LT] = ACTIONS(2571), + [anon_sym_PERCENT] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_CARET] = ACTIONS(2571), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_LT_DASH] = ACTIONS(2571), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2571), + [anon_sym_when] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_EQ_GT] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(2571), + [anon_sym_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_or] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2571), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2571), + [anon_sym_and] = ACTIONS(2571), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_EQ_TILDE] = ACTIONS(2571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2571), + [anon_sym_LT_EQ] = ACTIONS(2571), + [anon_sym_GT_EQ] = ACTIONS(2571), + [anon_sym_PIPE_GT] = ACTIONS(2571), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT_GT] = ACTIONS(2571), + [anon_sym_LT_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_PIPE_GT] = ACTIONS(2571), + [anon_sym_in] = ACTIONS(2571), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2571), + [anon_sym_SLASH_SLASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_LT_GT] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_STAR_STAR] = ACTIONS(2571), + [anon_sym_CARET_CARET] = ACTIONS(2571), + [anon_sym_DASH_GT] = ACTIONS(2571), + [anon_sym_DOT] = ACTIONS(2571), + [anon_sym_after] = ACTIONS(2571), + [anon_sym_catch] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_else] = ACTIONS(2571), + [anon_sym_end] = ACTIONS(2571), + [anon_sym_fn] = ACTIONS(2571), + [anon_sym_rescue] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_LBRACK2] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2569), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2569), + [sym__not_in] = ACTIONS(2569), + [sym__quoted_atom_start] = ACTIONS(2569), + }, + [918] = { + [aux_sym__terminator_token1] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_LPAREN] = ACTIONS(2575), + [aux_sym_identifier_token1] = ACTIONS(2575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2575), + [sym_alias] = ACTIONS(2575), + [sym_integer] = ACTIONS(2575), + [sym_float] = ACTIONS(2575), + [sym_char] = ACTIONS(2575), + [anon_sym_true] = ACTIONS(2575), + [anon_sym_false] = ACTIONS(2575), + [anon_sym_nil] = ACTIONS(2575), + [sym_atom] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2575), + [anon_sym_SQUOTE] = ACTIONS(2575), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2575), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_LT] = ACTIONS(2575), + [anon_sym_GT] = ACTIONS(2575), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_SLASH] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_COMMA] = ACTIONS(2575), + [sym_keyword] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2575), + [anon_sym_PERCENT] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2575), + [anon_sym_DASH] = ACTIONS(2575), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_CARET] = ACTIONS(2575), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2575), + [anon_sym_not] = ACTIONS(2575), + [anon_sym_AT] = ACTIONS(2575), + [anon_sym_LT_DASH] = ACTIONS(2575), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2575), + [anon_sym_when] = ACTIONS(2575), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_EQ_GT] = ACTIONS(2575), + [anon_sym_EQ] = ACTIONS(2575), + [anon_sym_PIPE_PIPE] = ACTIONS(2575), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2575), + [anon_sym_or] = ACTIONS(2575), + [anon_sym_AMP_AMP] = ACTIONS(2575), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2575), + [anon_sym_and] = ACTIONS(2575), + [anon_sym_EQ_EQ] = ACTIONS(2575), + [anon_sym_BANG_EQ] = ACTIONS(2575), + [anon_sym_EQ_TILDE] = ACTIONS(2575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2575), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_PIPE_GT] = ACTIONS(2575), + [anon_sym_LT_LT_LT] = ACTIONS(2575), + [anon_sym_GT_GT_GT] = ACTIONS(2575), + [anon_sym_LT_LT_TILDE] = ACTIONS(2575), + [anon_sym_TILDE_GT_GT] = ACTIONS(2575), + [anon_sym_LT_TILDE] = ACTIONS(2575), + [anon_sym_TILDE_GT] = ACTIONS(2575), + [anon_sym_LT_TILDE_GT] = ACTIONS(2575), + [anon_sym_LT_PIPE_GT] = ACTIONS(2575), + [anon_sym_in] = ACTIONS(2575), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2575), + [anon_sym_SLASH_SLASH] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2575), + [anon_sym_DOT_DOT] = ACTIONS(2575), + [anon_sym_LT_GT] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_STAR_STAR] = ACTIONS(2575), + [anon_sym_CARET_CARET] = ACTIONS(2575), + [anon_sym_DASH_GT] = ACTIONS(2575), + [anon_sym_DOT] = ACTIONS(2575), + [anon_sym_after] = ACTIONS(2575), + [anon_sym_catch] = ACTIONS(2575), + [anon_sym_do] = ACTIONS(2575), + [anon_sym_else] = ACTIONS(2575), + [anon_sym_end] = ACTIONS(2575), + [anon_sym_fn] = ACTIONS(2575), + [anon_sym_rescue] = ACTIONS(2575), + [anon_sym_LPAREN2] = ACTIONS(2573), + [anon_sym_LBRACK2] = ACTIONS(2573), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2573), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2573), + [sym__not_in] = ACTIONS(2573), + [sym__quoted_atom_start] = ACTIONS(2573), + }, + [919] = { + [aux_sym__terminator_token1] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2571), + [aux_sym_identifier_token1] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2571), + [sym_alias] = ACTIONS(2571), + [sym_integer] = ACTIONS(2571), + [sym_float] = ACTIONS(2571), + [sym_char] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2571), + [anon_sym_false] = ACTIONS(2571), + [anon_sym_nil] = ACTIONS(2571), + [sym_atom] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_COMMA] = ACTIONS(2571), + [sym_keyword] = ACTIONS(2571), + [anon_sym_LT_LT] = ACTIONS(2571), + [anon_sym_PERCENT] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_CARET] = ACTIONS(2571), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_LT_DASH] = ACTIONS(2571), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2571), + [anon_sym_when] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_EQ_GT] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(2571), + [anon_sym_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_or] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2571), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2571), + [anon_sym_and] = ACTIONS(2571), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_EQ_TILDE] = ACTIONS(2571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2571), + [anon_sym_LT_EQ] = ACTIONS(2571), + [anon_sym_GT_EQ] = ACTIONS(2571), + [anon_sym_PIPE_GT] = ACTIONS(2571), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT_GT] = ACTIONS(2571), + [anon_sym_LT_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_PIPE_GT] = ACTIONS(2571), + [anon_sym_in] = ACTIONS(2571), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2571), + [anon_sym_SLASH_SLASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_LT_GT] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_STAR_STAR] = ACTIONS(2571), + [anon_sym_CARET_CARET] = ACTIONS(2571), + [anon_sym_DASH_GT] = ACTIONS(2571), + [anon_sym_DOT] = ACTIONS(2571), + [anon_sym_after] = ACTIONS(2571), + [anon_sym_catch] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_else] = ACTIONS(2571), + [anon_sym_end] = ACTIONS(2571), + [anon_sym_fn] = ACTIONS(2571), + [anon_sym_rescue] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_LBRACK2] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2569), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2569), + [sym__not_in] = ACTIONS(2569), + [sym__quoted_atom_start] = ACTIONS(2569), + }, + [920] = { + [aux_sym__terminator_token1] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_after] = ACTIONS(2551), + [anon_sym_catch] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_end] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_rescue] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [921] = { + [aux_sym__terminator_token1] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_LPAREN] = ACTIONS(2579), + [aux_sym_identifier_token1] = ACTIONS(2579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2579), + [sym_alias] = ACTIONS(2579), + [sym_integer] = ACTIONS(2579), + [sym_float] = ACTIONS(2579), + [sym_char] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2579), + [anon_sym_false] = ACTIONS(2579), + [anon_sym_nil] = ACTIONS(2579), + [sym_atom] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2579), + [anon_sym_GT] = ACTIONS(2579), + [anon_sym_PIPE] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_COMMA] = ACTIONS(2579), + [sym_keyword] = ACTIONS(2579), + [anon_sym_LT_LT] = ACTIONS(2579), + [anon_sym_PERCENT] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_CARET] = ACTIONS(2579), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2579), + [anon_sym_not] = ACTIONS(2579), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_LT_DASH] = ACTIONS(2579), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2579), + [anon_sym_when] = ACTIONS(2579), + [anon_sym_COLON_COLON] = ACTIONS(2579), + [anon_sym_EQ_GT] = ACTIONS(2579), + [anon_sym_EQ] = ACTIONS(2579), + [anon_sym_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_or] = ACTIONS(2579), + [anon_sym_AMP_AMP] = ACTIONS(2579), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2579), + [anon_sym_and] = ACTIONS(2579), + [anon_sym_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ] = ACTIONS(2579), + [anon_sym_EQ_TILDE] = ACTIONS(2579), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2579), + [anon_sym_LT_EQ] = ACTIONS(2579), + [anon_sym_GT_EQ] = ACTIONS(2579), + [anon_sym_PIPE_GT] = ACTIONS(2579), + [anon_sym_LT_LT_LT] = ACTIONS(2579), + [anon_sym_GT_GT_GT] = ACTIONS(2579), + [anon_sym_LT_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_PIPE_GT] = ACTIONS(2579), + [anon_sym_in] = ACTIONS(2579), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2579), + [anon_sym_SLASH_SLASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2579), + [anon_sym_DOT_DOT] = ACTIONS(2579), + [anon_sym_LT_GT] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_STAR_STAR] = ACTIONS(2579), + [anon_sym_CARET_CARET] = ACTIONS(2579), + [anon_sym_DASH_GT] = ACTIONS(2579), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_after] = ACTIONS(2579), + [anon_sym_catch] = ACTIONS(2579), + [anon_sym_do] = ACTIONS(2579), + [anon_sym_else] = ACTIONS(2579), + [anon_sym_end] = ACTIONS(2579), + [anon_sym_fn] = ACTIONS(2579), + [anon_sym_rescue] = ACTIONS(2579), + [anon_sym_LPAREN2] = ACTIONS(2577), + [anon_sym_LBRACK2] = ACTIONS(2577), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2577), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2577), + [sym__not_in] = ACTIONS(2577), + [sym__quoted_atom_start] = ACTIONS(2577), + }, + [922] = { + [aux_sym__terminator_token1] = ACTIONS(2581), + [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_LPAREN] = ACTIONS(2583), + [aux_sym_identifier_token1] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2583), + [sym_alias] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2583), + [sym_char] = ACTIONS(2583), + [anon_sym_true] = ACTIONS(2583), + [anon_sym_false] = ACTIONS(2583), + [anon_sym_nil] = ACTIONS(2583), + [sym_atom] = ACTIONS(2583), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2583), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_GT] = ACTIONS(2583), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_SLASH] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_COMMA] = ACTIONS(2583), + [sym_keyword] = ACTIONS(2583), + [anon_sym_LT_LT] = ACTIONS(2583), + [anon_sym_PERCENT] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_BANG] = ACTIONS(2583), + [anon_sym_CARET] = ACTIONS(2583), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_LT_DASH] = ACTIONS(2583), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2583), + [anon_sym_when] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2583), + [anon_sym_EQ_GT] = ACTIONS(2583), + [anon_sym_EQ] = ACTIONS(2583), + [anon_sym_PIPE_PIPE] = ACTIONS(2583), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2583), + [anon_sym_or] = ACTIONS(2583), + [anon_sym_AMP_AMP] = ACTIONS(2583), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2583), + [anon_sym_and] = ACTIONS(2583), + [anon_sym_EQ_EQ] = ACTIONS(2583), + [anon_sym_BANG_EQ] = ACTIONS(2583), + [anon_sym_EQ_TILDE] = ACTIONS(2583), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2583), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2583), + [anon_sym_LT_EQ] = ACTIONS(2583), + [anon_sym_GT_EQ] = ACTIONS(2583), + [anon_sym_PIPE_GT] = ACTIONS(2583), + [anon_sym_LT_LT_LT] = ACTIONS(2583), + [anon_sym_GT_GT_GT] = ACTIONS(2583), + [anon_sym_LT_LT_TILDE] = ACTIONS(2583), + [anon_sym_TILDE_GT_GT] = ACTIONS(2583), + [anon_sym_LT_TILDE] = ACTIONS(2583), + [anon_sym_TILDE_GT] = ACTIONS(2583), + [anon_sym_LT_TILDE_GT] = ACTIONS(2583), + [anon_sym_LT_PIPE_GT] = ACTIONS(2583), + [anon_sym_in] = ACTIONS(2583), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2583), + [anon_sym_SLASH_SLASH] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2583), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2583), + [anon_sym_DOT_DOT] = ACTIONS(2583), + [anon_sym_LT_GT] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2583), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_CARET_CARET] = ACTIONS(2583), + [anon_sym_DASH_GT] = ACTIONS(2583), + [anon_sym_DOT] = ACTIONS(2583), + [anon_sym_after] = ACTIONS(2583), + [anon_sym_catch] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_else] = ACTIONS(2583), + [anon_sym_end] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(2583), + [anon_sym_rescue] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2581), + [anon_sym_LBRACK2] = ACTIONS(2581), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2581), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2581), + [sym__not_in] = ACTIONS(2581), + [sym__quoted_atom_start] = ACTIONS(2581), + }, + [923] = { + [aux_sym__terminator_token1] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2571), + [aux_sym_identifier_token1] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2571), + [sym_alias] = ACTIONS(2571), + [sym_integer] = ACTIONS(2571), + [sym_float] = ACTIONS(2571), + [sym_char] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2571), + [anon_sym_false] = ACTIONS(2571), + [anon_sym_nil] = ACTIONS(2571), + [sym_atom] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_COMMA] = ACTIONS(2571), + [sym_keyword] = ACTIONS(2571), + [anon_sym_LT_LT] = ACTIONS(2571), + [anon_sym_PERCENT] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_CARET] = ACTIONS(2571), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_LT_DASH] = ACTIONS(2571), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2571), + [anon_sym_when] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_EQ_GT] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(2571), + [anon_sym_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_or] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2571), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2571), + [anon_sym_and] = ACTIONS(2571), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_EQ_TILDE] = ACTIONS(2571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2571), + [anon_sym_LT_EQ] = ACTIONS(2571), + [anon_sym_GT_EQ] = ACTIONS(2571), + [anon_sym_PIPE_GT] = ACTIONS(2571), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT_GT] = ACTIONS(2571), + [anon_sym_LT_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_PIPE_GT] = ACTIONS(2571), + [anon_sym_in] = ACTIONS(2571), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2571), + [anon_sym_SLASH_SLASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_LT_GT] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_STAR_STAR] = ACTIONS(2571), + [anon_sym_CARET_CARET] = ACTIONS(2571), + [anon_sym_DASH_GT] = ACTIONS(2571), + [anon_sym_DOT] = ACTIONS(2571), + [anon_sym_after] = ACTIONS(2571), + [anon_sym_catch] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_else] = ACTIONS(2571), + [anon_sym_end] = ACTIONS(2571), + [anon_sym_fn] = ACTIONS(2571), + [anon_sym_rescue] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_LBRACK2] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2569), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2569), + [sym__not_in] = ACTIONS(2569), + [sym__quoted_atom_start] = ACTIONS(2569), + }, + [924] = { + [aux_sym__terminator_token1] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_after] = ACTIONS(2551), + [anon_sym_catch] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_else] = ACTIONS(2551), + [anon_sym_end] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_rescue] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [925] = { + [aux_sym__terminator_token1] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_LPAREN] = ACTIONS(2579), + [aux_sym_identifier_token1] = ACTIONS(2579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2579), + [sym_alias] = ACTIONS(2579), + [sym_integer] = ACTIONS(2579), + [sym_float] = ACTIONS(2579), + [sym_char] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2579), + [anon_sym_false] = ACTIONS(2579), + [anon_sym_nil] = ACTIONS(2579), + [sym_atom] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2579), + [anon_sym_GT] = ACTIONS(2579), + [anon_sym_PIPE] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_COMMA] = ACTIONS(2579), + [sym_keyword] = ACTIONS(2579), + [anon_sym_LT_LT] = ACTIONS(2579), + [anon_sym_PERCENT] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_CARET] = ACTIONS(2579), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2579), + [anon_sym_not] = ACTIONS(2579), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_LT_DASH] = ACTIONS(2579), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2579), + [anon_sym_when] = ACTIONS(2579), + [anon_sym_COLON_COLON] = ACTIONS(2579), + [anon_sym_EQ_GT] = ACTIONS(2579), + [anon_sym_EQ] = ACTIONS(2579), + [anon_sym_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_or] = ACTIONS(2579), + [anon_sym_AMP_AMP] = ACTIONS(2579), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2579), + [anon_sym_and] = ACTIONS(2579), + [anon_sym_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ] = ACTIONS(2579), + [anon_sym_EQ_TILDE] = ACTIONS(2579), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2579), + [anon_sym_LT_EQ] = ACTIONS(2579), + [anon_sym_GT_EQ] = ACTIONS(2579), + [anon_sym_PIPE_GT] = ACTIONS(2579), + [anon_sym_LT_LT_LT] = ACTIONS(2579), + [anon_sym_GT_GT_GT] = ACTIONS(2579), + [anon_sym_LT_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_PIPE_GT] = ACTIONS(2579), + [anon_sym_in] = ACTIONS(2579), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2579), + [anon_sym_SLASH_SLASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2579), + [anon_sym_DOT_DOT] = ACTIONS(2579), + [anon_sym_LT_GT] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_STAR_STAR] = ACTIONS(2579), + [anon_sym_CARET_CARET] = ACTIONS(2579), + [anon_sym_DASH_GT] = ACTIONS(2579), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_after] = ACTIONS(2579), + [anon_sym_catch] = ACTIONS(2579), + [anon_sym_do] = ACTIONS(2579), + [anon_sym_else] = ACTIONS(2579), + [anon_sym_end] = ACTIONS(2579), + [anon_sym_fn] = ACTIONS(2579), + [anon_sym_rescue] = ACTIONS(2579), + [anon_sym_LPAREN2] = ACTIONS(2577), + [anon_sym_LBRACK2] = ACTIONS(2577), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2577), + [sym__not_in] = ACTIONS(2577), + [sym__quoted_atom_start] = ACTIONS(2577), + }, + [926] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_RBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [927] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2555), + [anon_sym_RPAREN] = ACTIONS(2555), + [aux_sym_identifier_token1] = ACTIONS(2555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2555), + [sym_alias] = ACTIONS(2555), + [sym_integer] = ACTIONS(2555), + [sym_float] = ACTIONS(2555), + [sym_char] = ACTIONS(2555), + [anon_sym_true] = ACTIONS(2555), + [anon_sym_false] = ACTIONS(2555), + [anon_sym_nil] = ACTIONS(2555), + [sym_atom] = ACTIONS(2555), + [anon_sym_DQUOTE] = ACTIONS(2555), + [anon_sym_SQUOTE] = ACTIONS(2555), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2555), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_RBRACE] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_RBRACK] = ACTIONS(2555), + [anon_sym_LT] = ACTIONS(2555), + [anon_sym_GT] = ACTIONS(2555), + [anon_sym_PIPE] = ACTIONS(2555), + [anon_sym_SLASH] = ACTIONS(2555), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_COMMA] = ACTIONS(2555), + [sym_keyword] = ACTIONS(2555), + [anon_sym_LT_LT] = ACTIONS(2555), + [anon_sym_PERCENT] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_BANG] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_AT] = ACTIONS(2555), + [anon_sym_LT_DASH] = ACTIONS(2555), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2555), + [anon_sym_when] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2555), + [anon_sym_EQ_GT] = ACTIONS(2555), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_PIPE_PIPE] = ACTIONS(2555), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2555), + [anon_sym_or] = ACTIONS(2555), + [anon_sym_AMP_AMP] = ACTIONS(2555), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2555), + [anon_sym_and] = ACTIONS(2555), + [anon_sym_EQ_EQ] = ACTIONS(2555), + [anon_sym_BANG_EQ] = ACTIONS(2555), + [anon_sym_EQ_TILDE] = ACTIONS(2555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2555), + [anon_sym_LT_EQ] = ACTIONS(2555), + [anon_sym_GT_EQ] = ACTIONS(2555), + [anon_sym_PIPE_GT] = ACTIONS(2555), + [anon_sym_LT_LT_LT] = ACTIONS(2555), + [anon_sym_GT_GT_GT] = ACTIONS(2555), + [anon_sym_LT_LT_TILDE] = ACTIONS(2555), + [anon_sym_TILDE_GT_GT] = ACTIONS(2555), + [anon_sym_LT_TILDE] = ACTIONS(2555), + [anon_sym_TILDE_GT] = ACTIONS(2555), + [anon_sym_LT_TILDE_GT] = ACTIONS(2555), + [anon_sym_LT_PIPE_GT] = ACTIONS(2555), + [anon_sym_in] = ACTIONS(2555), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2555), + [anon_sym_SLASH_SLASH] = ACTIONS(2555), + [anon_sym_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2555), + [anon_sym_DOT_DOT] = ACTIONS(2555), + [anon_sym_LT_GT] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_STAR_STAR] = ACTIONS(2555), + [anon_sym_CARET_CARET] = ACTIONS(2555), + [anon_sym_DASH_GT] = ACTIONS(2555), + [anon_sym_DOT] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_fn] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2553), + [anon_sym_LBRACK2] = ACTIONS(2553), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2553), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2553), + [sym__not_in] = ACTIONS(2553), + [sym__quoted_atom_start] = ACTIONS(2553), + }, + [928] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2559), + [anon_sym_RPAREN] = ACTIONS(2559), + [aux_sym_identifier_token1] = ACTIONS(2559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [sym_alias] = ACTIONS(2559), + [sym_integer] = ACTIONS(2559), + [sym_float] = ACTIONS(2559), + [sym_char] = ACTIONS(2559), + [anon_sym_true] = ACTIONS(2559), + [anon_sym_false] = ACTIONS(2559), + [anon_sym_nil] = ACTIONS(2559), + [sym_atom] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(2559), + [anon_sym_SQUOTE] = ACTIONS(2559), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2559), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_RBRACE] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_RBRACK] = ACTIONS(2559), + [anon_sym_LT] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2559), + [anon_sym_PIPE] = ACTIONS(2559), + [anon_sym_SLASH] = ACTIONS(2559), + [anon_sym_TILDE] = ACTIONS(2559), + [anon_sym_COMMA] = ACTIONS(2559), + [sym_keyword] = ACTIONS(2559), + [anon_sym_LT_LT] = ACTIONS(2559), + [anon_sym_PERCENT] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_CARET] = ACTIONS(2559), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AT] = ACTIONS(2559), + [anon_sym_LT_DASH] = ACTIONS(2559), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2559), + [anon_sym_when] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2559), + [anon_sym_EQ_GT] = ACTIONS(2559), + [anon_sym_EQ] = ACTIONS(2559), + [anon_sym_PIPE_PIPE] = ACTIONS(2559), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2559), + [anon_sym_or] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2559), + [anon_sym_and] = ACTIONS(2559), + [anon_sym_EQ_EQ] = ACTIONS(2559), + [anon_sym_BANG_EQ] = ACTIONS(2559), + [anon_sym_EQ_TILDE] = ACTIONS(2559), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2559), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2559), + [anon_sym_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_EQ] = ACTIONS(2559), + [anon_sym_PIPE_GT] = ACTIONS(2559), + [anon_sym_LT_LT_LT] = ACTIONS(2559), + [anon_sym_GT_GT_GT] = ACTIONS(2559), + [anon_sym_LT_LT_TILDE] = ACTIONS(2559), + [anon_sym_TILDE_GT_GT] = ACTIONS(2559), + [anon_sym_LT_TILDE] = ACTIONS(2559), + [anon_sym_TILDE_GT] = ACTIONS(2559), + [anon_sym_LT_TILDE_GT] = ACTIONS(2559), + [anon_sym_LT_PIPE_GT] = ACTIONS(2559), + [anon_sym_in] = ACTIONS(2559), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2559), + [anon_sym_SLASH_SLASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2559), + [anon_sym_DOT_DOT] = ACTIONS(2559), + [anon_sym_LT_GT] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_STAR_STAR] = ACTIONS(2559), + [anon_sym_CARET_CARET] = ACTIONS(2559), + [anon_sym_DASH_GT] = ACTIONS(2559), + [anon_sym_DOT] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_fn] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_LBRACK2] = ACTIONS(2557), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2557), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2557), + [sym__not_in] = ACTIONS(2557), + [sym__quoted_atom_start] = ACTIONS(2557), + }, + [929] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_RPAREN] = ACTIONS(2567), + [aux_sym_identifier_token1] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2567), + [sym_alias] = ACTIONS(2567), + [sym_integer] = ACTIONS(2567), + [sym_float] = ACTIONS(2567), + [sym_char] = ACTIONS(2567), + [anon_sym_true] = ACTIONS(2567), + [anon_sym_false] = ACTIONS(2567), + [anon_sym_nil] = ACTIONS(2567), + [sym_atom] = ACTIONS(2567), + [anon_sym_DQUOTE] = ACTIONS(2567), + [anon_sym_SQUOTE] = ACTIONS(2567), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2567), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2567), + [anon_sym_RBRACE] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_RBRACK] = ACTIONS(2567), + [anon_sym_LT] = ACTIONS(2567), + [anon_sym_GT] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_SLASH] = ACTIONS(2567), + [anon_sym_TILDE] = ACTIONS(2567), + [anon_sym_COMMA] = ACTIONS(2567), + [sym_keyword] = ACTIONS(2567), + [anon_sym_LT_LT] = ACTIONS(2567), + [anon_sym_PERCENT] = ACTIONS(2567), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(2567), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2567), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2567), + [anon_sym_AT] = ACTIONS(2567), + [anon_sym_LT_DASH] = ACTIONS(2567), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2567), + [anon_sym_when] = ACTIONS(2567), + [anon_sym_COLON_COLON] = ACTIONS(2567), + [anon_sym_EQ_GT] = ACTIONS(2567), + [anon_sym_EQ] = ACTIONS(2567), + [anon_sym_PIPE_PIPE] = ACTIONS(2567), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2567), + [anon_sym_or] = ACTIONS(2567), + [anon_sym_AMP_AMP] = ACTIONS(2567), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2567), + [anon_sym_and] = ACTIONS(2567), + [anon_sym_EQ_EQ] = ACTIONS(2567), + [anon_sym_BANG_EQ] = ACTIONS(2567), + [anon_sym_EQ_TILDE] = ACTIONS(2567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2567), + [anon_sym_LT_EQ] = ACTIONS(2567), + [anon_sym_GT_EQ] = ACTIONS(2567), + [anon_sym_PIPE_GT] = ACTIONS(2567), + [anon_sym_LT_LT_LT] = ACTIONS(2567), + [anon_sym_GT_GT_GT] = ACTIONS(2567), + [anon_sym_LT_LT_TILDE] = ACTIONS(2567), + [anon_sym_TILDE_GT_GT] = ACTIONS(2567), + [anon_sym_LT_TILDE] = ACTIONS(2567), + [anon_sym_TILDE_GT] = ACTIONS(2567), + [anon_sym_LT_TILDE_GT] = ACTIONS(2567), + [anon_sym_LT_PIPE_GT] = ACTIONS(2567), + [anon_sym_in] = ACTIONS(2567), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2567), + [anon_sym_SLASH_SLASH] = ACTIONS(2567), + [anon_sym_PLUS_PLUS] = ACTIONS(2567), + [anon_sym_DASH_DASH] = ACTIONS(2567), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2567), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2567), + [anon_sym_DOT_DOT] = ACTIONS(2567), + [anon_sym_LT_GT] = ACTIONS(2567), + [anon_sym_STAR] = ACTIONS(2567), + [anon_sym_STAR_STAR] = ACTIONS(2567), + [anon_sym_CARET_CARET] = ACTIONS(2567), + [anon_sym_DASH_GT] = ACTIONS(2567), + [anon_sym_DOT] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2567), + [anon_sym_fn] = ACTIONS(2567), + [anon_sym_LPAREN2] = ACTIONS(2565), + [anon_sym_LBRACK2] = ACTIONS(2565), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2565), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2565), + [sym__not_in] = ACTIONS(2565), + [sym__quoted_atom_start] = ACTIONS(2565), + }, + [930] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2547), + [anon_sym_RPAREN] = ACTIONS(2547), + [aux_sym_identifier_token1] = ACTIONS(2547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2547), + [sym_alias] = ACTIONS(2547), + [sym_integer] = ACTIONS(2547), + [sym_float] = ACTIONS(2547), + [sym_char] = ACTIONS(2547), + [anon_sym_true] = ACTIONS(2547), + [anon_sym_false] = ACTIONS(2547), + [anon_sym_nil] = ACTIONS(2547), + [sym_atom] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_RBRACE] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2547), + [anon_sym_RBRACK] = ACTIONS(2547), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_SLASH] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2547), + [anon_sym_COMMA] = ACTIONS(2547), + [sym_keyword] = ACTIONS(2547), + [anon_sym_LT_LT] = ACTIONS(2547), + [anon_sym_PERCENT] = ACTIONS(2547), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_CARET] = ACTIONS(2547), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2547), + [anon_sym_not] = ACTIONS(2547), + [anon_sym_AT] = ACTIONS(2547), + [anon_sym_LT_DASH] = ACTIONS(2547), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2547), + [anon_sym_when] = ACTIONS(2547), + [anon_sym_COLON_COLON] = ACTIONS(2547), + [anon_sym_EQ_GT] = ACTIONS(2547), + [anon_sym_EQ] = ACTIONS(2547), + [anon_sym_PIPE_PIPE] = ACTIONS(2547), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2547), + [anon_sym_or] = ACTIONS(2547), + [anon_sym_AMP_AMP] = ACTIONS(2547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2547), + [anon_sym_and] = ACTIONS(2547), + [anon_sym_EQ_EQ] = ACTIONS(2547), + [anon_sym_BANG_EQ] = ACTIONS(2547), + [anon_sym_EQ_TILDE] = ACTIONS(2547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2547), + [anon_sym_LT_EQ] = ACTIONS(2547), + [anon_sym_GT_EQ] = ACTIONS(2547), + [anon_sym_PIPE_GT] = ACTIONS(2547), + [anon_sym_LT_LT_LT] = ACTIONS(2547), + [anon_sym_GT_GT_GT] = ACTIONS(2547), + [anon_sym_LT_LT_TILDE] = ACTIONS(2547), + [anon_sym_TILDE_GT_GT] = ACTIONS(2547), + [anon_sym_LT_TILDE] = ACTIONS(2547), + [anon_sym_TILDE_GT] = ACTIONS(2547), + [anon_sym_LT_TILDE_GT] = ACTIONS(2547), + [anon_sym_LT_PIPE_GT] = ACTIONS(2547), + [anon_sym_in] = ACTIONS(2547), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2547), + [anon_sym_SLASH_SLASH] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH] = ACTIONS(2547), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2547), + [anon_sym_DOT_DOT] = ACTIONS(2547), + [anon_sym_LT_GT] = ACTIONS(2547), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_STAR_STAR] = ACTIONS(2547), + [anon_sym_CARET_CARET] = ACTIONS(2547), + [anon_sym_DASH_GT] = ACTIONS(2547), + [anon_sym_DOT] = ACTIONS(2547), + [anon_sym_do] = ACTIONS(2547), + [anon_sym_fn] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(2545), + [anon_sym_LBRACK2] = ACTIONS(2545), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2545), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2545), + [sym__not_in] = ACTIONS(2545), + [sym__quoted_atom_start] = ACTIONS(2545), + }, + [931] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2563), + [anon_sym_RPAREN] = ACTIONS(2563), + [aux_sym_identifier_token1] = ACTIONS(2563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2563), + [sym_alias] = ACTIONS(2563), + [sym_integer] = ACTIONS(2563), + [sym_float] = ACTIONS(2563), + [sym_char] = ACTIONS(2563), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_nil] = ACTIONS(2563), + [sym_atom] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2563), + [anon_sym_SQUOTE] = ACTIONS(2563), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2563), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_RBRACE] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_RBRACK] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_GT] = ACTIONS(2563), + [anon_sym_PIPE] = ACTIONS(2563), + [anon_sym_SLASH] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_COMMA] = ACTIONS(2563), + [sym_keyword] = ACTIONS(2563), + [anon_sym_LT_LT] = ACTIONS(2563), + [anon_sym_PERCENT] = ACTIONS(2563), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_CARET] = ACTIONS(2563), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2563), + [anon_sym_LT_DASH] = ACTIONS(2563), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2563), + [anon_sym_when] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2563), + [anon_sym_EQ_GT] = ACTIONS(2563), + [anon_sym_EQ] = ACTIONS(2563), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_or] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2563), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2563), + [anon_sym_and] = ACTIONS(2563), + [anon_sym_EQ_EQ] = ACTIONS(2563), + [anon_sym_BANG_EQ] = ACTIONS(2563), + [anon_sym_EQ_TILDE] = ACTIONS(2563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2563), + [anon_sym_LT_EQ] = ACTIONS(2563), + [anon_sym_GT_EQ] = ACTIONS(2563), + [anon_sym_PIPE_GT] = ACTIONS(2563), + [anon_sym_LT_LT_LT] = ACTIONS(2563), + [anon_sym_GT_GT_GT] = ACTIONS(2563), + [anon_sym_LT_LT_TILDE] = ACTIONS(2563), + [anon_sym_TILDE_GT_GT] = ACTIONS(2563), + [anon_sym_LT_TILDE] = ACTIONS(2563), + [anon_sym_TILDE_GT] = ACTIONS(2563), + [anon_sym_LT_TILDE_GT] = ACTIONS(2563), + [anon_sym_LT_PIPE_GT] = ACTIONS(2563), + [anon_sym_in] = ACTIONS(2563), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2563), + [anon_sym_SLASH_SLASH] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2563), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2563), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [anon_sym_LT_GT] = ACTIONS(2563), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_STAR_STAR] = ACTIONS(2563), + [anon_sym_CARET_CARET] = ACTIONS(2563), + [anon_sym_DASH_GT] = ACTIONS(2563), + [anon_sym_DOT] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_fn] = ACTIONS(2563), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2561), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2561), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2561), + [sym__not_in] = ACTIONS(2561), + [sym__quoted_atom_start] = ACTIONS(2561), + }, + [932] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_RPAREN] = ACTIONS(2583), + [aux_sym_identifier_token1] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2583), + [sym_alias] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2583), + [sym_char] = ACTIONS(2583), + [anon_sym_true] = ACTIONS(2583), + [anon_sym_false] = ACTIONS(2583), + [anon_sym_nil] = ACTIONS(2583), + [sym_atom] = ACTIONS(2583), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2583), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_RBRACE] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_RBRACK] = ACTIONS(2583), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_GT] = ACTIONS(2583), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_SLASH] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_COMMA] = ACTIONS(2583), + [sym_keyword] = ACTIONS(2583), + [anon_sym_LT_LT] = ACTIONS(2583), + [anon_sym_PERCENT] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_BANG] = ACTIONS(2583), + [anon_sym_CARET] = ACTIONS(2583), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_LT_DASH] = ACTIONS(2583), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2583), + [anon_sym_when] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2583), + [anon_sym_EQ_GT] = ACTIONS(2583), + [anon_sym_EQ] = ACTIONS(2583), + [anon_sym_PIPE_PIPE] = ACTIONS(2583), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2583), + [anon_sym_or] = ACTIONS(2583), + [anon_sym_AMP_AMP] = ACTIONS(2583), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2583), + [anon_sym_and] = ACTIONS(2583), + [anon_sym_EQ_EQ] = ACTIONS(2583), + [anon_sym_BANG_EQ] = ACTIONS(2583), + [anon_sym_EQ_TILDE] = ACTIONS(2583), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2583), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2583), + [anon_sym_LT_EQ] = ACTIONS(2583), + [anon_sym_GT_EQ] = ACTIONS(2583), + [anon_sym_PIPE_GT] = ACTIONS(2583), + [anon_sym_LT_LT_LT] = ACTIONS(2583), + [anon_sym_GT_GT_GT] = ACTIONS(2583), + [anon_sym_LT_LT_TILDE] = ACTIONS(2583), + [anon_sym_TILDE_GT_GT] = ACTIONS(2583), + [anon_sym_LT_TILDE] = ACTIONS(2583), + [anon_sym_TILDE_GT] = ACTIONS(2583), + [anon_sym_LT_TILDE_GT] = ACTIONS(2583), + [anon_sym_LT_PIPE_GT] = ACTIONS(2583), + [anon_sym_in] = ACTIONS(2583), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2583), + [anon_sym_SLASH_SLASH] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2583), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2583), + [anon_sym_DOT_DOT] = ACTIONS(2583), + [anon_sym_LT_GT] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2583), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_CARET_CARET] = ACTIONS(2583), + [anon_sym_DASH_GT] = ACTIONS(2583), + [anon_sym_DOT] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2581), + [anon_sym_LBRACK2] = ACTIONS(2581), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2581), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2581), + [sym__not_in] = ACTIONS(2581), + [sym__quoted_atom_start] = ACTIONS(2581), + }, + [933] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_RPAREN] = ACTIONS(2571), + [aux_sym_identifier_token1] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2571), + [sym_alias] = ACTIONS(2571), + [sym_integer] = ACTIONS(2571), + [sym_float] = ACTIONS(2571), + [sym_char] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2571), + [anon_sym_false] = ACTIONS(2571), + [anon_sym_nil] = ACTIONS(2571), + [sym_atom] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_RBRACE] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_RBRACK] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_COMMA] = ACTIONS(2571), + [sym_keyword] = ACTIONS(2571), + [anon_sym_LT_LT] = ACTIONS(2571), + [anon_sym_PERCENT] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_CARET] = ACTIONS(2571), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_LT_DASH] = ACTIONS(2571), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2571), + [anon_sym_when] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_EQ_GT] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(2571), + [anon_sym_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_or] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2571), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2571), + [anon_sym_and] = ACTIONS(2571), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_EQ_TILDE] = ACTIONS(2571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2571), + [anon_sym_LT_EQ] = ACTIONS(2571), + [anon_sym_GT_EQ] = ACTIONS(2571), + [anon_sym_PIPE_GT] = ACTIONS(2571), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT_GT] = ACTIONS(2571), + [anon_sym_LT_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_PIPE_GT] = ACTIONS(2571), + [anon_sym_in] = ACTIONS(2571), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2571), + [anon_sym_SLASH_SLASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_LT_GT] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_STAR_STAR] = ACTIONS(2571), + [anon_sym_CARET_CARET] = ACTIONS(2571), + [anon_sym_DASH_GT] = ACTIONS(2571), + [anon_sym_DOT] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_fn] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_LBRACK2] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2569), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2569), + [sym__not_in] = ACTIONS(2569), + [sym__quoted_atom_start] = ACTIONS(2569), + }, + [934] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_RPAREN] = ACTIONS(2579), + [aux_sym_identifier_token1] = ACTIONS(2579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2579), + [sym_alias] = ACTIONS(2579), + [sym_integer] = ACTIONS(2579), + [sym_float] = ACTIONS(2579), + [sym_char] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2579), + [anon_sym_false] = ACTIONS(2579), + [anon_sym_nil] = ACTIONS(2579), + [sym_atom] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_RBRACE] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_RBRACK] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2579), + [anon_sym_GT] = ACTIONS(2579), + [anon_sym_PIPE] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_COMMA] = ACTIONS(2579), + [sym_keyword] = ACTIONS(2579), + [anon_sym_LT_LT] = ACTIONS(2579), + [anon_sym_PERCENT] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_CARET] = ACTIONS(2579), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2579), + [anon_sym_not] = ACTIONS(2579), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_LT_DASH] = ACTIONS(2579), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2579), + [anon_sym_when] = ACTIONS(2579), + [anon_sym_COLON_COLON] = ACTIONS(2579), + [anon_sym_EQ_GT] = ACTIONS(2579), + [anon_sym_EQ] = ACTIONS(2579), + [anon_sym_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_or] = ACTIONS(2579), + [anon_sym_AMP_AMP] = ACTIONS(2579), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2579), + [anon_sym_and] = ACTIONS(2579), + [anon_sym_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ] = ACTIONS(2579), + [anon_sym_EQ_TILDE] = ACTIONS(2579), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2579), + [anon_sym_LT_EQ] = ACTIONS(2579), + [anon_sym_GT_EQ] = ACTIONS(2579), + [anon_sym_PIPE_GT] = ACTIONS(2579), + [anon_sym_LT_LT_LT] = ACTIONS(2579), + [anon_sym_GT_GT_GT] = ACTIONS(2579), + [anon_sym_LT_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_PIPE_GT] = ACTIONS(2579), + [anon_sym_in] = ACTIONS(2579), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2579), + [anon_sym_SLASH_SLASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2579), + [anon_sym_DOT_DOT] = ACTIONS(2579), + [anon_sym_LT_GT] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_STAR_STAR] = ACTIONS(2579), + [anon_sym_CARET_CARET] = ACTIONS(2579), + [anon_sym_DASH_GT] = ACTIONS(2579), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_do] = ACTIONS(2579), + [anon_sym_fn] = ACTIONS(2579), + [anon_sym_LPAREN2] = ACTIONS(2577), + [anon_sym_LBRACK2] = ACTIONS(2577), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2577), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2577), + [sym__not_in] = ACTIONS(2577), + [sym__quoted_atom_start] = ACTIONS(2577), + }, + [935] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_RBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [936] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_RPAREN] = ACTIONS(2571), + [aux_sym_identifier_token1] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2571), + [sym_alias] = ACTIONS(2571), + [sym_integer] = ACTIONS(2571), + [sym_float] = ACTIONS(2571), + [sym_char] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2571), + [anon_sym_false] = ACTIONS(2571), + [anon_sym_nil] = ACTIONS(2571), + [sym_atom] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_RBRACE] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_RBRACK] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_COMMA] = ACTIONS(2571), + [sym_keyword] = ACTIONS(2571), + [anon_sym_LT_LT] = ACTIONS(2571), + [anon_sym_PERCENT] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_CARET] = ACTIONS(2571), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_LT_DASH] = ACTIONS(2571), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2571), + [anon_sym_when] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_EQ_GT] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(2571), + [anon_sym_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_or] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2571), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2571), + [anon_sym_and] = ACTIONS(2571), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_EQ_TILDE] = ACTIONS(2571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2571), + [anon_sym_LT_EQ] = ACTIONS(2571), + [anon_sym_GT_EQ] = ACTIONS(2571), + [anon_sym_PIPE_GT] = ACTIONS(2571), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT_GT] = ACTIONS(2571), + [anon_sym_LT_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_PIPE_GT] = ACTIONS(2571), + [anon_sym_in] = ACTIONS(2571), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2571), + [anon_sym_SLASH_SLASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_LT_GT] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_STAR_STAR] = ACTIONS(2571), + [anon_sym_CARET_CARET] = ACTIONS(2571), + [anon_sym_DASH_GT] = ACTIONS(2571), + [anon_sym_DOT] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_fn] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_LBRACK2] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2569), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2569), + [sym__not_in] = ACTIONS(2569), + [sym__quoted_atom_start] = ACTIONS(2569), + }, + [937] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_RBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [938] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_RPAREN] = ACTIONS(2575), + [aux_sym_identifier_token1] = ACTIONS(2575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2575), + [sym_alias] = ACTIONS(2575), + [sym_integer] = ACTIONS(2575), + [sym_float] = ACTIONS(2575), + [sym_char] = ACTIONS(2575), + [anon_sym_true] = ACTIONS(2575), + [anon_sym_false] = ACTIONS(2575), + [anon_sym_nil] = ACTIONS(2575), + [sym_atom] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2575), + [anon_sym_SQUOTE] = ACTIONS(2575), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2575), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_RBRACE] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_RBRACK] = ACTIONS(2575), + [anon_sym_LT] = ACTIONS(2575), + [anon_sym_GT] = ACTIONS(2575), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_SLASH] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_COMMA] = ACTIONS(2575), + [sym_keyword] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2575), + [anon_sym_PERCENT] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2575), + [anon_sym_DASH] = ACTIONS(2575), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_CARET] = ACTIONS(2575), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2575), + [anon_sym_not] = ACTIONS(2575), + [anon_sym_AT] = ACTIONS(2575), + [anon_sym_LT_DASH] = ACTIONS(2575), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2575), + [anon_sym_when] = ACTIONS(2575), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_EQ_GT] = ACTIONS(2575), + [anon_sym_EQ] = ACTIONS(2575), + [anon_sym_PIPE_PIPE] = ACTIONS(2575), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2575), + [anon_sym_or] = ACTIONS(2575), + [anon_sym_AMP_AMP] = ACTIONS(2575), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2575), + [anon_sym_and] = ACTIONS(2575), + [anon_sym_EQ_EQ] = ACTIONS(2575), + [anon_sym_BANG_EQ] = ACTIONS(2575), + [anon_sym_EQ_TILDE] = ACTIONS(2575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2575), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_PIPE_GT] = ACTIONS(2575), + [anon_sym_LT_LT_LT] = ACTIONS(2575), + [anon_sym_GT_GT_GT] = ACTIONS(2575), + [anon_sym_LT_LT_TILDE] = ACTIONS(2575), + [anon_sym_TILDE_GT_GT] = ACTIONS(2575), + [anon_sym_LT_TILDE] = ACTIONS(2575), + [anon_sym_TILDE_GT] = ACTIONS(2575), + [anon_sym_LT_TILDE_GT] = ACTIONS(2575), + [anon_sym_LT_PIPE_GT] = ACTIONS(2575), + [anon_sym_in] = ACTIONS(2575), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2575), + [anon_sym_SLASH_SLASH] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2575), + [anon_sym_DOT_DOT] = ACTIONS(2575), + [anon_sym_LT_GT] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_STAR_STAR] = ACTIONS(2575), + [anon_sym_CARET_CARET] = ACTIONS(2575), + [anon_sym_DASH_GT] = ACTIONS(2575), + [anon_sym_DOT] = ACTIONS(2575), + [anon_sym_do] = ACTIONS(2575), + [anon_sym_fn] = ACTIONS(2575), + [anon_sym_LPAREN2] = ACTIONS(2573), + [anon_sym_LBRACK2] = ACTIONS(2573), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2573), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2573), + [sym__not_in] = ACTIONS(2573), + [sym__quoted_atom_start] = ACTIONS(2573), + }, + [939] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_RPAREN] = ACTIONS(2571), + [aux_sym_identifier_token1] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2571), + [sym_alias] = ACTIONS(2571), + [sym_integer] = ACTIONS(2571), + [sym_float] = ACTIONS(2571), + [sym_char] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2571), + [anon_sym_false] = ACTIONS(2571), + [anon_sym_nil] = ACTIONS(2571), + [sym_atom] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_RBRACE] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_RBRACK] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_COMMA] = ACTIONS(2571), + [sym_keyword] = ACTIONS(2571), + [anon_sym_LT_LT] = ACTIONS(2571), + [anon_sym_PERCENT] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_CARET] = ACTIONS(2571), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_LT_DASH] = ACTIONS(2571), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2571), + [anon_sym_when] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_EQ_GT] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(2571), + [anon_sym_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_or] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2571), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2571), + [anon_sym_and] = ACTIONS(2571), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_EQ_TILDE] = ACTIONS(2571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2571), + [anon_sym_LT_EQ] = ACTIONS(2571), + [anon_sym_GT_EQ] = ACTIONS(2571), + [anon_sym_PIPE_GT] = ACTIONS(2571), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT_GT] = ACTIONS(2571), + [anon_sym_LT_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_PIPE_GT] = ACTIONS(2571), + [anon_sym_in] = ACTIONS(2571), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2571), + [anon_sym_SLASH_SLASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_LT_GT] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_STAR_STAR] = ACTIONS(2571), + [anon_sym_CARET_CARET] = ACTIONS(2571), + [anon_sym_DASH_GT] = ACTIONS(2571), + [anon_sym_DOT] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_fn] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_LBRACK2] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2569), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2569), + [sym__not_in] = ACTIONS(2569), + [sym__quoted_atom_start] = ACTIONS(2569), + }, + [940] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_RBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_RBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [941] = { + [aux_sym__terminator_token1] = ACTIONS(2581), + [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_LPAREN] = ACTIONS(2583), + [anon_sym_RPAREN] = ACTIONS(2583), + [aux_sym_identifier_token1] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2583), + [sym_alias] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2583), + [sym_char] = ACTIONS(2583), + [anon_sym_true] = ACTIONS(2583), + [anon_sym_false] = ACTIONS(2583), + [anon_sym_nil] = ACTIONS(2583), + [sym_atom] = ACTIONS(2583), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2583), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_GT] = ACTIONS(2583), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_SLASH] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_COMMA] = ACTIONS(2583), + [sym_keyword] = ACTIONS(2583), + [anon_sym_LT_LT] = ACTIONS(2583), + [anon_sym_PERCENT] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_BANG] = ACTIONS(2583), + [anon_sym_CARET] = ACTIONS(2583), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_LT_DASH] = ACTIONS(2583), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2583), + [anon_sym_when] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2583), + [anon_sym_EQ_GT] = ACTIONS(2583), + [anon_sym_EQ] = ACTIONS(2583), + [anon_sym_PIPE_PIPE] = ACTIONS(2583), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2583), + [anon_sym_or] = ACTIONS(2583), + [anon_sym_AMP_AMP] = ACTIONS(2583), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2583), + [anon_sym_and] = ACTIONS(2583), + [anon_sym_EQ_EQ] = ACTIONS(2583), + [anon_sym_BANG_EQ] = ACTIONS(2583), + [anon_sym_EQ_TILDE] = ACTIONS(2583), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2583), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2583), + [anon_sym_LT_EQ] = ACTIONS(2583), + [anon_sym_GT_EQ] = ACTIONS(2583), + [anon_sym_PIPE_GT] = ACTIONS(2583), + [anon_sym_LT_LT_LT] = ACTIONS(2583), + [anon_sym_GT_GT_GT] = ACTIONS(2583), + [anon_sym_LT_LT_TILDE] = ACTIONS(2583), + [anon_sym_TILDE_GT_GT] = ACTIONS(2583), + [anon_sym_LT_TILDE] = ACTIONS(2583), + [anon_sym_TILDE_GT] = ACTIONS(2583), + [anon_sym_LT_TILDE_GT] = ACTIONS(2583), + [anon_sym_LT_PIPE_GT] = ACTIONS(2583), + [anon_sym_in] = ACTIONS(2583), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2583), + [anon_sym_SLASH_SLASH] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2583), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2583), + [anon_sym_DOT_DOT] = ACTIONS(2583), + [anon_sym_LT_GT] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2583), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_CARET_CARET] = ACTIONS(2583), + [anon_sym_DASH_GT] = ACTIONS(2583), + [anon_sym_DOT] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2581), + [anon_sym_LBRACK2] = ACTIONS(2581), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2581), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2581), + [sym__not_in] = ACTIONS(2581), + [sym__quoted_atom_start] = ACTIONS(2581), + }, + [942] = { + [aux_sym__terminator_token1] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_LPAREN] = ACTIONS(2575), + [aux_sym_identifier_token1] = ACTIONS(2575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2575), + [sym_alias] = ACTIONS(2575), + [sym_integer] = ACTIONS(2575), + [sym_float] = ACTIONS(2575), + [sym_char] = ACTIONS(2575), + [anon_sym_true] = ACTIONS(2575), + [anon_sym_false] = ACTIONS(2575), + [anon_sym_nil] = ACTIONS(2575), + [sym_atom] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2575), + [anon_sym_SQUOTE] = ACTIONS(2575), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2575), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_LT] = ACTIONS(2575), + [anon_sym_GT] = ACTIONS(2575), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_SLASH] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_COMMA] = ACTIONS(2575), + [sym_keyword] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2575), + [anon_sym_PERCENT] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2575), + [anon_sym_DASH] = ACTIONS(2575), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_CARET] = ACTIONS(2575), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2575), + [anon_sym_not] = ACTIONS(2575), + [anon_sym_AT] = ACTIONS(2575), + [anon_sym_LT_DASH] = ACTIONS(2575), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2575), + [anon_sym_when] = ACTIONS(2575), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_EQ_GT] = ACTIONS(2575), + [anon_sym_EQ] = ACTIONS(2575), + [anon_sym_PIPE_PIPE] = ACTIONS(2575), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2575), + [anon_sym_or] = ACTIONS(2575), + [anon_sym_AMP_AMP] = ACTIONS(2575), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2575), + [anon_sym_and] = ACTIONS(2575), + [anon_sym_EQ_EQ] = ACTIONS(2575), + [anon_sym_BANG_EQ] = ACTIONS(2575), + [anon_sym_EQ_TILDE] = ACTIONS(2575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2575), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_PIPE_GT] = ACTIONS(2575), + [anon_sym_LT_LT_LT] = ACTIONS(2575), + [anon_sym_GT_GT_GT] = ACTIONS(2575), + [anon_sym_LT_LT_TILDE] = ACTIONS(2575), + [anon_sym_TILDE_GT_GT] = ACTIONS(2575), + [anon_sym_LT_TILDE] = ACTIONS(2575), + [anon_sym_TILDE_GT] = ACTIONS(2575), + [anon_sym_LT_TILDE_GT] = ACTIONS(2575), + [anon_sym_LT_PIPE_GT] = ACTIONS(2575), + [anon_sym_in] = ACTIONS(2575), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2575), + [anon_sym_SLASH_SLASH] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2575), + [anon_sym_DOT_DOT] = ACTIONS(2575), + [anon_sym_LT_GT] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_STAR_STAR] = ACTIONS(2575), + [anon_sym_CARET_CARET] = ACTIONS(2575), + [anon_sym_DASH_GT] = ACTIONS(2575), + [anon_sym_DOT] = ACTIONS(2575), + [anon_sym_do] = ACTIONS(2575), + [anon_sym_end] = ACTIONS(2575), + [anon_sym_fn] = ACTIONS(2575), + [anon_sym_LPAREN2] = ACTIONS(2573), + [anon_sym_LBRACK2] = ACTIONS(2573), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2573), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2573), + [sym__not_in] = ACTIONS(2573), + [sym__quoted_atom_start] = ACTIONS(2573), + }, + [943] = { + [ts_builtin_sym_end] = ACTIONS(2577), + [aux_sym__terminator_token1] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_LPAREN] = ACTIONS(2579), + [aux_sym_identifier_token1] = ACTIONS(2579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2579), + [sym_alias] = ACTIONS(2579), + [sym_integer] = ACTIONS(2579), + [sym_float] = ACTIONS(2579), + [sym_char] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2579), + [anon_sym_false] = ACTIONS(2579), + [anon_sym_nil] = ACTIONS(2579), + [sym_atom] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2579), + [anon_sym_GT] = ACTIONS(2579), + [anon_sym_PIPE] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_COMMA] = ACTIONS(2579), + [sym_keyword] = ACTIONS(2579), + [anon_sym_LT_LT] = ACTIONS(2579), + [anon_sym_PERCENT] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_CARET] = ACTIONS(2579), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2579), + [anon_sym_not] = ACTIONS(2579), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_LT_DASH] = ACTIONS(2579), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2579), + [anon_sym_when] = ACTIONS(2579), + [anon_sym_COLON_COLON] = ACTIONS(2579), + [anon_sym_EQ_GT] = ACTIONS(2579), + [anon_sym_EQ] = ACTIONS(2579), + [anon_sym_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_or] = ACTIONS(2579), + [anon_sym_AMP_AMP] = ACTIONS(2579), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2579), + [anon_sym_and] = ACTIONS(2579), + [anon_sym_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ] = ACTIONS(2579), + [anon_sym_EQ_TILDE] = ACTIONS(2579), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2579), + [anon_sym_LT_EQ] = ACTIONS(2579), + [anon_sym_GT_EQ] = ACTIONS(2579), + [anon_sym_PIPE_GT] = ACTIONS(2579), + [anon_sym_LT_LT_LT] = ACTIONS(2579), + [anon_sym_GT_GT_GT] = ACTIONS(2579), + [anon_sym_LT_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_PIPE_GT] = ACTIONS(2579), + [anon_sym_in] = ACTIONS(2579), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2579), + [anon_sym_SLASH_SLASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2579), + [anon_sym_DOT_DOT] = ACTIONS(2579), + [anon_sym_LT_GT] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_STAR_STAR] = ACTIONS(2579), + [anon_sym_CARET_CARET] = ACTIONS(2579), + [anon_sym_DASH_GT] = ACTIONS(2579), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_do] = ACTIONS(2579), + [anon_sym_fn] = ACTIONS(2579), + [anon_sym_LPAREN2] = ACTIONS(2577), + [anon_sym_LBRACK2] = ACTIONS(2577), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2577), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2577), + [sym__not_in] = ACTIONS(2577), + [sym__quoted_atom_start] = ACTIONS(2577), + }, + [944] = { + [aux_sym__terminator_token1] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_RPAREN] = ACTIONS(2579), + [aux_sym_identifier_token1] = ACTIONS(2579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2579), + [sym_alias] = ACTIONS(2579), + [sym_integer] = ACTIONS(2579), + [sym_float] = ACTIONS(2579), + [sym_char] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2579), + [anon_sym_false] = ACTIONS(2579), + [anon_sym_nil] = ACTIONS(2579), + [sym_atom] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2579), + [anon_sym_GT] = ACTIONS(2579), + [anon_sym_PIPE] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_COMMA] = ACTIONS(2579), + [sym_keyword] = ACTIONS(2579), + [anon_sym_LT_LT] = ACTIONS(2579), + [anon_sym_PERCENT] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_CARET] = ACTIONS(2579), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2579), + [anon_sym_not] = ACTIONS(2579), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_LT_DASH] = ACTIONS(2579), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2579), + [anon_sym_when] = ACTIONS(2579), + [anon_sym_COLON_COLON] = ACTIONS(2579), + [anon_sym_EQ_GT] = ACTIONS(2579), + [anon_sym_EQ] = ACTIONS(2579), + [anon_sym_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_or] = ACTIONS(2579), + [anon_sym_AMP_AMP] = ACTIONS(2579), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2579), + [anon_sym_and] = ACTIONS(2579), + [anon_sym_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ] = ACTIONS(2579), + [anon_sym_EQ_TILDE] = ACTIONS(2579), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2579), + [anon_sym_LT_EQ] = ACTIONS(2579), + [anon_sym_GT_EQ] = ACTIONS(2579), + [anon_sym_PIPE_GT] = ACTIONS(2579), + [anon_sym_LT_LT_LT] = ACTIONS(2579), + [anon_sym_GT_GT_GT] = ACTIONS(2579), + [anon_sym_LT_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_PIPE_GT] = ACTIONS(2579), + [anon_sym_in] = ACTIONS(2579), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2579), + [anon_sym_SLASH_SLASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2579), + [anon_sym_DOT_DOT] = ACTIONS(2579), + [anon_sym_LT_GT] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_STAR_STAR] = ACTIONS(2579), + [anon_sym_CARET_CARET] = ACTIONS(2579), + [anon_sym_DASH_GT] = ACTIONS(2579), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_do] = ACTIONS(2579), + [anon_sym_fn] = ACTIONS(2579), + [anon_sym_LPAREN2] = ACTIONS(2577), + [anon_sym_LBRACK2] = ACTIONS(2577), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2577), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2577), + [sym__not_in] = ACTIONS(2577), + [sym__quoted_atom_start] = ACTIONS(2577), + }, + [945] = { + [aux_sym__terminator_token1] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_end] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [946] = { + [ts_builtin_sym_end] = ACTIONS(2549), + [aux_sym__terminator_token1] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [947] = { + [ts_builtin_sym_end] = ACTIONS(2545), + [aux_sym__terminator_token1] = ACTIONS(2545), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2547), + [aux_sym_identifier_token1] = ACTIONS(2547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2547), + [sym_alias] = ACTIONS(2547), + [sym_integer] = ACTIONS(2547), + [sym_float] = ACTIONS(2547), + [sym_char] = ACTIONS(2547), + [anon_sym_true] = ACTIONS(2547), + [anon_sym_false] = ACTIONS(2547), + [anon_sym_nil] = ACTIONS(2547), + [sym_atom] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2547), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_SLASH] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2547), + [anon_sym_COMMA] = ACTIONS(2547), + [sym_keyword] = ACTIONS(2547), + [anon_sym_LT_LT] = ACTIONS(2547), + [anon_sym_PERCENT] = ACTIONS(2547), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_CARET] = ACTIONS(2547), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2547), + [anon_sym_not] = ACTIONS(2547), + [anon_sym_AT] = ACTIONS(2547), + [anon_sym_LT_DASH] = ACTIONS(2547), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2547), + [anon_sym_when] = ACTIONS(2547), + [anon_sym_COLON_COLON] = ACTIONS(2547), + [anon_sym_EQ_GT] = ACTIONS(2547), + [anon_sym_EQ] = ACTIONS(2547), + [anon_sym_PIPE_PIPE] = ACTIONS(2547), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2547), + [anon_sym_or] = ACTIONS(2547), + [anon_sym_AMP_AMP] = ACTIONS(2547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2547), + [anon_sym_and] = ACTIONS(2547), + [anon_sym_EQ_EQ] = ACTIONS(2547), + [anon_sym_BANG_EQ] = ACTIONS(2547), + [anon_sym_EQ_TILDE] = ACTIONS(2547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2547), + [anon_sym_LT_EQ] = ACTIONS(2547), + [anon_sym_GT_EQ] = ACTIONS(2547), + [anon_sym_PIPE_GT] = ACTIONS(2547), + [anon_sym_LT_LT_LT] = ACTIONS(2547), + [anon_sym_GT_GT_GT] = ACTIONS(2547), + [anon_sym_LT_LT_TILDE] = ACTIONS(2547), + [anon_sym_TILDE_GT_GT] = ACTIONS(2547), + [anon_sym_LT_TILDE] = ACTIONS(2547), + [anon_sym_TILDE_GT] = ACTIONS(2547), + [anon_sym_LT_TILDE_GT] = ACTIONS(2547), + [anon_sym_LT_PIPE_GT] = ACTIONS(2547), + [anon_sym_in] = ACTIONS(2547), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2547), + [anon_sym_SLASH_SLASH] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH] = ACTIONS(2547), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2547), + [anon_sym_DOT_DOT] = ACTIONS(2547), + [anon_sym_LT_GT] = ACTIONS(2547), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_STAR_STAR] = ACTIONS(2547), + [anon_sym_CARET_CARET] = ACTIONS(2547), + [anon_sym_DASH_GT] = ACTIONS(2547), + [anon_sym_DOT] = ACTIONS(2547), + [anon_sym_do] = ACTIONS(2547), + [anon_sym_fn] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(2545), + [anon_sym_LBRACK2] = ACTIONS(2545), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2545), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2545), + [sym__not_in] = ACTIONS(2545), + [sym__quoted_atom_start] = ACTIONS(2545), + }, + [948] = { + [aux_sym__terminator_token1] = ACTIONS(2565), + [anon_sym_SEMI] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2567), + [aux_sym_identifier_token1] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2567), + [sym_alias] = ACTIONS(2567), + [sym_integer] = ACTIONS(2567), + [sym_float] = ACTIONS(2567), + [sym_char] = ACTIONS(2567), + [anon_sym_true] = ACTIONS(2567), + [anon_sym_false] = ACTIONS(2567), + [anon_sym_nil] = ACTIONS(2567), + [sym_atom] = ACTIONS(2567), + [anon_sym_DQUOTE] = ACTIONS(2567), + [anon_sym_SQUOTE] = ACTIONS(2567), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2567), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_LT] = ACTIONS(2567), + [anon_sym_GT] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_SLASH] = ACTIONS(2567), + [anon_sym_TILDE] = ACTIONS(2567), + [anon_sym_COMMA] = ACTIONS(2567), + [sym_keyword] = ACTIONS(2567), + [anon_sym_LT_LT] = ACTIONS(2567), + [anon_sym_PERCENT] = ACTIONS(2567), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(2567), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2567), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2567), + [anon_sym_AT] = ACTIONS(2567), + [anon_sym_LT_DASH] = ACTIONS(2567), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2567), + [anon_sym_when] = ACTIONS(2567), + [anon_sym_COLON_COLON] = ACTIONS(2567), + [anon_sym_EQ_GT] = ACTIONS(2567), + [anon_sym_EQ] = ACTIONS(2567), + [anon_sym_PIPE_PIPE] = ACTIONS(2567), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2567), + [anon_sym_or] = ACTIONS(2567), + [anon_sym_AMP_AMP] = ACTIONS(2567), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2567), + [anon_sym_and] = ACTIONS(2567), + [anon_sym_EQ_EQ] = ACTIONS(2567), + [anon_sym_BANG_EQ] = ACTIONS(2567), + [anon_sym_EQ_TILDE] = ACTIONS(2567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2567), + [anon_sym_LT_EQ] = ACTIONS(2567), + [anon_sym_GT_EQ] = ACTIONS(2567), + [anon_sym_PIPE_GT] = ACTIONS(2567), + [anon_sym_LT_LT_LT] = ACTIONS(2567), + [anon_sym_GT_GT_GT] = ACTIONS(2567), + [anon_sym_LT_LT_TILDE] = ACTIONS(2567), + [anon_sym_TILDE_GT_GT] = ACTIONS(2567), + [anon_sym_LT_TILDE] = ACTIONS(2567), + [anon_sym_TILDE_GT] = ACTIONS(2567), + [anon_sym_LT_TILDE_GT] = ACTIONS(2567), + [anon_sym_LT_PIPE_GT] = ACTIONS(2567), + [anon_sym_in] = ACTIONS(2567), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2567), + [anon_sym_SLASH_SLASH] = ACTIONS(2567), + [anon_sym_PLUS_PLUS] = ACTIONS(2567), + [anon_sym_DASH_DASH] = ACTIONS(2567), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2567), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2567), + [anon_sym_DOT_DOT] = ACTIONS(2567), + [anon_sym_LT_GT] = ACTIONS(2567), + [anon_sym_STAR] = ACTIONS(2567), + [anon_sym_STAR_STAR] = ACTIONS(2567), + [anon_sym_CARET_CARET] = ACTIONS(2567), + [anon_sym_DASH_GT] = ACTIONS(2567), + [anon_sym_DOT] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2567), + [anon_sym_end] = ACTIONS(2567), + [anon_sym_fn] = ACTIONS(2567), + [anon_sym_LPAREN2] = ACTIONS(2565), + [anon_sym_LBRACK2] = ACTIONS(2565), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2565), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2565), + [sym__not_in] = ACTIONS(2565), + [sym__quoted_atom_start] = ACTIONS(2565), + }, + [949] = { + [ts_builtin_sym_end] = ACTIONS(2581), + [aux_sym__terminator_token1] = ACTIONS(2581), + [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_LPAREN] = ACTIONS(2583), + [aux_sym_identifier_token1] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2583), + [sym_alias] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2583), + [sym_char] = ACTIONS(2583), + [anon_sym_true] = ACTIONS(2583), + [anon_sym_false] = ACTIONS(2583), + [anon_sym_nil] = ACTIONS(2583), + [sym_atom] = ACTIONS(2583), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2583), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_GT] = ACTIONS(2583), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_SLASH] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_COMMA] = ACTIONS(2583), + [sym_keyword] = ACTIONS(2583), + [anon_sym_LT_LT] = ACTIONS(2583), + [anon_sym_PERCENT] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_BANG] = ACTIONS(2583), + [anon_sym_CARET] = ACTIONS(2583), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_LT_DASH] = ACTIONS(2583), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2583), + [anon_sym_when] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2583), + [anon_sym_EQ_GT] = ACTIONS(2583), + [anon_sym_EQ] = ACTIONS(2583), + [anon_sym_PIPE_PIPE] = ACTIONS(2583), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2583), + [anon_sym_or] = ACTIONS(2583), + [anon_sym_AMP_AMP] = ACTIONS(2583), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2583), + [anon_sym_and] = ACTIONS(2583), + [anon_sym_EQ_EQ] = ACTIONS(2583), + [anon_sym_BANG_EQ] = ACTIONS(2583), + [anon_sym_EQ_TILDE] = ACTIONS(2583), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2583), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2583), + [anon_sym_LT_EQ] = ACTIONS(2583), + [anon_sym_GT_EQ] = ACTIONS(2583), + [anon_sym_PIPE_GT] = ACTIONS(2583), + [anon_sym_LT_LT_LT] = ACTIONS(2583), + [anon_sym_GT_GT_GT] = ACTIONS(2583), + [anon_sym_LT_LT_TILDE] = ACTIONS(2583), + [anon_sym_TILDE_GT_GT] = ACTIONS(2583), + [anon_sym_LT_TILDE] = ACTIONS(2583), + [anon_sym_TILDE_GT] = ACTIONS(2583), + [anon_sym_LT_TILDE_GT] = ACTIONS(2583), + [anon_sym_LT_PIPE_GT] = ACTIONS(2583), + [anon_sym_in] = ACTIONS(2583), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2583), + [anon_sym_SLASH_SLASH] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2583), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2583), + [anon_sym_DOT_DOT] = ACTIONS(2583), + [anon_sym_LT_GT] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2583), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_CARET_CARET] = ACTIONS(2583), + [anon_sym_DASH_GT] = ACTIONS(2583), + [anon_sym_DOT] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2581), + [anon_sym_LBRACK2] = ACTIONS(2581), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2581), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2581), + [sym__not_in] = ACTIONS(2581), + [sym__quoted_atom_start] = ACTIONS(2581), + }, + [950] = { + [ts_builtin_sym_end] = ACTIONS(2549), + [aux_sym__terminator_token1] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [951] = { + [ts_builtin_sym_end] = ACTIONS(2549), + [aux_sym__terminator_token1] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [952] = { + [ts_builtin_sym_end] = ACTIONS(2569), + [aux_sym__terminator_token1] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2571), + [aux_sym_identifier_token1] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2571), + [sym_alias] = ACTIONS(2571), + [sym_integer] = ACTIONS(2571), + [sym_float] = ACTIONS(2571), + [sym_char] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2571), + [anon_sym_false] = ACTIONS(2571), + [anon_sym_nil] = ACTIONS(2571), + [sym_atom] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_COMMA] = ACTIONS(2571), + [sym_keyword] = ACTIONS(2571), + [anon_sym_LT_LT] = ACTIONS(2571), + [anon_sym_PERCENT] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_CARET] = ACTIONS(2571), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_LT_DASH] = ACTIONS(2571), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2571), + [anon_sym_when] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_EQ_GT] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(2571), + [anon_sym_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_or] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2571), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2571), + [anon_sym_and] = ACTIONS(2571), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_EQ_TILDE] = ACTIONS(2571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2571), + [anon_sym_LT_EQ] = ACTIONS(2571), + [anon_sym_GT_EQ] = ACTIONS(2571), + [anon_sym_PIPE_GT] = ACTIONS(2571), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT_GT] = ACTIONS(2571), + [anon_sym_LT_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_PIPE_GT] = ACTIONS(2571), + [anon_sym_in] = ACTIONS(2571), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2571), + [anon_sym_SLASH_SLASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_LT_GT] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_STAR_STAR] = ACTIONS(2571), + [anon_sym_CARET_CARET] = ACTIONS(2571), + [anon_sym_DASH_GT] = ACTIONS(2571), + [anon_sym_DOT] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_fn] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_LBRACK2] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2569), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2569), + [sym__not_in] = ACTIONS(2569), + [sym__quoted_atom_start] = ACTIONS(2569), + }, + [953] = { + [ts_builtin_sym_end] = ACTIONS(2573), + [aux_sym__terminator_token1] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_LPAREN] = ACTIONS(2575), + [aux_sym_identifier_token1] = ACTIONS(2575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2575), + [sym_alias] = ACTIONS(2575), + [sym_integer] = ACTIONS(2575), + [sym_float] = ACTIONS(2575), + [sym_char] = ACTIONS(2575), + [anon_sym_true] = ACTIONS(2575), + [anon_sym_false] = ACTIONS(2575), + [anon_sym_nil] = ACTIONS(2575), + [sym_atom] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2575), + [anon_sym_SQUOTE] = ACTIONS(2575), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2575), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_LT] = ACTIONS(2575), + [anon_sym_GT] = ACTIONS(2575), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_SLASH] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_COMMA] = ACTIONS(2575), + [sym_keyword] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2575), + [anon_sym_PERCENT] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2575), + [anon_sym_DASH] = ACTIONS(2575), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_CARET] = ACTIONS(2575), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2575), + [anon_sym_not] = ACTIONS(2575), + [anon_sym_AT] = ACTIONS(2575), + [anon_sym_LT_DASH] = ACTIONS(2575), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2575), + [anon_sym_when] = ACTIONS(2575), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_EQ_GT] = ACTIONS(2575), + [anon_sym_EQ] = ACTIONS(2575), + [anon_sym_PIPE_PIPE] = ACTIONS(2575), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2575), + [anon_sym_or] = ACTIONS(2575), + [anon_sym_AMP_AMP] = ACTIONS(2575), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2575), + [anon_sym_and] = ACTIONS(2575), + [anon_sym_EQ_EQ] = ACTIONS(2575), + [anon_sym_BANG_EQ] = ACTIONS(2575), + [anon_sym_EQ_TILDE] = ACTIONS(2575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2575), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_PIPE_GT] = ACTIONS(2575), + [anon_sym_LT_LT_LT] = ACTIONS(2575), + [anon_sym_GT_GT_GT] = ACTIONS(2575), + [anon_sym_LT_LT_TILDE] = ACTIONS(2575), + [anon_sym_TILDE_GT_GT] = ACTIONS(2575), + [anon_sym_LT_TILDE] = ACTIONS(2575), + [anon_sym_TILDE_GT] = ACTIONS(2575), + [anon_sym_LT_TILDE_GT] = ACTIONS(2575), + [anon_sym_LT_PIPE_GT] = ACTIONS(2575), + [anon_sym_in] = ACTIONS(2575), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2575), + [anon_sym_SLASH_SLASH] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2575), + [anon_sym_DOT_DOT] = ACTIONS(2575), + [anon_sym_LT_GT] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_STAR_STAR] = ACTIONS(2575), + [anon_sym_CARET_CARET] = ACTIONS(2575), + [anon_sym_DASH_GT] = ACTIONS(2575), + [anon_sym_DOT] = ACTIONS(2575), + [anon_sym_do] = ACTIONS(2575), + [anon_sym_fn] = ACTIONS(2575), + [anon_sym_LPAREN2] = ACTIONS(2573), + [anon_sym_LBRACK2] = ACTIONS(2573), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2573), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2573), + [sym__not_in] = ACTIONS(2573), + [sym__quoted_atom_start] = ACTIONS(2573), + }, + [954] = { + [ts_builtin_sym_end] = ACTIONS(2565), + [aux_sym__terminator_token1] = ACTIONS(2565), + [anon_sym_SEMI] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2567), + [aux_sym_identifier_token1] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2567), + [sym_alias] = ACTIONS(2567), + [sym_integer] = ACTIONS(2567), + [sym_float] = ACTIONS(2567), + [sym_char] = ACTIONS(2567), + [anon_sym_true] = ACTIONS(2567), + [anon_sym_false] = ACTIONS(2567), + [anon_sym_nil] = ACTIONS(2567), + [sym_atom] = ACTIONS(2567), + [anon_sym_DQUOTE] = ACTIONS(2567), + [anon_sym_SQUOTE] = ACTIONS(2567), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2567), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_LT] = ACTIONS(2567), + [anon_sym_GT] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_SLASH] = ACTIONS(2567), + [anon_sym_TILDE] = ACTIONS(2567), + [anon_sym_COMMA] = ACTIONS(2567), + [sym_keyword] = ACTIONS(2567), + [anon_sym_LT_LT] = ACTIONS(2567), + [anon_sym_PERCENT] = ACTIONS(2567), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(2567), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2567), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2567), + [anon_sym_AT] = ACTIONS(2567), + [anon_sym_LT_DASH] = ACTIONS(2567), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2567), + [anon_sym_when] = ACTIONS(2567), + [anon_sym_COLON_COLON] = ACTIONS(2567), + [anon_sym_EQ_GT] = ACTIONS(2567), + [anon_sym_EQ] = ACTIONS(2567), + [anon_sym_PIPE_PIPE] = ACTIONS(2567), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2567), + [anon_sym_or] = ACTIONS(2567), + [anon_sym_AMP_AMP] = ACTIONS(2567), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2567), + [anon_sym_and] = ACTIONS(2567), + [anon_sym_EQ_EQ] = ACTIONS(2567), + [anon_sym_BANG_EQ] = ACTIONS(2567), + [anon_sym_EQ_TILDE] = ACTIONS(2567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2567), + [anon_sym_LT_EQ] = ACTIONS(2567), + [anon_sym_GT_EQ] = ACTIONS(2567), + [anon_sym_PIPE_GT] = ACTIONS(2567), + [anon_sym_LT_LT_LT] = ACTIONS(2567), + [anon_sym_GT_GT_GT] = ACTIONS(2567), + [anon_sym_LT_LT_TILDE] = ACTIONS(2567), + [anon_sym_TILDE_GT_GT] = ACTIONS(2567), + [anon_sym_LT_TILDE] = ACTIONS(2567), + [anon_sym_TILDE_GT] = ACTIONS(2567), + [anon_sym_LT_TILDE_GT] = ACTIONS(2567), + [anon_sym_LT_PIPE_GT] = ACTIONS(2567), + [anon_sym_in] = ACTIONS(2567), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2567), + [anon_sym_SLASH_SLASH] = ACTIONS(2567), + [anon_sym_PLUS_PLUS] = ACTIONS(2567), + [anon_sym_DASH_DASH] = ACTIONS(2567), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2567), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2567), + [anon_sym_DOT_DOT] = ACTIONS(2567), + [anon_sym_LT_GT] = ACTIONS(2567), + [anon_sym_STAR] = ACTIONS(2567), + [anon_sym_STAR_STAR] = ACTIONS(2567), + [anon_sym_CARET_CARET] = ACTIONS(2567), + [anon_sym_DASH_GT] = ACTIONS(2567), + [anon_sym_DOT] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2567), + [anon_sym_fn] = ACTIONS(2567), + [anon_sym_LPAREN2] = ACTIONS(2565), + [anon_sym_LBRACK2] = ACTIONS(2565), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2565), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2565), + [sym__not_in] = ACTIONS(2565), + [sym__quoted_atom_start] = ACTIONS(2565), + }, + [955] = { + [ts_builtin_sym_end] = ACTIONS(2549), + [aux_sym__terminator_token1] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [956] = { + [aux_sym__terminator_token1] = ACTIONS(2581), + [anon_sym_SEMI] = ACTIONS(2583), + [anon_sym_LPAREN] = ACTIONS(2583), + [aux_sym_identifier_token1] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2583), + [sym_alias] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2583), + [sym_char] = ACTIONS(2583), + [anon_sym_true] = ACTIONS(2583), + [anon_sym_false] = ACTIONS(2583), + [anon_sym_nil] = ACTIONS(2583), + [sym_atom] = ACTIONS(2583), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2583), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_GT] = ACTIONS(2583), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_SLASH] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_COMMA] = ACTIONS(2583), + [sym_keyword] = ACTIONS(2583), + [anon_sym_LT_LT] = ACTIONS(2583), + [anon_sym_PERCENT] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_BANG] = ACTIONS(2583), + [anon_sym_CARET] = ACTIONS(2583), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_LT_DASH] = ACTIONS(2583), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2583), + [anon_sym_when] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2583), + [anon_sym_EQ_GT] = ACTIONS(2583), + [anon_sym_EQ] = ACTIONS(2583), + [anon_sym_PIPE_PIPE] = ACTIONS(2583), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2583), + [anon_sym_or] = ACTIONS(2583), + [anon_sym_AMP_AMP] = ACTIONS(2583), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2583), + [anon_sym_and] = ACTIONS(2583), + [anon_sym_EQ_EQ] = ACTIONS(2583), + [anon_sym_BANG_EQ] = ACTIONS(2583), + [anon_sym_EQ_TILDE] = ACTIONS(2583), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2583), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2583), + [anon_sym_LT_EQ] = ACTIONS(2583), + [anon_sym_GT_EQ] = ACTIONS(2583), + [anon_sym_PIPE_GT] = ACTIONS(2583), + [anon_sym_LT_LT_LT] = ACTIONS(2583), + [anon_sym_GT_GT_GT] = ACTIONS(2583), + [anon_sym_LT_LT_TILDE] = ACTIONS(2583), + [anon_sym_TILDE_GT_GT] = ACTIONS(2583), + [anon_sym_LT_TILDE] = ACTIONS(2583), + [anon_sym_TILDE_GT] = ACTIONS(2583), + [anon_sym_LT_TILDE_GT] = ACTIONS(2583), + [anon_sym_LT_PIPE_GT] = ACTIONS(2583), + [anon_sym_in] = ACTIONS(2583), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2583), + [anon_sym_SLASH_SLASH] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2583), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2583), + [anon_sym_DOT_DOT] = ACTIONS(2583), + [anon_sym_LT_GT] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2583), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_CARET_CARET] = ACTIONS(2583), + [anon_sym_DASH_GT] = ACTIONS(2583), + [anon_sym_DOT] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_end] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2581), + [anon_sym_LBRACK2] = ACTIONS(2581), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2581), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2581), + [sym__not_in] = ACTIONS(2581), + [sym__quoted_atom_start] = ACTIONS(2581), + }, + [957] = { + [aux_sym__terminator_token1] = ACTIONS(2545), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2547), + [aux_sym_identifier_token1] = ACTIONS(2547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2547), + [sym_alias] = ACTIONS(2547), + [sym_integer] = ACTIONS(2547), + [sym_float] = ACTIONS(2547), + [sym_char] = ACTIONS(2547), + [anon_sym_true] = ACTIONS(2547), + [anon_sym_false] = ACTIONS(2547), + [anon_sym_nil] = ACTIONS(2547), + [sym_atom] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2547), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_SLASH] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2547), + [anon_sym_COMMA] = ACTIONS(2547), + [sym_keyword] = ACTIONS(2547), + [anon_sym_LT_LT] = ACTIONS(2547), + [anon_sym_PERCENT] = ACTIONS(2547), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_CARET] = ACTIONS(2547), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2547), + [anon_sym_not] = ACTIONS(2547), + [anon_sym_AT] = ACTIONS(2547), + [anon_sym_LT_DASH] = ACTIONS(2547), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2547), + [anon_sym_when] = ACTIONS(2547), + [anon_sym_COLON_COLON] = ACTIONS(2547), + [anon_sym_EQ_GT] = ACTIONS(2547), + [anon_sym_EQ] = ACTIONS(2547), + [anon_sym_PIPE_PIPE] = ACTIONS(2547), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2547), + [anon_sym_or] = ACTIONS(2547), + [anon_sym_AMP_AMP] = ACTIONS(2547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2547), + [anon_sym_and] = ACTIONS(2547), + [anon_sym_EQ_EQ] = ACTIONS(2547), + [anon_sym_BANG_EQ] = ACTIONS(2547), + [anon_sym_EQ_TILDE] = ACTIONS(2547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2547), + [anon_sym_LT_EQ] = ACTIONS(2547), + [anon_sym_GT_EQ] = ACTIONS(2547), + [anon_sym_PIPE_GT] = ACTIONS(2547), + [anon_sym_LT_LT_LT] = ACTIONS(2547), + [anon_sym_GT_GT_GT] = ACTIONS(2547), + [anon_sym_LT_LT_TILDE] = ACTIONS(2547), + [anon_sym_TILDE_GT_GT] = ACTIONS(2547), + [anon_sym_LT_TILDE] = ACTIONS(2547), + [anon_sym_TILDE_GT] = ACTIONS(2547), + [anon_sym_LT_TILDE_GT] = ACTIONS(2547), + [anon_sym_LT_PIPE_GT] = ACTIONS(2547), + [anon_sym_in] = ACTIONS(2547), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2547), + [anon_sym_SLASH_SLASH] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH] = ACTIONS(2547), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2547), + [anon_sym_DOT_DOT] = ACTIONS(2547), + [anon_sym_LT_GT] = ACTIONS(2547), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_STAR_STAR] = ACTIONS(2547), + [anon_sym_CARET_CARET] = ACTIONS(2547), + [anon_sym_DASH_GT] = ACTIONS(2547), + [anon_sym_DOT] = ACTIONS(2547), + [anon_sym_do] = ACTIONS(2547), + [anon_sym_end] = ACTIONS(2547), + [anon_sym_fn] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(2545), + [anon_sym_LBRACK2] = ACTIONS(2545), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2545), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2545), + [sym__not_in] = ACTIONS(2545), + [sym__quoted_atom_start] = ACTIONS(2545), + }, + [958] = { + [ts_builtin_sym_end] = ACTIONS(2569), + [aux_sym__terminator_token1] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2571), + [aux_sym_identifier_token1] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2571), + [sym_alias] = ACTIONS(2571), + [sym_integer] = ACTIONS(2571), + [sym_float] = ACTIONS(2571), + [sym_char] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2571), + [anon_sym_false] = ACTIONS(2571), + [anon_sym_nil] = ACTIONS(2571), + [sym_atom] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_COMMA] = ACTIONS(2571), + [sym_keyword] = ACTIONS(2571), + [anon_sym_LT_LT] = ACTIONS(2571), + [anon_sym_PERCENT] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_CARET] = ACTIONS(2571), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_LT_DASH] = ACTIONS(2571), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2571), + [anon_sym_when] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_EQ_GT] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(2571), + [anon_sym_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_or] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2571), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2571), + [anon_sym_and] = ACTIONS(2571), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_EQ_TILDE] = ACTIONS(2571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2571), + [anon_sym_LT_EQ] = ACTIONS(2571), + [anon_sym_GT_EQ] = ACTIONS(2571), + [anon_sym_PIPE_GT] = ACTIONS(2571), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT_GT] = ACTIONS(2571), + [anon_sym_LT_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_PIPE_GT] = ACTIONS(2571), + [anon_sym_in] = ACTIONS(2571), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2571), + [anon_sym_SLASH_SLASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_LT_GT] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_STAR_STAR] = ACTIONS(2571), + [anon_sym_CARET_CARET] = ACTIONS(2571), + [anon_sym_DASH_GT] = ACTIONS(2571), + [anon_sym_DOT] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_fn] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_LBRACK2] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2569), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2569), + [sym__not_in] = ACTIONS(2569), + [sym__quoted_atom_start] = ACTIONS(2569), + }, + [959] = { + [ts_builtin_sym_end] = ACTIONS(2561), + [aux_sym__terminator_token1] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2563), + [aux_sym_identifier_token1] = ACTIONS(2563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2563), + [sym_alias] = ACTIONS(2563), + [sym_integer] = ACTIONS(2563), + [sym_float] = ACTIONS(2563), + [sym_char] = ACTIONS(2563), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_nil] = ACTIONS(2563), + [sym_atom] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2563), + [anon_sym_SQUOTE] = ACTIONS(2563), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2563), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_GT] = ACTIONS(2563), + [anon_sym_PIPE] = ACTIONS(2563), + [anon_sym_SLASH] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_COMMA] = ACTIONS(2563), + [sym_keyword] = ACTIONS(2563), + [anon_sym_LT_LT] = ACTIONS(2563), + [anon_sym_PERCENT] = ACTIONS(2563), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_CARET] = ACTIONS(2563), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2563), + [anon_sym_LT_DASH] = ACTIONS(2563), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2563), + [anon_sym_when] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2563), + [anon_sym_EQ_GT] = ACTIONS(2563), + [anon_sym_EQ] = ACTIONS(2563), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_or] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2563), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2563), + [anon_sym_and] = ACTIONS(2563), + [anon_sym_EQ_EQ] = ACTIONS(2563), + [anon_sym_BANG_EQ] = ACTIONS(2563), + [anon_sym_EQ_TILDE] = ACTIONS(2563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2563), + [anon_sym_LT_EQ] = ACTIONS(2563), + [anon_sym_GT_EQ] = ACTIONS(2563), + [anon_sym_PIPE_GT] = ACTIONS(2563), + [anon_sym_LT_LT_LT] = ACTIONS(2563), + [anon_sym_GT_GT_GT] = ACTIONS(2563), + [anon_sym_LT_LT_TILDE] = ACTIONS(2563), + [anon_sym_TILDE_GT_GT] = ACTIONS(2563), + [anon_sym_LT_TILDE] = ACTIONS(2563), + [anon_sym_TILDE_GT] = ACTIONS(2563), + [anon_sym_LT_TILDE_GT] = ACTIONS(2563), + [anon_sym_LT_PIPE_GT] = ACTIONS(2563), + [anon_sym_in] = ACTIONS(2563), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2563), + [anon_sym_SLASH_SLASH] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2563), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2563), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [anon_sym_LT_GT] = ACTIONS(2563), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_STAR_STAR] = ACTIONS(2563), + [anon_sym_CARET_CARET] = ACTIONS(2563), + [anon_sym_DASH_GT] = ACTIONS(2563), + [anon_sym_DOT] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_fn] = ACTIONS(2563), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2561), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2561), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2561), + [sym__not_in] = ACTIONS(2561), + [sym__quoted_atom_start] = ACTIONS(2561), + }, + [960] = { + [ts_builtin_sym_end] = ACTIONS(2553), + [aux_sym__terminator_token1] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2555), + [anon_sym_LPAREN] = ACTIONS(2555), + [aux_sym_identifier_token1] = ACTIONS(2555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2555), + [sym_alias] = ACTIONS(2555), + [sym_integer] = ACTIONS(2555), + [sym_float] = ACTIONS(2555), + [sym_char] = ACTIONS(2555), + [anon_sym_true] = ACTIONS(2555), + [anon_sym_false] = ACTIONS(2555), + [anon_sym_nil] = ACTIONS(2555), + [sym_atom] = ACTIONS(2555), + [anon_sym_DQUOTE] = ACTIONS(2555), + [anon_sym_SQUOTE] = ACTIONS(2555), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2555), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_LT] = ACTIONS(2555), + [anon_sym_GT] = ACTIONS(2555), + [anon_sym_PIPE] = ACTIONS(2555), + [anon_sym_SLASH] = ACTIONS(2555), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_COMMA] = ACTIONS(2555), + [sym_keyword] = ACTIONS(2555), + [anon_sym_LT_LT] = ACTIONS(2555), + [anon_sym_PERCENT] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_BANG] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_AT] = ACTIONS(2555), + [anon_sym_LT_DASH] = ACTIONS(2555), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2555), + [anon_sym_when] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2555), + [anon_sym_EQ_GT] = ACTIONS(2555), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_PIPE_PIPE] = ACTIONS(2555), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2555), + [anon_sym_or] = ACTIONS(2555), + [anon_sym_AMP_AMP] = ACTIONS(2555), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2555), + [anon_sym_and] = ACTIONS(2555), + [anon_sym_EQ_EQ] = ACTIONS(2555), + [anon_sym_BANG_EQ] = ACTIONS(2555), + [anon_sym_EQ_TILDE] = ACTIONS(2555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2555), + [anon_sym_LT_EQ] = ACTIONS(2555), + [anon_sym_GT_EQ] = ACTIONS(2555), + [anon_sym_PIPE_GT] = ACTIONS(2555), + [anon_sym_LT_LT_LT] = ACTIONS(2555), + [anon_sym_GT_GT_GT] = ACTIONS(2555), + [anon_sym_LT_LT_TILDE] = ACTIONS(2555), + [anon_sym_TILDE_GT_GT] = ACTIONS(2555), + [anon_sym_LT_TILDE] = ACTIONS(2555), + [anon_sym_TILDE_GT] = ACTIONS(2555), + [anon_sym_LT_TILDE_GT] = ACTIONS(2555), + [anon_sym_LT_PIPE_GT] = ACTIONS(2555), + [anon_sym_in] = ACTIONS(2555), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2555), + [anon_sym_SLASH_SLASH] = ACTIONS(2555), + [anon_sym_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2555), + [anon_sym_DOT_DOT] = ACTIONS(2555), + [anon_sym_LT_GT] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_STAR_STAR] = ACTIONS(2555), + [anon_sym_CARET_CARET] = ACTIONS(2555), + [anon_sym_DASH_GT] = ACTIONS(2555), + [anon_sym_DOT] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_fn] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2553), + [anon_sym_LBRACK2] = ACTIONS(2553), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2553), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2553), + [sym__not_in] = ACTIONS(2553), + [sym__quoted_atom_start] = ACTIONS(2553), + }, + [961] = { + [ts_builtin_sym_end] = ACTIONS(2557), + [aux_sym__terminator_token1] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2559), + [aux_sym_identifier_token1] = ACTIONS(2559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [sym_alias] = ACTIONS(2559), + [sym_integer] = ACTIONS(2559), + [sym_float] = ACTIONS(2559), + [sym_char] = ACTIONS(2559), + [anon_sym_true] = ACTIONS(2559), + [anon_sym_false] = ACTIONS(2559), + [anon_sym_nil] = ACTIONS(2559), + [sym_atom] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(2559), + [anon_sym_SQUOTE] = ACTIONS(2559), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2559), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_LT] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2559), + [anon_sym_PIPE] = ACTIONS(2559), + [anon_sym_SLASH] = ACTIONS(2559), + [anon_sym_TILDE] = ACTIONS(2559), + [anon_sym_COMMA] = ACTIONS(2559), + [sym_keyword] = ACTIONS(2559), + [anon_sym_LT_LT] = ACTIONS(2559), + [anon_sym_PERCENT] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_CARET] = ACTIONS(2559), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AT] = ACTIONS(2559), + [anon_sym_LT_DASH] = ACTIONS(2559), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2559), + [anon_sym_when] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2559), + [anon_sym_EQ_GT] = ACTIONS(2559), + [anon_sym_EQ] = ACTIONS(2559), + [anon_sym_PIPE_PIPE] = ACTIONS(2559), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2559), + [anon_sym_or] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2559), + [anon_sym_and] = ACTIONS(2559), + [anon_sym_EQ_EQ] = ACTIONS(2559), + [anon_sym_BANG_EQ] = ACTIONS(2559), + [anon_sym_EQ_TILDE] = ACTIONS(2559), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2559), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2559), + [anon_sym_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_EQ] = ACTIONS(2559), + [anon_sym_PIPE_GT] = ACTIONS(2559), + [anon_sym_LT_LT_LT] = ACTIONS(2559), + [anon_sym_GT_GT_GT] = ACTIONS(2559), + [anon_sym_LT_LT_TILDE] = ACTIONS(2559), + [anon_sym_TILDE_GT_GT] = ACTIONS(2559), + [anon_sym_LT_TILDE] = ACTIONS(2559), + [anon_sym_TILDE_GT] = ACTIONS(2559), + [anon_sym_LT_TILDE_GT] = ACTIONS(2559), + [anon_sym_LT_PIPE_GT] = ACTIONS(2559), + [anon_sym_in] = ACTIONS(2559), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2559), + [anon_sym_SLASH_SLASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2559), + [anon_sym_DOT_DOT] = ACTIONS(2559), + [anon_sym_LT_GT] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_STAR_STAR] = ACTIONS(2559), + [anon_sym_CARET_CARET] = ACTIONS(2559), + [anon_sym_DASH_GT] = ACTIONS(2559), + [anon_sym_DOT] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_fn] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_LBRACK2] = ACTIONS(2557), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2557), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2557), + [sym__not_in] = ACTIONS(2557), + [sym__quoted_atom_start] = ACTIONS(2557), + }, + [962] = { + [aux_sym__terminator_token1] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2559), + [aux_sym_identifier_token1] = ACTIONS(2559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [sym_alias] = ACTIONS(2559), + [sym_integer] = ACTIONS(2559), + [sym_float] = ACTIONS(2559), + [sym_char] = ACTIONS(2559), + [anon_sym_true] = ACTIONS(2559), + [anon_sym_false] = ACTIONS(2559), + [anon_sym_nil] = ACTIONS(2559), + [sym_atom] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(2559), + [anon_sym_SQUOTE] = ACTIONS(2559), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2559), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_LT] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2559), + [anon_sym_PIPE] = ACTIONS(2559), + [anon_sym_SLASH] = ACTIONS(2559), + [anon_sym_TILDE] = ACTIONS(2559), + [anon_sym_COMMA] = ACTIONS(2559), + [sym_keyword] = ACTIONS(2559), + [anon_sym_LT_LT] = ACTIONS(2559), + [anon_sym_PERCENT] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_CARET] = ACTIONS(2559), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AT] = ACTIONS(2559), + [anon_sym_LT_DASH] = ACTIONS(2559), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2559), + [anon_sym_when] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2559), + [anon_sym_EQ_GT] = ACTIONS(2559), + [anon_sym_EQ] = ACTIONS(2559), + [anon_sym_PIPE_PIPE] = ACTIONS(2559), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2559), + [anon_sym_or] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2559), + [anon_sym_and] = ACTIONS(2559), + [anon_sym_EQ_EQ] = ACTIONS(2559), + [anon_sym_BANG_EQ] = ACTIONS(2559), + [anon_sym_EQ_TILDE] = ACTIONS(2559), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2559), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2559), + [anon_sym_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_EQ] = ACTIONS(2559), + [anon_sym_PIPE_GT] = ACTIONS(2559), + [anon_sym_LT_LT_LT] = ACTIONS(2559), + [anon_sym_GT_GT_GT] = ACTIONS(2559), + [anon_sym_LT_LT_TILDE] = ACTIONS(2559), + [anon_sym_TILDE_GT_GT] = ACTIONS(2559), + [anon_sym_LT_TILDE] = ACTIONS(2559), + [anon_sym_TILDE_GT] = ACTIONS(2559), + [anon_sym_LT_TILDE_GT] = ACTIONS(2559), + [anon_sym_LT_PIPE_GT] = ACTIONS(2559), + [anon_sym_in] = ACTIONS(2559), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2559), + [anon_sym_SLASH_SLASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2559), + [anon_sym_DOT_DOT] = ACTIONS(2559), + [anon_sym_LT_GT] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_STAR_STAR] = ACTIONS(2559), + [anon_sym_CARET_CARET] = ACTIONS(2559), + [anon_sym_DASH_GT] = ACTIONS(2559), + [anon_sym_DOT] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_end] = ACTIONS(2559), + [anon_sym_fn] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_LBRACK2] = ACTIONS(2557), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2557), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2557), + [sym__not_in] = ACTIONS(2557), + [sym__quoted_atom_start] = ACTIONS(2557), + }, + [963] = { + [aux_sym__terminator_token1] = ACTIONS(2545), + [anon_sym_SEMI] = ACTIONS(2547), + [anon_sym_LPAREN] = ACTIONS(2547), + [anon_sym_RPAREN] = ACTIONS(2547), + [aux_sym_identifier_token1] = ACTIONS(2547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2547), + [sym_alias] = ACTIONS(2547), + [sym_integer] = ACTIONS(2547), + [sym_float] = ACTIONS(2547), + [sym_char] = ACTIONS(2547), + [anon_sym_true] = ACTIONS(2547), + [anon_sym_false] = ACTIONS(2547), + [anon_sym_nil] = ACTIONS(2547), + [sym_atom] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2547), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_SLASH] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2547), + [anon_sym_COMMA] = ACTIONS(2547), + [sym_keyword] = ACTIONS(2547), + [anon_sym_LT_LT] = ACTIONS(2547), + [anon_sym_PERCENT] = ACTIONS(2547), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_CARET] = ACTIONS(2547), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2547), + [anon_sym_not] = ACTIONS(2547), + [anon_sym_AT] = ACTIONS(2547), + [anon_sym_LT_DASH] = ACTIONS(2547), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2547), + [anon_sym_when] = ACTIONS(2547), + [anon_sym_COLON_COLON] = ACTIONS(2547), + [anon_sym_EQ_GT] = ACTIONS(2547), + [anon_sym_EQ] = ACTIONS(2547), + [anon_sym_PIPE_PIPE] = ACTIONS(2547), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2547), + [anon_sym_or] = ACTIONS(2547), + [anon_sym_AMP_AMP] = ACTIONS(2547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2547), + [anon_sym_and] = ACTIONS(2547), + [anon_sym_EQ_EQ] = ACTIONS(2547), + [anon_sym_BANG_EQ] = ACTIONS(2547), + [anon_sym_EQ_TILDE] = ACTIONS(2547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2547), + [anon_sym_LT_EQ] = ACTIONS(2547), + [anon_sym_GT_EQ] = ACTIONS(2547), + [anon_sym_PIPE_GT] = ACTIONS(2547), + [anon_sym_LT_LT_LT] = ACTIONS(2547), + [anon_sym_GT_GT_GT] = ACTIONS(2547), + [anon_sym_LT_LT_TILDE] = ACTIONS(2547), + [anon_sym_TILDE_GT_GT] = ACTIONS(2547), + [anon_sym_LT_TILDE] = ACTIONS(2547), + [anon_sym_TILDE_GT] = ACTIONS(2547), + [anon_sym_LT_TILDE_GT] = ACTIONS(2547), + [anon_sym_LT_PIPE_GT] = ACTIONS(2547), + [anon_sym_in] = ACTIONS(2547), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2547), + [anon_sym_SLASH_SLASH] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH] = ACTIONS(2547), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2547), + [anon_sym_DOT_DOT] = ACTIONS(2547), + [anon_sym_LT_GT] = ACTIONS(2547), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_STAR_STAR] = ACTIONS(2547), + [anon_sym_CARET_CARET] = ACTIONS(2547), + [anon_sym_DASH_GT] = ACTIONS(2547), + [anon_sym_DOT] = ACTIONS(2547), + [anon_sym_do] = ACTIONS(2547), + [anon_sym_fn] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(2545), + [anon_sym_LBRACK2] = ACTIONS(2545), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2545), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2545), + [sym__not_in] = ACTIONS(2545), + [sym__quoted_atom_start] = ACTIONS(2545), + }, + [964] = { + [aux_sym__terminator_token1] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2555), + [anon_sym_LPAREN] = ACTIONS(2555), + [aux_sym_identifier_token1] = ACTIONS(2555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2555), + [sym_alias] = ACTIONS(2555), + [sym_integer] = ACTIONS(2555), + [sym_float] = ACTIONS(2555), + [sym_char] = ACTIONS(2555), + [anon_sym_true] = ACTIONS(2555), + [anon_sym_false] = ACTIONS(2555), + [anon_sym_nil] = ACTIONS(2555), + [sym_atom] = ACTIONS(2555), + [anon_sym_DQUOTE] = ACTIONS(2555), + [anon_sym_SQUOTE] = ACTIONS(2555), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2555), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_LT] = ACTIONS(2555), + [anon_sym_GT] = ACTIONS(2555), + [anon_sym_PIPE] = ACTIONS(2555), + [anon_sym_SLASH] = ACTIONS(2555), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_COMMA] = ACTIONS(2555), + [sym_keyword] = ACTIONS(2555), + [anon_sym_LT_LT] = ACTIONS(2555), + [anon_sym_PERCENT] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_BANG] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_AT] = ACTIONS(2555), + [anon_sym_LT_DASH] = ACTIONS(2555), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2555), + [anon_sym_when] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2555), + [anon_sym_EQ_GT] = ACTIONS(2555), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_PIPE_PIPE] = ACTIONS(2555), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2555), + [anon_sym_or] = ACTIONS(2555), + [anon_sym_AMP_AMP] = ACTIONS(2555), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2555), + [anon_sym_and] = ACTIONS(2555), + [anon_sym_EQ_EQ] = ACTIONS(2555), + [anon_sym_BANG_EQ] = ACTIONS(2555), + [anon_sym_EQ_TILDE] = ACTIONS(2555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2555), + [anon_sym_LT_EQ] = ACTIONS(2555), + [anon_sym_GT_EQ] = ACTIONS(2555), + [anon_sym_PIPE_GT] = ACTIONS(2555), + [anon_sym_LT_LT_LT] = ACTIONS(2555), + [anon_sym_GT_GT_GT] = ACTIONS(2555), + [anon_sym_LT_LT_TILDE] = ACTIONS(2555), + [anon_sym_TILDE_GT_GT] = ACTIONS(2555), + [anon_sym_LT_TILDE] = ACTIONS(2555), + [anon_sym_TILDE_GT] = ACTIONS(2555), + [anon_sym_LT_TILDE_GT] = ACTIONS(2555), + [anon_sym_LT_PIPE_GT] = ACTIONS(2555), + [anon_sym_in] = ACTIONS(2555), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2555), + [anon_sym_SLASH_SLASH] = ACTIONS(2555), + [anon_sym_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2555), + [anon_sym_DOT_DOT] = ACTIONS(2555), + [anon_sym_LT_GT] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_STAR_STAR] = ACTIONS(2555), + [anon_sym_CARET_CARET] = ACTIONS(2555), + [anon_sym_DASH_GT] = ACTIONS(2555), + [anon_sym_DOT] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_end] = ACTIONS(2555), + [anon_sym_fn] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2553), + [anon_sym_LBRACK2] = ACTIONS(2553), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2553), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2553), + [sym__not_in] = ACTIONS(2553), + [sym__quoted_atom_start] = ACTIONS(2553), + }, + [965] = { + [aux_sym__terminator_token1] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2563), + [aux_sym_identifier_token1] = ACTIONS(2563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2563), + [sym_alias] = ACTIONS(2563), + [sym_integer] = ACTIONS(2563), + [sym_float] = ACTIONS(2563), + [sym_char] = ACTIONS(2563), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_nil] = ACTIONS(2563), + [sym_atom] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2563), + [anon_sym_SQUOTE] = ACTIONS(2563), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2563), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_GT] = ACTIONS(2563), + [anon_sym_PIPE] = ACTIONS(2563), + [anon_sym_SLASH] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_COMMA] = ACTIONS(2563), + [sym_keyword] = ACTIONS(2563), + [anon_sym_LT_LT] = ACTIONS(2563), + [anon_sym_PERCENT] = ACTIONS(2563), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_CARET] = ACTIONS(2563), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2563), + [anon_sym_LT_DASH] = ACTIONS(2563), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2563), + [anon_sym_when] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2563), + [anon_sym_EQ_GT] = ACTIONS(2563), + [anon_sym_EQ] = ACTIONS(2563), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_or] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2563), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2563), + [anon_sym_and] = ACTIONS(2563), + [anon_sym_EQ_EQ] = ACTIONS(2563), + [anon_sym_BANG_EQ] = ACTIONS(2563), + [anon_sym_EQ_TILDE] = ACTIONS(2563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2563), + [anon_sym_LT_EQ] = ACTIONS(2563), + [anon_sym_GT_EQ] = ACTIONS(2563), + [anon_sym_PIPE_GT] = ACTIONS(2563), + [anon_sym_LT_LT_LT] = ACTIONS(2563), + [anon_sym_GT_GT_GT] = ACTIONS(2563), + [anon_sym_LT_LT_TILDE] = ACTIONS(2563), + [anon_sym_TILDE_GT_GT] = ACTIONS(2563), + [anon_sym_LT_TILDE] = ACTIONS(2563), + [anon_sym_TILDE_GT] = ACTIONS(2563), + [anon_sym_LT_TILDE_GT] = ACTIONS(2563), + [anon_sym_LT_PIPE_GT] = ACTIONS(2563), + [anon_sym_in] = ACTIONS(2563), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2563), + [anon_sym_SLASH_SLASH] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2563), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2563), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [anon_sym_LT_GT] = ACTIONS(2563), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_STAR_STAR] = ACTIONS(2563), + [anon_sym_CARET_CARET] = ACTIONS(2563), + [anon_sym_DASH_GT] = ACTIONS(2563), + [anon_sym_DOT] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_end] = ACTIONS(2563), + [anon_sym_fn] = ACTIONS(2563), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2561), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2561), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2561), + [sym__not_in] = ACTIONS(2561), + [sym__quoted_atom_start] = ACTIONS(2561), + }, + [966] = { + [ts_builtin_sym_end] = ACTIONS(2569), + [aux_sym__terminator_token1] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2571), + [aux_sym_identifier_token1] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2571), + [sym_alias] = ACTIONS(2571), + [sym_integer] = ACTIONS(2571), + [sym_float] = ACTIONS(2571), + [sym_char] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2571), + [anon_sym_false] = ACTIONS(2571), + [anon_sym_nil] = ACTIONS(2571), + [sym_atom] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_COMMA] = ACTIONS(2571), + [sym_keyword] = ACTIONS(2571), + [anon_sym_LT_LT] = ACTIONS(2571), + [anon_sym_PERCENT] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_CARET] = ACTIONS(2571), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_LT_DASH] = ACTIONS(2571), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2571), + [anon_sym_when] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_EQ_GT] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(2571), + [anon_sym_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_or] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2571), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2571), + [anon_sym_and] = ACTIONS(2571), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_EQ_TILDE] = ACTIONS(2571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2571), + [anon_sym_LT_EQ] = ACTIONS(2571), + [anon_sym_GT_EQ] = ACTIONS(2571), + [anon_sym_PIPE_GT] = ACTIONS(2571), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT_GT] = ACTIONS(2571), + [anon_sym_LT_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_PIPE_GT] = ACTIONS(2571), + [anon_sym_in] = ACTIONS(2571), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2571), + [anon_sym_SLASH_SLASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_LT_GT] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_STAR_STAR] = ACTIONS(2571), + [anon_sym_CARET_CARET] = ACTIONS(2571), + [anon_sym_DASH_GT] = ACTIONS(2571), + [anon_sym_DOT] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_fn] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_LBRACK2] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2569), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2569), + [sym__not_in] = ACTIONS(2569), + [sym__quoted_atom_start] = ACTIONS(2569), + }, + [967] = { + [aux_sym__terminator_token1] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2571), + [aux_sym_identifier_token1] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2571), + [sym_alias] = ACTIONS(2571), + [sym_integer] = ACTIONS(2571), + [sym_float] = ACTIONS(2571), + [sym_char] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2571), + [anon_sym_false] = ACTIONS(2571), + [anon_sym_nil] = ACTIONS(2571), + [sym_atom] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_COMMA] = ACTIONS(2571), + [sym_keyword] = ACTIONS(2571), + [anon_sym_LT_LT] = ACTIONS(2571), + [anon_sym_PERCENT] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_CARET] = ACTIONS(2571), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_LT_DASH] = ACTIONS(2571), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2571), + [anon_sym_when] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_EQ_GT] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(2571), + [anon_sym_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_or] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2571), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2571), + [anon_sym_and] = ACTIONS(2571), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_EQ_TILDE] = ACTIONS(2571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2571), + [anon_sym_LT_EQ] = ACTIONS(2571), + [anon_sym_GT_EQ] = ACTIONS(2571), + [anon_sym_PIPE_GT] = ACTIONS(2571), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT_GT] = ACTIONS(2571), + [anon_sym_LT_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_PIPE_GT] = ACTIONS(2571), + [anon_sym_in] = ACTIONS(2571), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2571), + [anon_sym_SLASH_SLASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_LT_GT] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_STAR_STAR] = ACTIONS(2571), + [anon_sym_CARET_CARET] = ACTIONS(2571), + [anon_sym_DASH_GT] = ACTIONS(2571), + [anon_sym_DOT] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_end] = ACTIONS(2571), + [anon_sym_fn] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_LBRACK2] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2569), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2569), + [sym__not_in] = ACTIONS(2569), + [sym__quoted_atom_start] = ACTIONS(2569), + }, + [968] = { + [aux_sym__terminator_token1] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_RPAREN] = ACTIONS(2571), + [aux_sym_identifier_token1] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2571), + [sym_alias] = ACTIONS(2571), + [sym_integer] = ACTIONS(2571), + [sym_float] = ACTIONS(2571), + [sym_char] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2571), + [anon_sym_false] = ACTIONS(2571), + [anon_sym_nil] = ACTIONS(2571), + [sym_atom] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_COMMA] = ACTIONS(2571), + [sym_keyword] = ACTIONS(2571), + [anon_sym_LT_LT] = ACTIONS(2571), + [anon_sym_PERCENT] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_CARET] = ACTIONS(2571), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_LT_DASH] = ACTIONS(2571), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2571), + [anon_sym_when] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_EQ_GT] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(2571), + [anon_sym_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_or] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2571), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2571), + [anon_sym_and] = ACTIONS(2571), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_EQ_TILDE] = ACTIONS(2571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2571), + [anon_sym_LT_EQ] = ACTIONS(2571), + [anon_sym_GT_EQ] = ACTIONS(2571), + [anon_sym_PIPE_GT] = ACTIONS(2571), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT_GT] = ACTIONS(2571), + [anon_sym_LT_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_PIPE_GT] = ACTIONS(2571), + [anon_sym_in] = ACTIONS(2571), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2571), + [anon_sym_SLASH_SLASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_LT_GT] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_STAR_STAR] = ACTIONS(2571), + [anon_sym_CARET_CARET] = ACTIONS(2571), + [anon_sym_DASH_GT] = ACTIONS(2571), + [anon_sym_DOT] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_fn] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_LBRACK2] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2569), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2569), + [sym__not_in] = ACTIONS(2569), + [sym__quoted_atom_start] = ACTIONS(2569), + }, + [969] = { + [aux_sym__terminator_token1] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [970] = { + [aux_sym__terminator_token1] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [971] = { + [aux_sym__terminator_token1] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_RPAREN] = ACTIONS(2571), + [aux_sym_identifier_token1] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2571), + [sym_alias] = ACTIONS(2571), + [sym_integer] = ACTIONS(2571), + [sym_float] = ACTIONS(2571), + [sym_char] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2571), + [anon_sym_false] = ACTIONS(2571), + [anon_sym_nil] = ACTIONS(2571), + [sym_atom] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_COMMA] = ACTIONS(2571), + [sym_keyword] = ACTIONS(2571), + [anon_sym_LT_LT] = ACTIONS(2571), + [anon_sym_PERCENT] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_CARET] = ACTIONS(2571), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_LT_DASH] = ACTIONS(2571), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2571), + [anon_sym_when] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_EQ_GT] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(2571), + [anon_sym_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_or] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2571), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2571), + [anon_sym_and] = ACTIONS(2571), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_EQ_TILDE] = ACTIONS(2571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2571), + [anon_sym_LT_EQ] = ACTIONS(2571), + [anon_sym_GT_EQ] = ACTIONS(2571), + [anon_sym_PIPE_GT] = ACTIONS(2571), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT_GT] = ACTIONS(2571), + [anon_sym_LT_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_PIPE_GT] = ACTIONS(2571), + [anon_sym_in] = ACTIONS(2571), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2571), + [anon_sym_SLASH_SLASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_LT_GT] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_STAR_STAR] = ACTIONS(2571), + [anon_sym_CARET_CARET] = ACTIONS(2571), + [anon_sym_DASH_GT] = ACTIONS(2571), + [anon_sym_DOT] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_fn] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_LBRACK2] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2569), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2569), + [sym__not_in] = ACTIONS(2569), + [sym__quoted_atom_start] = ACTIONS(2569), + }, + [972] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_RPAREN] = ACTIONS(2579), + [aux_sym_identifier_token1] = ACTIONS(2579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2579), + [sym_alias] = ACTIONS(2579), + [sym_integer] = ACTIONS(2579), + [sym_float] = ACTIONS(2579), + [sym_char] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2579), + [anon_sym_false] = ACTIONS(2579), + [anon_sym_nil] = ACTIONS(2579), + [sym_atom] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_RBRACE] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_RBRACK] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2579), + [anon_sym_GT] = ACTIONS(2579), + [anon_sym_PIPE] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_COMMA] = ACTIONS(2579), + [sym_keyword] = ACTIONS(2579), + [anon_sym_LT_LT] = ACTIONS(2579), + [anon_sym_PERCENT] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_CARET] = ACTIONS(2579), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2579), + [anon_sym_not] = ACTIONS(2579), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_LT_DASH] = ACTIONS(2579), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2579), + [anon_sym_when] = ACTIONS(2579), + [anon_sym_COLON_COLON] = ACTIONS(2579), + [anon_sym_EQ_GT] = ACTIONS(2579), + [anon_sym_EQ] = ACTIONS(2579), + [anon_sym_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_or] = ACTIONS(2579), + [anon_sym_AMP_AMP] = ACTIONS(2579), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2579), + [anon_sym_and] = ACTIONS(2579), + [anon_sym_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ] = ACTIONS(2579), + [anon_sym_EQ_TILDE] = ACTIONS(2579), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2579), + [anon_sym_LT_EQ] = ACTIONS(2579), + [anon_sym_GT_EQ] = ACTIONS(2579), + [anon_sym_PIPE_GT] = ACTIONS(2579), + [anon_sym_LT_LT_LT] = ACTIONS(2579), + [anon_sym_GT_GT_GT] = ACTIONS(2579), + [anon_sym_LT_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_PIPE_GT] = ACTIONS(2579), + [anon_sym_in] = ACTIONS(2579), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2579), + [anon_sym_SLASH_SLASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2579), + [anon_sym_DOT_DOT] = ACTIONS(2579), + [anon_sym_LT_GT] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_STAR_STAR] = ACTIONS(2579), + [anon_sym_CARET_CARET] = ACTIONS(2579), + [anon_sym_DASH_GT] = ACTIONS(2579), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_do] = ACTIONS(2579), + [anon_sym_fn] = ACTIONS(2579), + [anon_sym_LPAREN2] = ACTIONS(2577), + [anon_sym_LBRACK2] = ACTIONS(2577), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2577), + [sym__not_in] = ACTIONS(2577), + [sym__quoted_atom_start] = ACTIONS(2577), + }, + [973] = { + [aux_sym__terminator_token1] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [974] = { + [aux_sym__terminator_token1] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [anon_sym_RPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [975] = { + [aux_sym__terminator_token1] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2571), + [anon_sym_RPAREN] = ACTIONS(2571), + [aux_sym_identifier_token1] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2571), + [sym_alias] = ACTIONS(2571), + [sym_integer] = ACTIONS(2571), + [sym_float] = ACTIONS(2571), + [sym_char] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2571), + [anon_sym_false] = ACTIONS(2571), + [anon_sym_nil] = ACTIONS(2571), + [sym_atom] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_COMMA] = ACTIONS(2571), + [sym_keyword] = ACTIONS(2571), + [anon_sym_LT_LT] = ACTIONS(2571), + [anon_sym_PERCENT] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_CARET] = ACTIONS(2571), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_LT_DASH] = ACTIONS(2571), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2571), + [anon_sym_when] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_EQ_GT] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(2571), + [anon_sym_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_or] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2571), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2571), + [anon_sym_and] = ACTIONS(2571), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_EQ_TILDE] = ACTIONS(2571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2571), + [anon_sym_LT_EQ] = ACTIONS(2571), + [anon_sym_GT_EQ] = ACTIONS(2571), + [anon_sym_PIPE_GT] = ACTIONS(2571), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT_GT] = ACTIONS(2571), + [anon_sym_LT_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_PIPE_GT] = ACTIONS(2571), + [anon_sym_in] = ACTIONS(2571), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2571), + [anon_sym_SLASH_SLASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_LT_GT] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_STAR_STAR] = ACTIONS(2571), + [anon_sym_CARET_CARET] = ACTIONS(2571), + [anon_sym_DASH_GT] = ACTIONS(2571), + [anon_sym_DOT] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_fn] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_LBRACK2] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2569), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2569), + [sym__not_in] = ACTIONS(2569), + [sym__quoted_atom_start] = ACTIONS(2569), + }, + [976] = { + [aux_sym__terminator_token1] = ACTIONS(2561), + [anon_sym_SEMI] = ACTIONS(2563), + [anon_sym_LPAREN] = ACTIONS(2563), + [anon_sym_RPAREN] = ACTIONS(2563), + [aux_sym_identifier_token1] = ACTIONS(2563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2563), + [sym_alias] = ACTIONS(2563), + [sym_integer] = ACTIONS(2563), + [sym_float] = ACTIONS(2563), + [sym_char] = ACTIONS(2563), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_nil] = ACTIONS(2563), + [sym_atom] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2563), + [anon_sym_SQUOTE] = ACTIONS(2563), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2563), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_GT] = ACTIONS(2563), + [anon_sym_PIPE] = ACTIONS(2563), + [anon_sym_SLASH] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_COMMA] = ACTIONS(2563), + [sym_keyword] = ACTIONS(2563), + [anon_sym_LT_LT] = ACTIONS(2563), + [anon_sym_PERCENT] = ACTIONS(2563), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_CARET] = ACTIONS(2563), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2563), + [anon_sym_LT_DASH] = ACTIONS(2563), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2563), + [anon_sym_when] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2563), + [anon_sym_EQ_GT] = ACTIONS(2563), + [anon_sym_EQ] = ACTIONS(2563), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_or] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2563), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2563), + [anon_sym_and] = ACTIONS(2563), + [anon_sym_EQ_EQ] = ACTIONS(2563), + [anon_sym_BANG_EQ] = ACTIONS(2563), + [anon_sym_EQ_TILDE] = ACTIONS(2563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2563), + [anon_sym_LT_EQ] = ACTIONS(2563), + [anon_sym_GT_EQ] = ACTIONS(2563), + [anon_sym_PIPE_GT] = ACTIONS(2563), + [anon_sym_LT_LT_LT] = ACTIONS(2563), + [anon_sym_GT_GT_GT] = ACTIONS(2563), + [anon_sym_LT_LT_TILDE] = ACTIONS(2563), + [anon_sym_TILDE_GT_GT] = ACTIONS(2563), + [anon_sym_LT_TILDE] = ACTIONS(2563), + [anon_sym_TILDE_GT] = ACTIONS(2563), + [anon_sym_LT_TILDE_GT] = ACTIONS(2563), + [anon_sym_LT_PIPE_GT] = ACTIONS(2563), + [anon_sym_in] = ACTIONS(2563), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2563), + [anon_sym_SLASH_SLASH] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2563), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2563), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [anon_sym_LT_GT] = ACTIONS(2563), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_STAR_STAR] = ACTIONS(2563), + [anon_sym_CARET_CARET] = ACTIONS(2563), + [anon_sym_DASH_GT] = ACTIONS(2563), + [anon_sym_DOT] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_fn] = ACTIONS(2563), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2561), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2561), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2561), + [sym__not_in] = ACTIONS(2561), + [sym__quoted_atom_start] = ACTIONS(2561), + }, + [977] = { + [aux_sym__terminator_token1] = ACTIONS(2553), + [anon_sym_SEMI] = ACTIONS(2555), + [anon_sym_LPAREN] = ACTIONS(2555), + [anon_sym_RPAREN] = ACTIONS(2555), + [aux_sym_identifier_token1] = ACTIONS(2555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2555), + [sym_alias] = ACTIONS(2555), + [sym_integer] = ACTIONS(2555), + [sym_float] = ACTIONS(2555), + [sym_char] = ACTIONS(2555), + [anon_sym_true] = ACTIONS(2555), + [anon_sym_false] = ACTIONS(2555), + [anon_sym_nil] = ACTIONS(2555), + [sym_atom] = ACTIONS(2555), + [anon_sym_DQUOTE] = ACTIONS(2555), + [anon_sym_SQUOTE] = ACTIONS(2555), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2555), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_LT] = ACTIONS(2555), + [anon_sym_GT] = ACTIONS(2555), + [anon_sym_PIPE] = ACTIONS(2555), + [anon_sym_SLASH] = ACTIONS(2555), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_COMMA] = ACTIONS(2555), + [sym_keyword] = ACTIONS(2555), + [anon_sym_LT_LT] = ACTIONS(2555), + [anon_sym_PERCENT] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_BANG] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_AT] = ACTIONS(2555), + [anon_sym_LT_DASH] = ACTIONS(2555), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2555), + [anon_sym_when] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2555), + [anon_sym_EQ_GT] = ACTIONS(2555), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_PIPE_PIPE] = ACTIONS(2555), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2555), + [anon_sym_or] = ACTIONS(2555), + [anon_sym_AMP_AMP] = ACTIONS(2555), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2555), + [anon_sym_and] = ACTIONS(2555), + [anon_sym_EQ_EQ] = ACTIONS(2555), + [anon_sym_BANG_EQ] = ACTIONS(2555), + [anon_sym_EQ_TILDE] = ACTIONS(2555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2555), + [anon_sym_LT_EQ] = ACTIONS(2555), + [anon_sym_GT_EQ] = ACTIONS(2555), + [anon_sym_PIPE_GT] = ACTIONS(2555), + [anon_sym_LT_LT_LT] = ACTIONS(2555), + [anon_sym_GT_GT_GT] = ACTIONS(2555), + [anon_sym_LT_LT_TILDE] = ACTIONS(2555), + [anon_sym_TILDE_GT_GT] = ACTIONS(2555), + [anon_sym_LT_TILDE] = ACTIONS(2555), + [anon_sym_TILDE_GT] = ACTIONS(2555), + [anon_sym_LT_TILDE_GT] = ACTIONS(2555), + [anon_sym_LT_PIPE_GT] = ACTIONS(2555), + [anon_sym_in] = ACTIONS(2555), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2555), + [anon_sym_SLASH_SLASH] = ACTIONS(2555), + [anon_sym_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2555), + [anon_sym_DOT_DOT] = ACTIONS(2555), + [anon_sym_LT_GT] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_STAR_STAR] = ACTIONS(2555), + [anon_sym_CARET_CARET] = ACTIONS(2555), + [anon_sym_DASH_GT] = ACTIONS(2555), + [anon_sym_DOT] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_fn] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2553), + [anon_sym_LBRACK2] = ACTIONS(2553), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2553), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2553), + [sym__not_in] = ACTIONS(2553), + [sym__quoted_atom_start] = ACTIONS(2553), + }, + [978] = { + [aux_sym__terminator_token1] = ACTIONS(2557), + [anon_sym_SEMI] = ACTIONS(2559), + [anon_sym_LPAREN] = ACTIONS(2559), + [anon_sym_RPAREN] = ACTIONS(2559), + [aux_sym_identifier_token1] = ACTIONS(2559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [sym_alias] = ACTIONS(2559), + [sym_integer] = ACTIONS(2559), + [sym_float] = ACTIONS(2559), + [sym_char] = ACTIONS(2559), + [anon_sym_true] = ACTIONS(2559), + [anon_sym_false] = ACTIONS(2559), + [anon_sym_nil] = ACTIONS(2559), + [sym_atom] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(2559), + [anon_sym_SQUOTE] = ACTIONS(2559), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2559), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_LT] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2559), + [anon_sym_PIPE] = ACTIONS(2559), + [anon_sym_SLASH] = ACTIONS(2559), + [anon_sym_TILDE] = ACTIONS(2559), + [anon_sym_COMMA] = ACTIONS(2559), + [sym_keyword] = ACTIONS(2559), + [anon_sym_LT_LT] = ACTIONS(2559), + [anon_sym_PERCENT] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_CARET] = ACTIONS(2559), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AT] = ACTIONS(2559), + [anon_sym_LT_DASH] = ACTIONS(2559), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2559), + [anon_sym_when] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2559), + [anon_sym_EQ_GT] = ACTIONS(2559), + [anon_sym_EQ] = ACTIONS(2559), + [anon_sym_PIPE_PIPE] = ACTIONS(2559), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2559), + [anon_sym_or] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2559), + [anon_sym_and] = ACTIONS(2559), + [anon_sym_EQ_EQ] = ACTIONS(2559), + [anon_sym_BANG_EQ] = ACTIONS(2559), + [anon_sym_EQ_TILDE] = ACTIONS(2559), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2559), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2559), + [anon_sym_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_EQ] = ACTIONS(2559), + [anon_sym_PIPE_GT] = ACTIONS(2559), + [anon_sym_LT_LT_LT] = ACTIONS(2559), + [anon_sym_GT_GT_GT] = ACTIONS(2559), + [anon_sym_LT_LT_TILDE] = ACTIONS(2559), + [anon_sym_TILDE_GT_GT] = ACTIONS(2559), + [anon_sym_LT_TILDE] = ACTIONS(2559), + [anon_sym_TILDE_GT] = ACTIONS(2559), + [anon_sym_LT_TILDE_GT] = ACTIONS(2559), + [anon_sym_LT_PIPE_GT] = ACTIONS(2559), + [anon_sym_in] = ACTIONS(2559), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2559), + [anon_sym_SLASH_SLASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2559), + [anon_sym_DOT_DOT] = ACTIONS(2559), + [anon_sym_LT_GT] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_STAR_STAR] = ACTIONS(2559), + [anon_sym_CARET_CARET] = ACTIONS(2559), + [anon_sym_DASH_GT] = ACTIONS(2559), + [anon_sym_DOT] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_fn] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_LBRACK2] = ACTIONS(2557), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2557), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2557), + [sym__not_in] = ACTIONS(2557), + [sym__quoted_atom_start] = ACTIONS(2557), + }, + [979] = { + [aux_sym__terminator_token1] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_end] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [980] = { + [aux_sym__terminator_token1] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2571), + [aux_sym_identifier_token1] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2571), + [sym_alias] = ACTIONS(2571), + [sym_integer] = ACTIONS(2571), + [sym_float] = ACTIONS(2571), + [sym_char] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2571), + [anon_sym_false] = ACTIONS(2571), + [anon_sym_nil] = ACTIONS(2571), + [sym_atom] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_COMMA] = ACTIONS(2571), + [sym_keyword] = ACTIONS(2571), + [anon_sym_LT_LT] = ACTIONS(2571), + [anon_sym_PERCENT] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_CARET] = ACTIONS(2571), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_LT_DASH] = ACTIONS(2571), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2571), + [anon_sym_when] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_EQ_GT] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(2571), + [anon_sym_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_or] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2571), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2571), + [anon_sym_and] = ACTIONS(2571), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_EQ_TILDE] = ACTIONS(2571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2571), + [anon_sym_LT_EQ] = ACTIONS(2571), + [anon_sym_GT_EQ] = ACTIONS(2571), + [anon_sym_PIPE_GT] = ACTIONS(2571), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT_GT] = ACTIONS(2571), + [anon_sym_LT_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_PIPE_GT] = ACTIONS(2571), + [anon_sym_in] = ACTIONS(2571), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2571), + [anon_sym_SLASH_SLASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_LT_GT] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_STAR_STAR] = ACTIONS(2571), + [anon_sym_CARET_CARET] = ACTIONS(2571), + [anon_sym_DASH_GT] = ACTIONS(2571), + [anon_sym_DOT] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_end] = ACTIONS(2571), + [anon_sym_fn] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_LBRACK2] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2569), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2569), + [sym__not_in] = ACTIONS(2569), + [sym__quoted_atom_start] = ACTIONS(2569), + }, + [981] = { + [aux_sym__terminator_token1] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_end] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [982] = { + [aux_sym__terminator_token1] = ACTIONS(2549), + [anon_sym_SEMI] = ACTIONS(2551), + [anon_sym_LPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_end] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [983] = { + [aux_sym__terminator_token1] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_LPAREN] = ACTIONS(2579), + [aux_sym_identifier_token1] = ACTIONS(2579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2579), + [sym_alias] = ACTIONS(2579), + [sym_integer] = ACTIONS(2579), + [sym_float] = ACTIONS(2579), + [sym_char] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2579), + [anon_sym_false] = ACTIONS(2579), + [anon_sym_nil] = ACTIONS(2579), + [sym_atom] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2579), + [anon_sym_GT] = ACTIONS(2579), + [anon_sym_PIPE] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_COMMA] = ACTIONS(2579), + [sym_keyword] = ACTIONS(2579), + [anon_sym_LT_LT] = ACTIONS(2579), + [anon_sym_PERCENT] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_CARET] = ACTIONS(2579), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2579), + [anon_sym_not] = ACTIONS(2579), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_LT_DASH] = ACTIONS(2579), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2579), + [anon_sym_when] = ACTIONS(2579), + [anon_sym_COLON_COLON] = ACTIONS(2579), + [anon_sym_EQ_GT] = ACTIONS(2579), + [anon_sym_EQ] = ACTIONS(2579), + [anon_sym_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_or] = ACTIONS(2579), + [anon_sym_AMP_AMP] = ACTIONS(2579), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2579), + [anon_sym_and] = ACTIONS(2579), + [anon_sym_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ] = ACTIONS(2579), + [anon_sym_EQ_TILDE] = ACTIONS(2579), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2579), + [anon_sym_LT_EQ] = ACTIONS(2579), + [anon_sym_GT_EQ] = ACTIONS(2579), + [anon_sym_PIPE_GT] = ACTIONS(2579), + [anon_sym_LT_LT_LT] = ACTIONS(2579), + [anon_sym_GT_GT_GT] = ACTIONS(2579), + [anon_sym_LT_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_PIPE_GT] = ACTIONS(2579), + [anon_sym_in] = ACTIONS(2579), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2579), + [anon_sym_SLASH_SLASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2579), + [anon_sym_DOT_DOT] = ACTIONS(2579), + [anon_sym_LT_GT] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_STAR_STAR] = ACTIONS(2579), + [anon_sym_CARET_CARET] = ACTIONS(2579), + [anon_sym_DASH_GT] = ACTIONS(2579), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_do] = ACTIONS(2579), + [anon_sym_end] = ACTIONS(2579), + [anon_sym_fn] = ACTIONS(2579), + [anon_sym_LPAREN2] = ACTIONS(2577), + [anon_sym_LBRACK2] = ACTIONS(2577), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2577), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2577), + [sym__not_in] = ACTIONS(2577), + [sym__quoted_atom_start] = ACTIONS(2577), + }, + [984] = { + [aux_sym__terminator_token1] = ACTIONS(2565), + [anon_sym_SEMI] = ACTIONS(2567), + [anon_sym_LPAREN] = ACTIONS(2567), + [anon_sym_RPAREN] = ACTIONS(2567), + [aux_sym_identifier_token1] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2567), + [sym_alias] = ACTIONS(2567), + [sym_integer] = ACTIONS(2567), + [sym_float] = ACTIONS(2567), + [sym_char] = ACTIONS(2567), + [anon_sym_true] = ACTIONS(2567), + [anon_sym_false] = ACTIONS(2567), + [anon_sym_nil] = ACTIONS(2567), + [sym_atom] = ACTIONS(2567), + [anon_sym_DQUOTE] = ACTIONS(2567), + [anon_sym_SQUOTE] = ACTIONS(2567), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2567), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_LT] = ACTIONS(2567), + [anon_sym_GT] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_SLASH] = ACTIONS(2567), + [anon_sym_TILDE] = ACTIONS(2567), + [anon_sym_COMMA] = ACTIONS(2567), + [sym_keyword] = ACTIONS(2567), + [anon_sym_LT_LT] = ACTIONS(2567), + [anon_sym_PERCENT] = ACTIONS(2567), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(2567), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2567), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2567), + [anon_sym_AT] = ACTIONS(2567), + [anon_sym_LT_DASH] = ACTIONS(2567), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2567), + [anon_sym_when] = ACTIONS(2567), + [anon_sym_COLON_COLON] = ACTIONS(2567), + [anon_sym_EQ_GT] = ACTIONS(2567), + [anon_sym_EQ] = ACTIONS(2567), + [anon_sym_PIPE_PIPE] = ACTIONS(2567), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2567), + [anon_sym_or] = ACTIONS(2567), + [anon_sym_AMP_AMP] = ACTIONS(2567), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2567), + [anon_sym_and] = ACTIONS(2567), + [anon_sym_EQ_EQ] = ACTIONS(2567), + [anon_sym_BANG_EQ] = ACTIONS(2567), + [anon_sym_EQ_TILDE] = ACTIONS(2567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2567), + [anon_sym_LT_EQ] = ACTIONS(2567), + [anon_sym_GT_EQ] = ACTIONS(2567), + [anon_sym_PIPE_GT] = ACTIONS(2567), + [anon_sym_LT_LT_LT] = ACTIONS(2567), + [anon_sym_GT_GT_GT] = ACTIONS(2567), + [anon_sym_LT_LT_TILDE] = ACTIONS(2567), + [anon_sym_TILDE_GT_GT] = ACTIONS(2567), + [anon_sym_LT_TILDE] = ACTIONS(2567), + [anon_sym_TILDE_GT] = ACTIONS(2567), + [anon_sym_LT_TILDE_GT] = ACTIONS(2567), + [anon_sym_LT_PIPE_GT] = ACTIONS(2567), + [anon_sym_in] = ACTIONS(2567), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2567), + [anon_sym_SLASH_SLASH] = ACTIONS(2567), + [anon_sym_PLUS_PLUS] = ACTIONS(2567), + [anon_sym_DASH_DASH] = ACTIONS(2567), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2567), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2567), + [anon_sym_DOT_DOT] = ACTIONS(2567), + [anon_sym_LT_GT] = ACTIONS(2567), + [anon_sym_STAR] = ACTIONS(2567), + [anon_sym_STAR_STAR] = ACTIONS(2567), + [anon_sym_CARET_CARET] = ACTIONS(2567), + [anon_sym_DASH_GT] = ACTIONS(2567), + [anon_sym_DOT] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2567), + [anon_sym_fn] = ACTIONS(2567), + [anon_sym_LPAREN2] = ACTIONS(2565), + [anon_sym_LBRACK2] = ACTIONS(2565), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2565), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2565), + [sym__not_in] = ACTIONS(2565), + [sym__quoted_atom_start] = ACTIONS(2565), + }, + [985] = { + [aux_sym__terminator_token1] = ACTIONS(2573), + [anon_sym_SEMI] = ACTIONS(2575), + [anon_sym_LPAREN] = ACTIONS(2575), + [anon_sym_RPAREN] = ACTIONS(2575), + [aux_sym_identifier_token1] = ACTIONS(2575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2575), + [sym_alias] = ACTIONS(2575), + [sym_integer] = ACTIONS(2575), + [sym_float] = ACTIONS(2575), + [sym_char] = ACTIONS(2575), + [anon_sym_true] = ACTIONS(2575), + [anon_sym_false] = ACTIONS(2575), + [anon_sym_nil] = ACTIONS(2575), + [sym_atom] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2575), + [anon_sym_SQUOTE] = ACTIONS(2575), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2575), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_LT] = ACTIONS(2575), + [anon_sym_GT] = ACTIONS(2575), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_SLASH] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_COMMA] = ACTIONS(2575), + [sym_keyword] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2575), + [anon_sym_PERCENT] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2575), + [anon_sym_DASH] = ACTIONS(2575), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_CARET] = ACTIONS(2575), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2575), + [anon_sym_not] = ACTIONS(2575), + [anon_sym_AT] = ACTIONS(2575), + [anon_sym_LT_DASH] = ACTIONS(2575), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2575), + [anon_sym_when] = ACTIONS(2575), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_EQ_GT] = ACTIONS(2575), + [anon_sym_EQ] = ACTIONS(2575), + [anon_sym_PIPE_PIPE] = ACTIONS(2575), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2575), + [anon_sym_or] = ACTIONS(2575), + [anon_sym_AMP_AMP] = ACTIONS(2575), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2575), + [anon_sym_and] = ACTIONS(2575), + [anon_sym_EQ_EQ] = ACTIONS(2575), + [anon_sym_BANG_EQ] = ACTIONS(2575), + [anon_sym_EQ_TILDE] = ACTIONS(2575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2575), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_PIPE_GT] = ACTIONS(2575), + [anon_sym_LT_LT_LT] = ACTIONS(2575), + [anon_sym_GT_GT_GT] = ACTIONS(2575), + [anon_sym_LT_LT_TILDE] = ACTIONS(2575), + [anon_sym_TILDE_GT_GT] = ACTIONS(2575), + [anon_sym_LT_TILDE] = ACTIONS(2575), + [anon_sym_TILDE_GT] = ACTIONS(2575), + [anon_sym_LT_TILDE_GT] = ACTIONS(2575), + [anon_sym_LT_PIPE_GT] = ACTIONS(2575), + [anon_sym_in] = ACTIONS(2575), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2575), + [anon_sym_SLASH_SLASH] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2575), + [anon_sym_DOT_DOT] = ACTIONS(2575), + [anon_sym_LT_GT] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_STAR_STAR] = ACTIONS(2575), + [anon_sym_CARET_CARET] = ACTIONS(2575), + [anon_sym_DASH_GT] = ACTIONS(2575), + [anon_sym_DOT] = ACTIONS(2575), + [anon_sym_do] = ACTIONS(2575), + [anon_sym_fn] = ACTIONS(2575), + [anon_sym_LPAREN2] = ACTIONS(2573), + [anon_sym_LBRACK2] = ACTIONS(2573), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2573), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2573), + [sym__not_in] = ACTIONS(2573), + [sym__quoted_atom_start] = ACTIONS(2573), + }, + [986] = { + [aux_sym__terminator_token1] = ACTIONS(2569), + [anon_sym_SEMI] = ACTIONS(2571), + [anon_sym_LPAREN] = ACTIONS(2571), + [aux_sym_identifier_token1] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2571), + [sym_alias] = ACTIONS(2571), + [sym_integer] = ACTIONS(2571), + [sym_float] = ACTIONS(2571), + [sym_char] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2571), + [anon_sym_false] = ACTIONS(2571), + [anon_sym_nil] = ACTIONS(2571), + [sym_atom] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_COMMA] = ACTIONS(2571), + [sym_keyword] = ACTIONS(2571), + [anon_sym_LT_LT] = ACTIONS(2571), + [anon_sym_PERCENT] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_CARET] = ACTIONS(2571), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_LT_DASH] = ACTIONS(2571), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2571), + [anon_sym_when] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_EQ_GT] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(2571), + [anon_sym_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_or] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2571), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2571), + [anon_sym_and] = ACTIONS(2571), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_EQ_TILDE] = ACTIONS(2571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2571), + [anon_sym_LT_EQ] = ACTIONS(2571), + [anon_sym_GT_EQ] = ACTIONS(2571), + [anon_sym_PIPE_GT] = ACTIONS(2571), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT_GT] = ACTIONS(2571), + [anon_sym_LT_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_PIPE_GT] = ACTIONS(2571), + [anon_sym_in] = ACTIONS(2571), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2571), + [anon_sym_SLASH_SLASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_LT_GT] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_STAR_STAR] = ACTIONS(2571), + [anon_sym_CARET_CARET] = ACTIONS(2571), + [anon_sym_DASH_GT] = ACTIONS(2571), + [anon_sym_DOT] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_end] = ACTIONS(2571), + [anon_sym_fn] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_LBRACK2] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2569), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2569), + [sym__not_in] = ACTIONS(2569), + [sym__quoted_atom_start] = ACTIONS(2569), + }, + [987] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2571), + [aux_sym_identifier_token1] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2571), + [sym_alias] = ACTIONS(2571), + [sym_integer] = ACTIONS(2571), + [sym_float] = ACTIONS(2571), + [sym_char] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2571), + [anon_sym_false] = ACTIONS(2571), + [anon_sym_nil] = ACTIONS(2571), + [sym_atom] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_COMMA] = ACTIONS(2571), + [sym_keyword] = ACTIONS(2571), + [anon_sym_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT] = ACTIONS(2571), + [anon_sym_PERCENT] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_CARET] = ACTIONS(2571), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_LT_DASH] = ACTIONS(2571), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2571), + [anon_sym_when] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_EQ_GT] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(2571), + [anon_sym_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_or] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2571), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2571), + [anon_sym_and] = ACTIONS(2571), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_EQ_TILDE] = ACTIONS(2571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2571), + [anon_sym_LT_EQ] = ACTIONS(2571), + [anon_sym_GT_EQ] = ACTIONS(2571), + [anon_sym_PIPE_GT] = ACTIONS(2571), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT_GT] = ACTIONS(2571), + [anon_sym_LT_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_PIPE_GT] = ACTIONS(2571), + [anon_sym_in] = ACTIONS(2571), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2571), + [anon_sym_SLASH_SLASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_LT_GT] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_STAR_STAR] = ACTIONS(2571), + [anon_sym_CARET_CARET] = ACTIONS(2571), + [anon_sym_DASH_GT] = ACTIONS(2571), + [anon_sym_DOT] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_fn] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_LBRACK2] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2569), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2569), + [sym__not_in] = ACTIONS(2569), + [sym__quoted_atom_start] = ACTIONS(2569), + }, + [988] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2575), + [aux_sym_identifier_token1] = ACTIONS(2575), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2575), + [sym_alias] = ACTIONS(2575), + [sym_integer] = ACTIONS(2575), + [sym_float] = ACTIONS(2575), + [sym_char] = ACTIONS(2575), + [anon_sym_true] = ACTIONS(2575), + [anon_sym_false] = ACTIONS(2575), + [anon_sym_nil] = ACTIONS(2575), + [sym_atom] = ACTIONS(2575), + [anon_sym_DQUOTE] = ACTIONS(2575), + [anon_sym_SQUOTE] = ACTIONS(2575), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2575), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2575), + [anon_sym_LBRACE] = ACTIONS(2575), + [anon_sym_LBRACK] = ACTIONS(2575), + [anon_sym_LT] = ACTIONS(2575), + [anon_sym_GT] = ACTIONS(2575), + [anon_sym_PIPE] = ACTIONS(2575), + [anon_sym_SLASH] = ACTIONS(2575), + [anon_sym_TILDE] = ACTIONS(2575), + [anon_sym_COMMA] = ACTIONS(2575), + [sym_keyword] = ACTIONS(2575), + [anon_sym_LT_LT] = ACTIONS(2575), + [anon_sym_GT_GT] = ACTIONS(2575), + [anon_sym_PERCENT] = ACTIONS(2575), + [anon_sym_AMP] = ACTIONS(2575), + [anon_sym_PLUS] = ACTIONS(2575), + [anon_sym_DASH] = ACTIONS(2575), + [anon_sym_BANG] = ACTIONS(2575), + [anon_sym_CARET] = ACTIONS(2575), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2575), + [anon_sym_not] = ACTIONS(2575), + [anon_sym_AT] = ACTIONS(2575), + [anon_sym_LT_DASH] = ACTIONS(2575), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2575), + [anon_sym_when] = ACTIONS(2575), + [anon_sym_COLON_COLON] = ACTIONS(2575), + [anon_sym_EQ_GT] = ACTIONS(2575), + [anon_sym_EQ] = ACTIONS(2575), + [anon_sym_PIPE_PIPE] = ACTIONS(2575), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2575), + [anon_sym_or] = ACTIONS(2575), + [anon_sym_AMP_AMP] = ACTIONS(2575), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2575), + [anon_sym_and] = ACTIONS(2575), + [anon_sym_EQ_EQ] = ACTIONS(2575), + [anon_sym_BANG_EQ] = ACTIONS(2575), + [anon_sym_EQ_TILDE] = ACTIONS(2575), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2575), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2575), + [anon_sym_LT_EQ] = ACTIONS(2575), + [anon_sym_GT_EQ] = ACTIONS(2575), + [anon_sym_PIPE_GT] = ACTIONS(2575), + [anon_sym_LT_LT_LT] = ACTIONS(2575), + [anon_sym_GT_GT_GT] = ACTIONS(2575), + [anon_sym_LT_LT_TILDE] = ACTIONS(2575), + [anon_sym_TILDE_GT_GT] = ACTIONS(2575), + [anon_sym_LT_TILDE] = ACTIONS(2575), + [anon_sym_TILDE_GT] = ACTIONS(2575), + [anon_sym_LT_TILDE_GT] = ACTIONS(2575), + [anon_sym_LT_PIPE_GT] = ACTIONS(2575), + [anon_sym_in] = ACTIONS(2575), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2575), + [anon_sym_SLASH_SLASH] = ACTIONS(2575), + [anon_sym_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_DASH_DASH] = ACTIONS(2575), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2575), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2575), + [anon_sym_DOT_DOT] = ACTIONS(2575), + [anon_sym_LT_GT] = ACTIONS(2575), + [anon_sym_STAR] = ACTIONS(2575), + [anon_sym_STAR_STAR] = ACTIONS(2575), + [anon_sym_CARET_CARET] = ACTIONS(2575), + [anon_sym_DASH_GT] = ACTIONS(2575), + [anon_sym_DOT] = ACTIONS(2575), + [anon_sym_do] = ACTIONS(2575), + [anon_sym_fn] = ACTIONS(2575), + [anon_sym_LPAREN2] = ACTIONS(2573), + [anon_sym_LBRACK2] = ACTIONS(2573), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2573), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2573), + [sym__not_in] = ACTIONS(2573), + [sym__quoted_atom_start] = ACTIONS(2573), + }, + [989] = { + [aux_sym__terminator_token1] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_LPAREN] = ACTIONS(2579), + [anon_sym_RPAREN] = ACTIONS(2579), + [aux_sym_identifier_token1] = ACTIONS(2579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2579), + [sym_alias] = ACTIONS(2579), + [sym_integer] = ACTIONS(2579), + [sym_float] = ACTIONS(2579), + [sym_char] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2579), + [anon_sym_false] = ACTIONS(2579), + [anon_sym_nil] = ACTIONS(2579), + [sym_atom] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2579), + [anon_sym_GT] = ACTIONS(2579), + [anon_sym_PIPE] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_COMMA] = ACTIONS(2579), + [sym_keyword] = ACTIONS(2579), + [anon_sym_LT_LT] = ACTIONS(2579), + [anon_sym_PERCENT] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_CARET] = ACTIONS(2579), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2579), + [anon_sym_not] = ACTIONS(2579), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_LT_DASH] = ACTIONS(2579), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2579), + [anon_sym_when] = ACTIONS(2579), + [anon_sym_COLON_COLON] = ACTIONS(2579), + [anon_sym_EQ_GT] = ACTIONS(2579), + [anon_sym_EQ] = ACTIONS(2579), + [anon_sym_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_or] = ACTIONS(2579), + [anon_sym_AMP_AMP] = ACTIONS(2579), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2579), + [anon_sym_and] = ACTIONS(2579), + [anon_sym_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ] = ACTIONS(2579), + [anon_sym_EQ_TILDE] = ACTIONS(2579), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2579), + [anon_sym_LT_EQ] = ACTIONS(2579), + [anon_sym_GT_EQ] = ACTIONS(2579), + [anon_sym_PIPE_GT] = ACTIONS(2579), + [anon_sym_LT_LT_LT] = ACTIONS(2579), + [anon_sym_GT_GT_GT] = ACTIONS(2579), + [anon_sym_LT_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_PIPE_GT] = ACTIONS(2579), + [anon_sym_in] = ACTIONS(2579), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2579), + [anon_sym_SLASH_SLASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2579), + [anon_sym_DOT_DOT] = ACTIONS(2579), + [anon_sym_LT_GT] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_STAR_STAR] = ACTIONS(2579), + [anon_sym_CARET_CARET] = ACTIONS(2579), + [anon_sym_DASH_GT] = ACTIONS(2579), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_do] = ACTIONS(2579), + [anon_sym_fn] = ACTIONS(2579), + [anon_sym_LPAREN2] = ACTIONS(2577), + [anon_sym_LBRACK2] = ACTIONS(2577), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2577), + [sym__not_in] = ACTIONS(2577), + [sym__quoted_atom_start] = ACTIONS(2577), + }, + [990] = { + [aux_sym__terminator_token1] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_LPAREN] = ACTIONS(2579), + [aux_sym_identifier_token1] = ACTIONS(2579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2579), + [sym_alias] = ACTIONS(2579), + [sym_integer] = ACTIONS(2579), + [sym_float] = ACTIONS(2579), + [sym_char] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2579), + [anon_sym_false] = ACTIONS(2579), + [anon_sym_nil] = ACTIONS(2579), + [sym_atom] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2579), + [anon_sym_GT] = ACTIONS(2579), + [anon_sym_PIPE] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_COMMA] = ACTIONS(2579), + [sym_keyword] = ACTIONS(2579), + [anon_sym_LT_LT] = ACTIONS(2579), + [anon_sym_PERCENT] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_CARET] = ACTIONS(2579), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2579), + [anon_sym_not] = ACTIONS(2579), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_LT_DASH] = ACTIONS(2579), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2579), + [anon_sym_when] = ACTIONS(2579), + [anon_sym_COLON_COLON] = ACTIONS(2579), + [anon_sym_EQ_GT] = ACTIONS(2579), + [anon_sym_EQ] = ACTIONS(2579), + [anon_sym_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_or] = ACTIONS(2579), + [anon_sym_AMP_AMP] = ACTIONS(2579), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2579), + [anon_sym_and] = ACTIONS(2579), + [anon_sym_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ] = ACTIONS(2579), + [anon_sym_EQ_TILDE] = ACTIONS(2579), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2579), + [anon_sym_LT_EQ] = ACTIONS(2579), + [anon_sym_GT_EQ] = ACTIONS(2579), + [anon_sym_PIPE_GT] = ACTIONS(2579), + [anon_sym_LT_LT_LT] = ACTIONS(2579), + [anon_sym_GT_GT_GT] = ACTIONS(2579), + [anon_sym_LT_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_PIPE_GT] = ACTIONS(2579), + [anon_sym_in] = ACTIONS(2579), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2579), + [anon_sym_SLASH_SLASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2579), + [anon_sym_DOT_DOT] = ACTIONS(2579), + [anon_sym_LT_GT] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_STAR_STAR] = ACTIONS(2579), + [anon_sym_CARET_CARET] = ACTIONS(2579), + [anon_sym_DASH_GT] = ACTIONS(2579), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_do] = ACTIONS(2579), + [anon_sym_end] = ACTIONS(2579), + [anon_sym_fn] = ACTIONS(2579), + [anon_sym_LPAREN2] = ACTIONS(2577), + [anon_sym_LBRACK2] = ACTIONS(2577), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2577), + [sym__not_in] = ACTIONS(2577), + [sym__quoted_atom_start] = ACTIONS(2577), + }, + [991] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2567), + [aux_sym_identifier_token1] = ACTIONS(2567), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2567), + [sym_alias] = ACTIONS(2567), + [sym_integer] = ACTIONS(2567), + [sym_float] = ACTIONS(2567), + [sym_char] = ACTIONS(2567), + [anon_sym_true] = ACTIONS(2567), + [anon_sym_false] = ACTIONS(2567), + [anon_sym_nil] = ACTIONS(2567), + [sym_atom] = ACTIONS(2567), + [anon_sym_DQUOTE] = ACTIONS(2567), + [anon_sym_SQUOTE] = ACTIONS(2567), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2567), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2567), + [anon_sym_LBRACE] = ACTIONS(2567), + [anon_sym_LBRACK] = ACTIONS(2567), + [anon_sym_LT] = ACTIONS(2567), + [anon_sym_GT] = ACTIONS(2567), + [anon_sym_PIPE] = ACTIONS(2567), + [anon_sym_SLASH] = ACTIONS(2567), + [anon_sym_TILDE] = ACTIONS(2567), + [anon_sym_COMMA] = ACTIONS(2567), + [sym_keyword] = ACTIONS(2567), + [anon_sym_LT_LT] = ACTIONS(2567), + [anon_sym_GT_GT] = ACTIONS(2567), + [anon_sym_PERCENT] = ACTIONS(2567), + [anon_sym_AMP] = ACTIONS(2567), + [anon_sym_PLUS] = ACTIONS(2567), + [anon_sym_DASH] = ACTIONS(2567), + [anon_sym_BANG] = ACTIONS(2567), + [anon_sym_CARET] = ACTIONS(2567), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2567), + [anon_sym_not] = ACTIONS(2567), + [anon_sym_AT] = ACTIONS(2567), + [anon_sym_LT_DASH] = ACTIONS(2567), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2567), + [anon_sym_when] = ACTIONS(2567), + [anon_sym_COLON_COLON] = ACTIONS(2567), + [anon_sym_EQ_GT] = ACTIONS(2567), + [anon_sym_EQ] = ACTIONS(2567), + [anon_sym_PIPE_PIPE] = ACTIONS(2567), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2567), + [anon_sym_or] = ACTIONS(2567), + [anon_sym_AMP_AMP] = ACTIONS(2567), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2567), + [anon_sym_and] = ACTIONS(2567), + [anon_sym_EQ_EQ] = ACTIONS(2567), + [anon_sym_BANG_EQ] = ACTIONS(2567), + [anon_sym_EQ_TILDE] = ACTIONS(2567), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2567), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2567), + [anon_sym_LT_EQ] = ACTIONS(2567), + [anon_sym_GT_EQ] = ACTIONS(2567), + [anon_sym_PIPE_GT] = ACTIONS(2567), + [anon_sym_LT_LT_LT] = ACTIONS(2567), + [anon_sym_GT_GT_GT] = ACTIONS(2567), + [anon_sym_LT_LT_TILDE] = ACTIONS(2567), + [anon_sym_TILDE_GT_GT] = ACTIONS(2567), + [anon_sym_LT_TILDE] = ACTIONS(2567), + [anon_sym_TILDE_GT] = ACTIONS(2567), + [anon_sym_LT_TILDE_GT] = ACTIONS(2567), + [anon_sym_LT_PIPE_GT] = ACTIONS(2567), + [anon_sym_in] = ACTIONS(2567), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2567), + [anon_sym_SLASH_SLASH] = ACTIONS(2567), + [anon_sym_PLUS_PLUS] = ACTIONS(2567), + [anon_sym_DASH_DASH] = ACTIONS(2567), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2567), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2567), + [anon_sym_DOT_DOT] = ACTIONS(2567), + [anon_sym_LT_GT] = ACTIONS(2567), + [anon_sym_STAR] = ACTIONS(2567), + [anon_sym_STAR_STAR] = ACTIONS(2567), + [anon_sym_CARET_CARET] = ACTIONS(2567), + [anon_sym_DASH_GT] = ACTIONS(2567), + [anon_sym_DOT] = ACTIONS(2567), + [anon_sym_do] = ACTIONS(2567), + [anon_sym_fn] = ACTIONS(2567), + [anon_sym_LPAREN2] = ACTIONS(2565), + [anon_sym_LBRACK2] = ACTIONS(2565), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2565), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2565), + [sym__not_in] = ACTIONS(2565), + [sym__quoted_atom_start] = ACTIONS(2565), + }, + [992] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [993] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2547), + [aux_sym_identifier_token1] = ACTIONS(2547), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2547), + [sym_alias] = ACTIONS(2547), + [sym_integer] = ACTIONS(2547), + [sym_float] = ACTIONS(2547), + [sym_char] = ACTIONS(2547), + [anon_sym_true] = ACTIONS(2547), + [anon_sym_false] = ACTIONS(2547), + [anon_sym_nil] = ACTIONS(2547), + [sym_atom] = ACTIONS(2547), + [anon_sym_DQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE] = ACTIONS(2547), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2547), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2547), + [anon_sym_LBRACE] = ACTIONS(2547), + [anon_sym_LBRACK] = ACTIONS(2547), + [anon_sym_LT] = ACTIONS(2547), + [anon_sym_GT] = ACTIONS(2547), + [anon_sym_PIPE] = ACTIONS(2547), + [anon_sym_SLASH] = ACTIONS(2547), + [anon_sym_TILDE] = ACTIONS(2547), + [anon_sym_COMMA] = ACTIONS(2547), + [sym_keyword] = ACTIONS(2547), + [anon_sym_LT_LT] = ACTIONS(2547), + [anon_sym_GT_GT] = ACTIONS(2547), + [anon_sym_PERCENT] = ACTIONS(2547), + [anon_sym_AMP] = ACTIONS(2547), + [anon_sym_PLUS] = ACTIONS(2547), + [anon_sym_DASH] = ACTIONS(2547), + [anon_sym_BANG] = ACTIONS(2547), + [anon_sym_CARET] = ACTIONS(2547), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2547), + [anon_sym_not] = ACTIONS(2547), + [anon_sym_AT] = ACTIONS(2547), + [anon_sym_LT_DASH] = ACTIONS(2547), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2547), + [anon_sym_when] = ACTIONS(2547), + [anon_sym_COLON_COLON] = ACTIONS(2547), + [anon_sym_EQ_GT] = ACTIONS(2547), + [anon_sym_EQ] = ACTIONS(2547), + [anon_sym_PIPE_PIPE] = ACTIONS(2547), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2547), + [anon_sym_or] = ACTIONS(2547), + [anon_sym_AMP_AMP] = ACTIONS(2547), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2547), + [anon_sym_and] = ACTIONS(2547), + [anon_sym_EQ_EQ] = ACTIONS(2547), + [anon_sym_BANG_EQ] = ACTIONS(2547), + [anon_sym_EQ_TILDE] = ACTIONS(2547), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2547), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2547), + [anon_sym_LT_EQ] = ACTIONS(2547), + [anon_sym_GT_EQ] = ACTIONS(2547), + [anon_sym_PIPE_GT] = ACTIONS(2547), + [anon_sym_LT_LT_LT] = ACTIONS(2547), + [anon_sym_GT_GT_GT] = ACTIONS(2547), + [anon_sym_LT_LT_TILDE] = ACTIONS(2547), + [anon_sym_TILDE_GT_GT] = ACTIONS(2547), + [anon_sym_LT_TILDE] = ACTIONS(2547), + [anon_sym_TILDE_GT] = ACTIONS(2547), + [anon_sym_LT_TILDE_GT] = ACTIONS(2547), + [anon_sym_LT_PIPE_GT] = ACTIONS(2547), + [anon_sym_in] = ACTIONS(2547), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2547), + [anon_sym_SLASH_SLASH] = ACTIONS(2547), + [anon_sym_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH] = ACTIONS(2547), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2547), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2547), + [anon_sym_DOT_DOT] = ACTIONS(2547), + [anon_sym_LT_GT] = ACTIONS(2547), + [anon_sym_STAR] = ACTIONS(2547), + [anon_sym_STAR_STAR] = ACTIONS(2547), + [anon_sym_CARET_CARET] = ACTIONS(2547), + [anon_sym_DASH_GT] = ACTIONS(2547), + [anon_sym_DOT] = ACTIONS(2547), + [anon_sym_do] = ACTIONS(2547), + [anon_sym_fn] = ACTIONS(2547), + [anon_sym_LPAREN2] = ACTIONS(2545), + [anon_sym_LBRACK2] = ACTIONS(2545), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2545), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2545), + [sym__not_in] = ACTIONS(2545), + [sym__quoted_atom_start] = ACTIONS(2545), + }, + [994] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2579), + [aux_sym_identifier_token1] = ACTIONS(2579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2579), + [sym_alias] = ACTIONS(2579), + [sym_integer] = ACTIONS(2579), + [sym_float] = ACTIONS(2579), + [sym_char] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2579), + [anon_sym_false] = ACTIONS(2579), + [anon_sym_nil] = ACTIONS(2579), + [sym_atom] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2579), + [anon_sym_GT] = ACTIONS(2579), + [anon_sym_PIPE] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_COMMA] = ACTIONS(2579), + [sym_keyword] = ACTIONS(2579), + [anon_sym_LT_LT] = ACTIONS(2579), + [anon_sym_GT_GT] = ACTIONS(2579), + [anon_sym_PERCENT] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_CARET] = ACTIONS(2579), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2579), + [anon_sym_not] = ACTIONS(2579), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_LT_DASH] = ACTIONS(2579), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2579), + [anon_sym_when] = ACTIONS(2579), + [anon_sym_COLON_COLON] = ACTIONS(2579), + [anon_sym_EQ_GT] = ACTIONS(2579), + [anon_sym_EQ] = ACTIONS(2579), + [anon_sym_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_or] = ACTIONS(2579), + [anon_sym_AMP_AMP] = ACTIONS(2579), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2579), + [anon_sym_and] = ACTIONS(2579), + [anon_sym_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ] = ACTIONS(2579), + [anon_sym_EQ_TILDE] = ACTIONS(2579), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2579), + [anon_sym_LT_EQ] = ACTIONS(2579), + [anon_sym_GT_EQ] = ACTIONS(2579), + [anon_sym_PIPE_GT] = ACTIONS(2579), + [anon_sym_LT_LT_LT] = ACTIONS(2579), + [anon_sym_GT_GT_GT] = ACTIONS(2579), + [anon_sym_LT_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_PIPE_GT] = ACTIONS(2579), + [anon_sym_in] = ACTIONS(2579), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2579), + [anon_sym_SLASH_SLASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2579), + [anon_sym_DOT_DOT] = ACTIONS(2579), + [anon_sym_LT_GT] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_STAR_STAR] = ACTIONS(2579), + [anon_sym_CARET_CARET] = ACTIONS(2579), + [anon_sym_DASH_GT] = ACTIONS(2579), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_do] = ACTIONS(2579), + [anon_sym_fn] = ACTIONS(2579), + [anon_sym_LPAREN2] = ACTIONS(2577), + [anon_sym_LBRACK2] = ACTIONS(2577), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2577), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2577), + [sym__not_in] = ACTIONS(2577), + [sym__quoted_atom_start] = ACTIONS(2577), + }, + [995] = { + [ts_builtin_sym_end] = ACTIONS(2577), + [aux_sym__terminator_token1] = ACTIONS(2577), + [anon_sym_SEMI] = ACTIONS(2579), + [anon_sym_LPAREN] = ACTIONS(2579), + [aux_sym_identifier_token1] = ACTIONS(2579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2579), + [sym_alias] = ACTIONS(2579), + [sym_integer] = ACTIONS(2579), + [sym_float] = ACTIONS(2579), + [sym_char] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2579), + [anon_sym_false] = ACTIONS(2579), + [anon_sym_nil] = ACTIONS(2579), + [sym_atom] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2579), + [anon_sym_GT] = ACTIONS(2579), + [anon_sym_PIPE] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_COMMA] = ACTIONS(2579), + [sym_keyword] = ACTIONS(2579), + [anon_sym_LT_LT] = ACTIONS(2579), + [anon_sym_PERCENT] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_CARET] = ACTIONS(2579), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2579), + [anon_sym_not] = ACTIONS(2579), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_LT_DASH] = ACTIONS(2579), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2579), + [anon_sym_when] = ACTIONS(2579), + [anon_sym_COLON_COLON] = ACTIONS(2579), + [anon_sym_EQ_GT] = ACTIONS(2579), + [anon_sym_EQ] = ACTIONS(2579), + [anon_sym_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_or] = ACTIONS(2579), + [anon_sym_AMP_AMP] = ACTIONS(2579), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2579), + [anon_sym_and] = ACTIONS(2579), + [anon_sym_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ] = ACTIONS(2579), + [anon_sym_EQ_TILDE] = ACTIONS(2579), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2579), + [anon_sym_LT_EQ] = ACTIONS(2579), + [anon_sym_GT_EQ] = ACTIONS(2579), + [anon_sym_PIPE_GT] = ACTIONS(2579), + [anon_sym_LT_LT_LT] = ACTIONS(2579), + [anon_sym_GT_GT_GT] = ACTIONS(2579), + [anon_sym_LT_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_PIPE_GT] = ACTIONS(2579), + [anon_sym_in] = ACTIONS(2579), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2579), + [anon_sym_SLASH_SLASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2579), + [anon_sym_DOT_DOT] = ACTIONS(2579), + [anon_sym_LT_GT] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_STAR_STAR] = ACTIONS(2579), + [anon_sym_CARET_CARET] = ACTIONS(2579), + [anon_sym_DASH_GT] = ACTIONS(2579), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_do] = ACTIONS(2579), + [anon_sym_fn] = ACTIONS(2579), + [anon_sym_LPAREN2] = ACTIONS(2577), + [anon_sym_LBRACK2] = ACTIONS(2577), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2577), + [sym__not_in] = ACTIONS(2577), + [sym__quoted_atom_start] = ACTIONS(2577), + }, + [996] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2583), + [aux_sym_identifier_token1] = ACTIONS(2583), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2583), + [sym_alias] = ACTIONS(2583), + [sym_integer] = ACTIONS(2583), + [sym_float] = ACTIONS(2583), + [sym_char] = ACTIONS(2583), + [anon_sym_true] = ACTIONS(2583), + [anon_sym_false] = ACTIONS(2583), + [anon_sym_nil] = ACTIONS(2583), + [sym_atom] = ACTIONS(2583), + [anon_sym_DQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE] = ACTIONS(2583), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2583), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(2583), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_LT] = ACTIONS(2583), + [anon_sym_GT] = ACTIONS(2583), + [anon_sym_PIPE] = ACTIONS(2583), + [anon_sym_SLASH] = ACTIONS(2583), + [anon_sym_TILDE] = ACTIONS(2583), + [anon_sym_COMMA] = ACTIONS(2583), + [sym_keyword] = ACTIONS(2583), + [anon_sym_LT_LT] = ACTIONS(2583), + [anon_sym_GT_GT] = ACTIONS(2583), + [anon_sym_PERCENT] = ACTIONS(2583), + [anon_sym_AMP] = ACTIONS(2583), + [anon_sym_PLUS] = ACTIONS(2583), + [anon_sym_DASH] = ACTIONS(2583), + [anon_sym_BANG] = ACTIONS(2583), + [anon_sym_CARET] = ACTIONS(2583), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2583), + [anon_sym_not] = ACTIONS(2583), + [anon_sym_AT] = ACTIONS(2583), + [anon_sym_LT_DASH] = ACTIONS(2583), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2583), + [anon_sym_when] = ACTIONS(2583), + [anon_sym_COLON_COLON] = ACTIONS(2583), + [anon_sym_EQ_GT] = ACTIONS(2583), + [anon_sym_EQ] = ACTIONS(2583), + [anon_sym_PIPE_PIPE] = ACTIONS(2583), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2583), + [anon_sym_or] = ACTIONS(2583), + [anon_sym_AMP_AMP] = ACTIONS(2583), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2583), + [anon_sym_and] = ACTIONS(2583), + [anon_sym_EQ_EQ] = ACTIONS(2583), + [anon_sym_BANG_EQ] = ACTIONS(2583), + [anon_sym_EQ_TILDE] = ACTIONS(2583), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2583), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2583), + [anon_sym_LT_EQ] = ACTIONS(2583), + [anon_sym_GT_EQ] = ACTIONS(2583), + [anon_sym_PIPE_GT] = ACTIONS(2583), + [anon_sym_LT_LT_LT] = ACTIONS(2583), + [anon_sym_GT_GT_GT] = ACTIONS(2583), + [anon_sym_LT_LT_TILDE] = ACTIONS(2583), + [anon_sym_TILDE_GT_GT] = ACTIONS(2583), + [anon_sym_LT_TILDE] = ACTIONS(2583), + [anon_sym_TILDE_GT] = ACTIONS(2583), + [anon_sym_LT_TILDE_GT] = ACTIONS(2583), + [anon_sym_LT_PIPE_GT] = ACTIONS(2583), + [anon_sym_in] = ACTIONS(2583), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2583), + [anon_sym_SLASH_SLASH] = ACTIONS(2583), + [anon_sym_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH] = ACTIONS(2583), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2583), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2583), + [anon_sym_DOT_DOT] = ACTIONS(2583), + [anon_sym_LT_GT] = ACTIONS(2583), + [anon_sym_STAR] = ACTIONS(2583), + [anon_sym_STAR_STAR] = ACTIONS(2583), + [anon_sym_CARET_CARET] = ACTIONS(2583), + [anon_sym_DASH_GT] = ACTIONS(2583), + [anon_sym_DOT] = ACTIONS(2583), + [anon_sym_do] = ACTIONS(2583), + [anon_sym_fn] = ACTIONS(2583), + [anon_sym_LPAREN2] = ACTIONS(2581), + [anon_sym_LBRACK2] = ACTIONS(2581), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2581), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2581), + [sym__not_in] = ACTIONS(2581), + [sym__quoted_atom_start] = ACTIONS(2581), + }, + [997] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2559), + [aux_sym_identifier_token1] = ACTIONS(2559), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2559), + [sym_alias] = ACTIONS(2559), + [sym_integer] = ACTIONS(2559), + [sym_float] = ACTIONS(2559), + [sym_char] = ACTIONS(2559), + [anon_sym_true] = ACTIONS(2559), + [anon_sym_false] = ACTIONS(2559), + [anon_sym_nil] = ACTIONS(2559), + [sym_atom] = ACTIONS(2559), + [anon_sym_DQUOTE] = ACTIONS(2559), + [anon_sym_SQUOTE] = ACTIONS(2559), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2559), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2559), + [anon_sym_LBRACE] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(2559), + [anon_sym_LT] = ACTIONS(2559), + [anon_sym_GT] = ACTIONS(2559), + [anon_sym_PIPE] = ACTIONS(2559), + [anon_sym_SLASH] = ACTIONS(2559), + [anon_sym_TILDE] = ACTIONS(2559), + [anon_sym_COMMA] = ACTIONS(2559), + [sym_keyword] = ACTIONS(2559), + [anon_sym_LT_LT] = ACTIONS(2559), + [anon_sym_GT_GT] = ACTIONS(2559), + [anon_sym_PERCENT] = ACTIONS(2559), + [anon_sym_AMP] = ACTIONS(2559), + [anon_sym_PLUS] = ACTIONS(2559), + [anon_sym_DASH] = ACTIONS(2559), + [anon_sym_BANG] = ACTIONS(2559), + [anon_sym_CARET] = ACTIONS(2559), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2559), + [anon_sym_not] = ACTIONS(2559), + [anon_sym_AT] = ACTIONS(2559), + [anon_sym_LT_DASH] = ACTIONS(2559), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2559), + [anon_sym_when] = ACTIONS(2559), + [anon_sym_COLON_COLON] = ACTIONS(2559), + [anon_sym_EQ_GT] = ACTIONS(2559), + [anon_sym_EQ] = ACTIONS(2559), + [anon_sym_PIPE_PIPE] = ACTIONS(2559), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2559), + [anon_sym_or] = ACTIONS(2559), + [anon_sym_AMP_AMP] = ACTIONS(2559), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2559), + [anon_sym_and] = ACTIONS(2559), + [anon_sym_EQ_EQ] = ACTIONS(2559), + [anon_sym_BANG_EQ] = ACTIONS(2559), + [anon_sym_EQ_TILDE] = ACTIONS(2559), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2559), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2559), + [anon_sym_LT_EQ] = ACTIONS(2559), + [anon_sym_GT_EQ] = ACTIONS(2559), + [anon_sym_PIPE_GT] = ACTIONS(2559), + [anon_sym_LT_LT_LT] = ACTIONS(2559), + [anon_sym_GT_GT_GT] = ACTIONS(2559), + [anon_sym_LT_LT_TILDE] = ACTIONS(2559), + [anon_sym_TILDE_GT_GT] = ACTIONS(2559), + [anon_sym_LT_TILDE] = ACTIONS(2559), + [anon_sym_TILDE_GT] = ACTIONS(2559), + [anon_sym_LT_TILDE_GT] = ACTIONS(2559), + [anon_sym_LT_PIPE_GT] = ACTIONS(2559), + [anon_sym_in] = ACTIONS(2559), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2559), + [anon_sym_SLASH_SLASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DASH_DASH] = ACTIONS(2559), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2559), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2559), + [anon_sym_DOT_DOT] = ACTIONS(2559), + [anon_sym_LT_GT] = ACTIONS(2559), + [anon_sym_STAR] = ACTIONS(2559), + [anon_sym_STAR_STAR] = ACTIONS(2559), + [anon_sym_CARET_CARET] = ACTIONS(2559), + [anon_sym_DASH_GT] = ACTIONS(2559), + [anon_sym_DOT] = ACTIONS(2559), + [anon_sym_do] = ACTIONS(2559), + [anon_sym_fn] = ACTIONS(2559), + [anon_sym_LPAREN2] = ACTIONS(2557), + [anon_sym_LBRACK2] = ACTIONS(2557), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2557), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2557), + [sym__not_in] = ACTIONS(2557), + [sym__quoted_atom_start] = ACTIONS(2557), + }, + [998] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2555), + [aux_sym_identifier_token1] = ACTIONS(2555), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2555), + [sym_alias] = ACTIONS(2555), + [sym_integer] = ACTIONS(2555), + [sym_float] = ACTIONS(2555), + [sym_char] = ACTIONS(2555), + [anon_sym_true] = ACTIONS(2555), + [anon_sym_false] = ACTIONS(2555), + [anon_sym_nil] = ACTIONS(2555), + [sym_atom] = ACTIONS(2555), + [anon_sym_DQUOTE] = ACTIONS(2555), + [anon_sym_SQUOTE] = ACTIONS(2555), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2555), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2555), + [anon_sym_LBRACE] = ACTIONS(2555), + [anon_sym_LBRACK] = ACTIONS(2555), + [anon_sym_LT] = ACTIONS(2555), + [anon_sym_GT] = ACTIONS(2555), + [anon_sym_PIPE] = ACTIONS(2555), + [anon_sym_SLASH] = ACTIONS(2555), + [anon_sym_TILDE] = ACTIONS(2555), + [anon_sym_COMMA] = ACTIONS(2555), + [sym_keyword] = ACTIONS(2555), + [anon_sym_LT_LT] = ACTIONS(2555), + [anon_sym_GT_GT] = ACTIONS(2555), + [anon_sym_PERCENT] = ACTIONS(2555), + [anon_sym_AMP] = ACTIONS(2555), + [anon_sym_PLUS] = ACTIONS(2555), + [anon_sym_DASH] = ACTIONS(2555), + [anon_sym_BANG] = ACTIONS(2555), + [anon_sym_CARET] = ACTIONS(2555), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2555), + [anon_sym_not] = ACTIONS(2555), + [anon_sym_AT] = ACTIONS(2555), + [anon_sym_LT_DASH] = ACTIONS(2555), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2555), + [anon_sym_when] = ACTIONS(2555), + [anon_sym_COLON_COLON] = ACTIONS(2555), + [anon_sym_EQ_GT] = ACTIONS(2555), + [anon_sym_EQ] = ACTIONS(2555), + [anon_sym_PIPE_PIPE] = ACTIONS(2555), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2555), + [anon_sym_or] = ACTIONS(2555), + [anon_sym_AMP_AMP] = ACTIONS(2555), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2555), + [anon_sym_and] = ACTIONS(2555), + [anon_sym_EQ_EQ] = ACTIONS(2555), + [anon_sym_BANG_EQ] = ACTIONS(2555), + [anon_sym_EQ_TILDE] = ACTIONS(2555), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2555), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2555), + [anon_sym_LT_EQ] = ACTIONS(2555), + [anon_sym_GT_EQ] = ACTIONS(2555), + [anon_sym_PIPE_GT] = ACTIONS(2555), + [anon_sym_LT_LT_LT] = ACTIONS(2555), + [anon_sym_GT_GT_GT] = ACTIONS(2555), + [anon_sym_LT_LT_TILDE] = ACTIONS(2555), + [anon_sym_TILDE_GT_GT] = ACTIONS(2555), + [anon_sym_LT_TILDE] = ACTIONS(2555), + [anon_sym_TILDE_GT] = ACTIONS(2555), + [anon_sym_LT_TILDE_GT] = ACTIONS(2555), + [anon_sym_LT_PIPE_GT] = ACTIONS(2555), + [anon_sym_in] = ACTIONS(2555), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2555), + [anon_sym_SLASH_SLASH] = ACTIONS(2555), + [anon_sym_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_DASH_DASH] = ACTIONS(2555), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2555), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2555), + [anon_sym_DOT_DOT] = ACTIONS(2555), + [anon_sym_LT_GT] = ACTIONS(2555), + [anon_sym_STAR] = ACTIONS(2555), + [anon_sym_STAR_STAR] = ACTIONS(2555), + [anon_sym_CARET_CARET] = ACTIONS(2555), + [anon_sym_DASH_GT] = ACTIONS(2555), + [anon_sym_DOT] = ACTIONS(2555), + [anon_sym_do] = ACTIONS(2555), + [anon_sym_fn] = ACTIONS(2555), + [anon_sym_LPAREN2] = ACTIONS(2553), + [anon_sym_LBRACK2] = ACTIONS(2553), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2553), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2553), + [sym__not_in] = ACTIONS(2553), + [sym__quoted_atom_start] = ACTIONS(2553), + }, + [999] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2563), + [aux_sym_identifier_token1] = ACTIONS(2563), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2563), + [sym_alias] = ACTIONS(2563), + [sym_integer] = ACTIONS(2563), + [sym_float] = ACTIONS(2563), + [sym_char] = ACTIONS(2563), + [anon_sym_true] = ACTIONS(2563), + [anon_sym_false] = ACTIONS(2563), + [anon_sym_nil] = ACTIONS(2563), + [sym_atom] = ACTIONS(2563), + [anon_sym_DQUOTE] = ACTIONS(2563), + [anon_sym_SQUOTE] = ACTIONS(2563), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2563), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2563), + [anon_sym_LBRACE] = ACTIONS(2563), + [anon_sym_LBRACK] = ACTIONS(2563), + [anon_sym_LT] = ACTIONS(2563), + [anon_sym_GT] = ACTIONS(2563), + [anon_sym_PIPE] = ACTIONS(2563), + [anon_sym_SLASH] = ACTIONS(2563), + [anon_sym_TILDE] = ACTIONS(2563), + [anon_sym_COMMA] = ACTIONS(2563), + [sym_keyword] = ACTIONS(2563), + [anon_sym_LT_LT] = ACTIONS(2563), + [anon_sym_GT_GT] = ACTIONS(2563), + [anon_sym_PERCENT] = ACTIONS(2563), + [anon_sym_AMP] = ACTIONS(2563), + [anon_sym_PLUS] = ACTIONS(2563), + [anon_sym_DASH] = ACTIONS(2563), + [anon_sym_BANG] = ACTIONS(2563), + [anon_sym_CARET] = ACTIONS(2563), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2563), + [anon_sym_not] = ACTIONS(2563), + [anon_sym_AT] = ACTIONS(2563), + [anon_sym_LT_DASH] = ACTIONS(2563), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2563), + [anon_sym_when] = ACTIONS(2563), + [anon_sym_COLON_COLON] = ACTIONS(2563), + [anon_sym_EQ_GT] = ACTIONS(2563), + [anon_sym_EQ] = ACTIONS(2563), + [anon_sym_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2563), + [anon_sym_or] = ACTIONS(2563), + [anon_sym_AMP_AMP] = ACTIONS(2563), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2563), + [anon_sym_and] = ACTIONS(2563), + [anon_sym_EQ_EQ] = ACTIONS(2563), + [anon_sym_BANG_EQ] = ACTIONS(2563), + [anon_sym_EQ_TILDE] = ACTIONS(2563), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2563), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2563), + [anon_sym_LT_EQ] = ACTIONS(2563), + [anon_sym_GT_EQ] = ACTIONS(2563), + [anon_sym_PIPE_GT] = ACTIONS(2563), + [anon_sym_LT_LT_LT] = ACTIONS(2563), + [anon_sym_GT_GT_GT] = ACTIONS(2563), + [anon_sym_LT_LT_TILDE] = ACTIONS(2563), + [anon_sym_TILDE_GT_GT] = ACTIONS(2563), + [anon_sym_LT_TILDE] = ACTIONS(2563), + [anon_sym_TILDE_GT] = ACTIONS(2563), + [anon_sym_LT_TILDE_GT] = ACTIONS(2563), + [anon_sym_LT_PIPE_GT] = ACTIONS(2563), + [anon_sym_in] = ACTIONS(2563), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2563), + [anon_sym_SLASH_SLASH] = ACTIONS(2563), + [anon_sym_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_DASH_DASH] = ACTIONS(2563), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2563), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2563), + [anon_sym_DOT_DOT] = ACTIONS(2563), + [anon_sym_LT_GT] = ACTIONS(2563), + [anon_sym_STAR] = ACTIONS(2563), + [anon_sym_STAR_STAR] = ACTIONS(2563), + [anon_sym_CARET_CARET] = ACTIONS(2563), + [anon_sym_DASH_GT] = ACTIONS(2563), + [anon_sym_DOT] = ACTIONS(2563), + [anon_sym_do] = ACTIONS(2563), + [anon_sym_fn] = ACTIONS(2563), + [anon_sym_LPAREN2] = ACTIONS(2561), + [anon_sym_LBRACK2] = ACTIONS(2561), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2561), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2561), + [sym__not_in] = ACTIONS(2561), + [sym__quoted_atom_start] = ACTIONS(2561), + }, + [1000] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2571), + [aux_sym_identifier_token1] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2571), + [sym_alias] = ACTIONS(2571), + [sym_integer] = ACTIONS(2571), + [sym_float] = ACTIONS(2571), + [sym_char] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2571), + [anon_sym_false] = ACTIONS(2571), + [anon_sym_nil] = ACTIONS(2571), + [sym_atom] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_COMMA] = ACTIONS(2571), + [sym_keyword] = ACTIONS(2571), + [anon_sym_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT] = ACTIONS(2571), + [anon_sym_PERCENT] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_CARET] = ACTIONS(2571), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_LT_DASH] = ACTIONS(2571), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2571), + [anon_sym_when] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_EQ_GT] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(2571), + [anon_sym_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_or] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2571), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2571), + [anon_sym_and] = ACTIONS(2571), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_EQ_TILDE] = ACTIONS(2571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2571), + [anon_sym_LT_EQ] = ACTIONS(2571), + [anon_sym_GT_EQ] = ACTIONS(2571), + [anon_sym_PIPE_GT] = ACTIONS(2571), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT_GT] = ACTIONS(2571), + [anon_sym_LT_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_PIPE_GT] = ACTIONS(2571), + [anon_sym_in] = ACTIONS(2571), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2571), + [anon_sym_SLASH_SLASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_LT_GT] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_STAR_STAR] = ACTIONS(2571), + [anon_sym_CARET_CARET] = ACTIONS(2571), + [anon_sym_DASH_GT] = ACTIONS(2571), + [anon_sym_DOT] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_fn] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_LBRACK2] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2569), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2569), + [sym__not_in] = ACTIONS(2569), + [sym__quoted_atom_start] = ACTIONS(2569), + }, + [1001] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [1002] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2571), + [aux_sym_identifier_token1] = ACTIONS(2571), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2571), + [sym_alias] = ACTIONS(2571), + [sym_integer] = ACTIONS(2571), + [sym_float] = ACTIONS(2571), + [sym_char] = ACTIONS(2571), + [anon_sym_true] = ACTIONS(2571), + [anon_sym_false] = ACTIONS(2571), + [anon_sym_nil] = ACTIONS(2571), + [sym_atom] = ACTIONS(2571), + [anon_sym_DQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE] = ACTIONS(2571), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2571), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_LBRACK] = ACTIONS(2571), + [anon_sym_LT] = ACTIONS(2571), + [anon_sym_GT] = ACTIONS(2571), + [anon_sym_PIPE] = ACTIONS(2571), + [anon_sym_SLASH] = ACTIONS(2571), + [anon_sym_TILDE] = ACTIONS(2571), + [anon_sym_COMMA] = ACTIONS(2571), + [sym_keyword] = ACTIONS(2571), + [anon_sym_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT] = ACTIONS(2571), + [anon_sym_PERCENT] = ACTIONS(2571), + [anon_sym_AMP] = ACTIONS(2571), + [anon_sym_PLUS] = ACTIONS(2571), + [anon_sym_DASH] = ACTIONS(2571), + [anon_sym_BANG] = ACTIONS(2571), + [anon_sym_CARET] = ACTIONS(2571), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2571), + [anon_sym_not] = ACTIONS(2571), + [anon_sym_AT] = ACTIONS(2571), + [anon_sym_LT_DASH] = ACTIONS(2571), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2571), + [anon_sym_when] = ACTIONS(2571), + [anon_sym_COLON_COLON] = ACTIONS(2571), + [anon_sym_EQ_GT] = ACTIONS(2571), + [anon_sym_EQ] = ACTIONS(2571), + [anon_sym_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2571), + [anon_sym_or] = ACTIONS(2571), + [anon_sym_AMP_AMP] = ACTIONS(2571), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2571), + [anon_sym_and] = ACTIONS(2571), + [anon_sym_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ] = ACTIONS(2571), + [anon_sym_EQ_TILDE] = ACTIONS(2571), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2571), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2571), + [anon_sym_LT_EQ] = ACTIONS(2571), + [anon_sym_GT_EQ] = ACTIONS(2571), + [anon_sym_PIPE_GT] = ACTIONS(2571), + [anon_sym_LT_LT_LT] = ACTIONS(2571), + [anon_sym_GT_GT_GT] = ACTIONS(2571), + [anon_sym_LT_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE] = ACTIONS(2571), + [anon_sym_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_TILDE_GT] = ACTIONS(2571), + [anon_sym_LT_PIPE_GT] = ACTIONS(2571), + [anon_sym_in] = ACTIONS(2571), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2571), + [anon_sym_SLASH_SLASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH] = ACTIONS(2571), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2571), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2571), + [anon_sym_DOT_DOT] = ACTIONS(2571), + [anon_sym_LT_GT] = ACTIONS(2571), + [anon_sym_STAR] = ACTIONS(2571), + [anon_sym_STAR_STAR] = ACTIONS(2571), + [anon_sym_CARET_CARET] = ACTIONS(2571), + [anon_sym_DASH_GT] = ACTIONS(2571), + [anon_sym_DOT] = ACTIONS(2571), + [anon_sym_do] = ACTIONS(2571), + [anon_sym_fn] = ACTIONS(2571), + [anon_sym_LPAREN2] = ACTIONS(2569), + [anon_sym_LBRACK2] = ACTIONS(2569), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2569), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2569), + [sym__not_in] = ACTIONS(2569), + [sym__quoted_atom_start] = ACTIONS(2569), + }, + [1003] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [1004] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2551), + [aux_sym_identifier_token1] = ACTIONS(2551), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2551), + [sym_alias] = ACTIONS(2551), + [sym_integer] = ACTIONS(2551), + [sym_float] = ACTIONS(2551), + [sym_char] = ACTIONS(2551), + [anon_sym_true] = ACTIONS(2551), + [anon_sym_false] = ACTIONS(2551), + [anon_sym_nil] = ACTIONS(2551), + [sym_atom] = ACTIONS(2551), + [anon_sym_DQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE] = ACTIONS(2551), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2551), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(2551), + [anon_sym_LBRACK] = ACTIONS(2551), + [anon_sym_LT] = ACTIONS(2551), + [anon_sym_GT] = ACTIONS(2551), + [anon_sym_PIPE] = ACTIONS(2551), + [anon_sym_SLASH] = ACTIONS(2551), + [anon_sym_TILDE] = ACTIONS(2551), + [anon_sym_COMMA] = ACTIONS(2551), + [sym_keyword] = ACTIONS(2551), + [anon_sym_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT] = ACTIONS(2551), + [anon_sym_PERCENT] = ACTIONS(2551), + [anon_sym_AMP] = ACTIONS(2551), + [anon_sym_PLUS] = ACTIONS(2551), + [anon_sym_DASH] = ACTIONS(2551), + [anon_sym_BANG] = ACTIONS(2551), + [anon_sym_CARET] = ACTIONS(2551), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2551), + [anon_sym_not] = ACTIONS(2551), + [anon_sym_AT] = ACTIONS(2551), + [anon_sym_LT_DASH] = ACTIONS(2551), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2551), + [anon_sym_when] = ACTIONS(2551), + [anon_sym_COLON_COLON] = ACTIONS(2551), + [anon_sym_EQ_GT] = ACTIONS(2551), + [anon_sym_EQ] = ACTIONS(2551), + [anon_sym_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2551), + [anon_sym_or] = ACTIONS(2551), + [anon_sym_AMP_AMP] = ACTIONS(2551), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2551), + [anon_sym_and] = ACTIONS(2551), + [anon_sym_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ] = ACTIONS(2551), + [anon_sym_EQ_TILDE] = ACTIONS(2551), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2551), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2551), + [anon_sym_LT_EQ] = ACTIONS(2551), + [anon_sym_GT_EQ] = ACTIONS(2551), + [anon_sym_PIPE_GT] = ACTIONS(2551), + [anon_sym_LT_LT_LT] = ACTIONS(2551), + [anon_sym_GT_GT_GT] = ACTIONS(2551), + [anon_sym_LT_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE] = ACTIONS(2551), + [anon_sym_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_TILDE_GT] = ACTIONS(2551), + [anon_sym_LT_PIPE_GT] = ACTIONS(2551), + [anon_sym_in] = ACTIONS(2551), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2551), + [anon_sym_SLASH_SLASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH] = ACTIONS(2551), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2551), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2551), + [anon_sym_DOT_DOT] = ACTIONS(2551), + [anon_sym_LT_GT] = ACTIONS(2551), + [anon_sym_STAR] = ACTIONS(2551), + [anon_sym_STAR_STAR] = ACTIONS(2551), + [anon_sym_CARET_CARET] = ACTIONS(2551), + [anon_sym_DASH_GT] = ACTIONS(2551), + [anon_sym_DOT] = ACTIONS(2551), + [anon_sym_do] = ACTIONS(2551), + [anon_sym_fn] = ACTIONS(2551), + [anon_sym_LPAREN2] = ACTIONS(2549), + [anon_sym_LBRACK2] = ACTIONS(2549), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2549), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2549), + [sym__not_in] = ACTIONS(2549), + [sym__quoted_atom_start] = ACTIONS(2549), + }, + [1005] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2579), + [aux_sym_identifier_token1] = ACTIONS(2579), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2579), + [sym_alias] = ACTIONS(2579), + [sym_integer] = ACTIONS(2579), + [sym_float] = ACTIONS(2579), + [sym_char] = ACTIONS(2579), + [anon_sym_true] = ACTIONS(2579), + [anon_sym_false] = ACTIONS(2579), + [anon_sym_nil] = ACTIONS(2579), + [sym_atom] = ACTIONS(2579), + [anon_sym_DQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE] = ACTIONS(2579), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2579), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2579), + [anon_sym_LBRACE] = ACTIONS(2579), + [anon_sym_LBRACK] = ACTIONS(2579), + [anon_sym_LT] = ACTIONS(2579), + [anon_sym_GT] = ACTIONS(2579), + [anon_sym_PIPE] = ACTIONS(2579), + [anon_sym_SLASH] = ACTIONS(2579), + [anon_sym_TILDE] = ACTIONS(2579), + [anon_sym_COMMA] = ACTIONS(2579), + [sym_keyword] = ACTIONS(2579), + [anon_sym_LT_LT] = ACTIONS(2579), + [anon_sym_GT_GT] = ACTIONS(2579), + [anon_sym_PERCENT] = ACTIONS(2579), + [anon_sym_AMP] = ACTIONS(2579), + [anon_sym_PLUS] = ACTIONS(2579), + [anon_sym_DASH] = ACTIONS(2579), + [anon_sym_BANG] = ACTIONS(2579), + [anon_sym_CARET] = ACTIONS(2579), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2579), + [anon_sym_not] = ACTIONS(2579), + [anon_sym_AT] = ACTIONS(2579), + [anon_sym_LT_DASH] = ACTIONS(2579), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2579), + [anon_sym_when] = ACTIONS(2579), + [anon_sym_COLON_COLON] = ACTIONS(2579), + [anon_sym_EQ_GT] = ACTIONS(2579), + [anon_sym_EQ] = ACTIONS(2579), + [anon_sym_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2579), + [anon_sym_or] = ACTIONS(2579), + [anon_sym_AMP_AMP] = ACTIONS(2579), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2579), + [anon_sym_and] = ACTIONS(2579), + [anon_sym_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ] = ACTIONS(2579), + [anon_sym_EQ_TILDE] = ACTIONS(2579), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2579), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2579), + [anon_sym_LT_EQ] = ACTIONS(2579), + [anon_sym_GT_EQ] = ACTIONS(2579), + [anon_sym_PIPE_GT] = ACTIONS(2579), + [anon_sym_LT_LT_LT] = ACTIONS(2579), + [anon_sym_GT_GT_GT] = ACTIONS(2579), + [anon_sym_LT_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE] = ACTIONS(2579), + [anon_sym_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_TILDE_GT] = ACTIONS(2579), + [anon_sym_LT_PIPE_GT] = ACTIONS(2579), + [anon_sym_in] = ACTIONS(2579), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2579), + [anon_sym_SLASH_SLASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH] = ACTIONS(2579), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2579), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2579), + [anon_sym_DOT_DOT] = ACTIONS(2579), + [anon_sym_LT_GT] = ACTIONS(2579), + [anon_sym_STAR] = ACTIONS(2579), + [anon_sym_STAR_STAR] = ACTIONS(2579), + [anon_sym_CARET_CARET] = ACTIONS(2579), + [anon_sym_DASH_GT] = ACTIONS(2579), + [anon_sym_DOT] = ACTIONS(2579), + [anon_sym_do] = ACTIONS(2579), + [anon_sym_fn] = ACTIONS(2579), + [anon_sym_LPAREN2] = ACTIONS(2577), + [anon_sym_LBRACK2] = ACTIONS(2577), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2577), + [sym__not_in] = ACTIONS(2577), + [sym__quoted_atom_start] = ACTIONS(2577), + }, + [1006] = { + [aux_sym__terminator_repeat1] = STATE(1007), + [aux_sym__terminator_token1] = ACTIONS(2585), + [anon_sym_SEMI] = ACTIONS(2587), + [anon_sym_LPAREN] = ACTIONS(2589), + [aux_sym_identifier_token1] = ACTIONS(2589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2589), + [sym_alias] = ACTIONS(2589), + [sym_integer] = ACTIONS(2589), + [sym_float] = ACTIONS(2589), + [sym_char] = ACTIONS(2589), + [anon_sym_true] = ACTIONS(2589), + [anon_sym_false] = ACTIONS(2589), + [anon_sym_nil] = ACTIONS(2589), + [sym_atom] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_GT] = ACTIONS(2589), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_SLASH] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [sym_keyword] = ACTIONS(2589), + [anon_sym_LT_LT] = ACTIONS(2589), + [anon_sym_PERCENT] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_CARET] = ACTIONS(2589), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2589), + [anon_sym_not] = ACTIONS(2589), + [anon_sym_AT] = ACTIONS(2589), + [anon_sym_LT_DASH] = ACTIONS(2589), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2589), + [anon_sym_when] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_EQ] = ACTIONS(2589), + [anon_sym_PIPE_PIPE] = ACTIONS(2589), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2589), + [anon_sym_or] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2589), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2589), + [anon_sym_and] = ACTIONS(2589), + [anon_sym_EQ_EQ] = ACTIONS(2589), + [anon_sym_BANG_EQ] = ACTIONS(2589), + [anon_sym_EQ_TILDE] = ACTIONS(2589), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2589), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2589), + [anon_sym_LT_EQ] = ACTIONS(2589), + [anon_sym_GT_EQ] = ACTIONS(2589), + [anon_sym_PIPE_GT] = ACTIONS(2589), + [anon_sym_LT_LT_LT] = ACTIONS(2589), + [anon_sym_GT_GT_GT] = ACTIONS(2589), + [anon_sym_LT_LT_TILDE] = ACTIONS(2589), + [anon_sym_TILDE_GT_GT] = ACTIONS(2589), + [anon_sym_LT_TILDE] = ACTIONS(2589), + [anon_sym_TILDE_GT] = ACTIONS(2589), + [anon_sym_LT_TILDE_GT] = ACTIONS(2589), + [anon_sym_LT_PIPE_GT] = ACTIONS(2589), + [anon_sym_in] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2589), + [anon_sym_DOT_DOT] = ACTIONS(2589), + [anon_sym_LT_GT] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_STAR_STAR] = ACTIONS(2589), + [anon_sym_CARET_CARET] = ACTIONS(2589), + [anon_sym_DASH_GT] = ACTIONS(2589), + [anon_sym_DOT] = ACTIONS(2589), + [anon_sym_after] = ACTIONS(2589), + [anon_sym_catch] = ACTIONS(2589), + [anon_sym_else] = ACTIONS(2589), + [anon_sym_end] = ACTIONS(2589), + [anon_sym_fn] = ACTIONS(2589), + [anon_sym_rescue] = ACTIONS(2589), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2591), + [sym__not_in] = ACTIONS(2591), + [sym__quoted_atom_start] = ACTIONS(2591), + }, + [1007] = { + [aux_sym__terminator_repeat1] = STATE(1007), + [aux_sym__terminator_token1] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_LPAREN] = ACTIONS(2596), + [aux_sym_identifier_token1] = ACTIONS(2596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2596), + [sym_alias] = ACTIONS(2596), + [sym_integer] = ACTIONS(2596), + [sym_float] = ACTIONS(2596), + [sym_char] = ACTIONS(2596), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_nil] = ACTIONS(2596), + [sym_atom] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2596), + [anon_sym_LBRACK] = ACTIONS(2596), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_GT] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2596), + [anon_sym_SLASH] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2596), + [sym_keyword] = ACTIONS(2596), + [anon_sym_LT_LT] = ACTIONS(2596), + [anon_sym_PERCENT] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2596), + [anon_sym_BANG] = ACTIONS(2596), + [anon_sym_CARET] = ACTIONS(2596), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2596), + [anon_sym_not] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(2596), + [anon_sym_LT_DASH] = ACTIONS(2596), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2596), + [anon_sym_when] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_PIPE_PIPE] = ACTIONS(2596), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(2596), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2596), + [anon_sym_and] = ACTIONS(2596), + [anon_sym_EQ_EQ] = ACTIONS(2596), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_EQ_TILDE] = ACTIONS(2596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2596), + [anon_sym_LT_EQ] = ACTIONS(2596), + [anon_sym_GT_EQ] = ACTIONS(2596), + [anon_sym_PIPE_GT] = ACTIONS(2596), + [anon_sym_LT_LT_LT] = ACTIONS(2596), + [anon_sym_GT_GT_GT] = ACTIONS(2596), + [anon_sym_LT_LT_TILDE] = ACTIONS(2596), + [anon_sym_TILDE_GT_GT] = ACTIONS(2596), + [anon_sym_LT_TILDE] = ACTIONS(2596), + [anon_sym_TILDE_GT] = ACTIONS(2596), + [anon_sym_LT_TILDE_GT] = ACTIONS(2596), + [anon_sym_LT_PIPE_GT] = ACTIONS(2596), + [anon_sym_in] = ACTIONS(2596), + [anon_sym_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_DASH_DASH] = ACTIONS(2596), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2596), + [anon_sym_DOT_DOT] = ACTIONS(2596), + [anon_sym_LT_GT] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_STAR_STAR] = ACTIONS(2596), + [anon_sym_CARET_CARET] = ACTIONS(2596), + [anon_sym_DASH_GT] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(2596), + [anon_sym_after] = ACTIONS(2596), + [anon_sym_catch] = ACTIONS(2596), + [anon_sym_else] = ACTIONS(2596), + [anon_sym_end] = ACTIONS(2596), + [anon_sym_fn] = ACTIONS(2596), + [anon_sym_rescue] = ACTIONS(2596), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2598), + [sym__not_in] = ACTIONS(2598), + [sym__quoted_atom_start] = ACTIONS(2598), + }, + [1008] = { + [aux_sym__terminator_repeat1] = STATE(1010), + [aux_sym__terminator_token1] = ACTIONS(2600), + [anon_sym_SEMI] = ACTIONS(2602), + [anon_sym_LPAREN] = ACTIONS(2589), + [aux_sym_identifier_token1] = ACTIONS(2589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2589), + [sym_alias] = ACTIONS(2589), + [sym_integer] = ACTIONS(2589), + [sym_float] = ACTIONS(2589), + [sym_char] = ACTIONS(2589), + [anon_sym_true] = ACTIONS(2589), + [anon_sym_false] = ACTIONS(2589), + [anon_sym_nil] = ACTIONS(2589), + [sym_atom] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_GT] = ACTIONS(2589), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_SLASH] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [anon_sym_LT_LT] = ACTIONS(2589), + [anon_sym_PERCENT] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_CARET] = ACTIONS(2589), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2589), + [anon_sym_not] = ACTIONS(2589), + [anon_sym_AT] = ACTIONS(2589), + [anon_sym_LT_DASH] = ACTIONS(2589), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2589), + [anon_sym_when] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_EQ] = ACTIONS(2589), + [anon_sym_PIPE_PIPE] = ACTIONS(2589), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2589), + [anon_sym_or] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2589), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2589), + [anon_sym_and] = ACTIONS(2589), + [anon_sym_EQ_EQ] = ACTIONS(2589), + [anon_sym_BANG_EQ] = ACTIONS(2589), + [anon_sym_EQ_TILDE] = ACTIONS(2589), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2589), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2589), + [anon_sym_LT_EQ] = ACTIONS(2589), + [anon_sym_GT_EQ] = ACTIONS(2589), + [anon_sym_PIPE_GT] = ACTIONS(2589), + [anon_sym_LT_LT_LT] = ACTIONS(2589), + [anon_sym_GT_GT_GT] = ACTIONS(2589), + [anon_sym_LT_LT_TILDE] = ACTIONS(2589), + [anon_sym_TILDE_GT_GT] = ACTIONS(2589), + [anon_sym_LT_TILDE] = ACTIONS(2589), + [anon_sym_TILDE_GT] = ACTIONS(2589), + [anon_sym_LT_TILDE_GT] = ACTIONS(2589), + [anon_sym_LT_PIPE_GT] = ACTIONS(2589), + [anon_sym_in] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2589), + [anon_sym_DOT_DOT] = ACTIONS(2589), + [anon_sym_LT_GT] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_STAR_STAR] = ACTIONS(2589), + [anon_sym_CARET_CARET] = ACTIONS(2589), + [anon_sym_DASH_GT] = ACTIONS(2589), + [anon_sym_DOT] = ACTIONS(2589), + [anon_sym_after] = ACTIONS(2589), + [anon_sym_catch] = ACTIONS(2589), + [anon_sym_else] = ACTIONS(2589), + [anon_sym_end] = ACTIONS(2589), + [anon_sym_fn] = ACTIONS(2589), + [anon_sym_rescue] = ACTIONS(2589), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2591), + [sym__not_in] = ACTIONS(2591), + [sym__quoted_atom_start] = ACTIONS(2591), + }, + [1009] = { + [aux_sym__terminator_repeat1] = STATE(1010), + [aux_sym__terminator_token1] = ACTIONS(2600), + [anon_sym_SEMI] = ACTIONS(2604), + [anon_sym_LPAREN] = ACTIONS(2589), + [aux_sym_identifier_token1] = ACTIONS(2589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2589), + [sym_alias] = ACTIONS(2589), + [sym_integer] = ACTIONS(2589), + [sym_float] = ACTIONS(2589), + [sym_char] = ACTIONS(2589), + [anon_sym_true] = ACTIONS(2589), + [anon_sym_false] = ACTIONS(2589), + [anon_sym_nil] = ACTIONS(2589), + [sym_atom] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_GT] = ACTIONS(2589), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_SLASH] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [anon_sym_LT_LT] = ACTIONS(2589), + [anon_sym_PERCENT] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_CARET] = ACTIONS(2589), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2589), + [anon_sym_not] = ACTIONS(2589), + [anon_sym_AT] = ACTIONS(2589), + [anon_sym_LT_DASH] = ACTIONS(2589), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2589), + [anon_sym_when] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_EQ] = ACTIONS(2589), + [anon_sym_PIPE_PIPE] = ACTIONS(2589), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2589), + [anon_sym_or] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2589), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2589), + [anon_sym_and] = ACTIONS(2589), + [anon_sym_EQ_EQ] = ACTIONS(2589), + [anon_sym_BANG_EQ] = ACTIONS(2589), + [anon_sym_EQ_TILDE] = ACTIONS(2589), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2589), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2589), + [anon_sym_LT_EQ] = ACTIONS(2589), + [anon_sym_GT_EQ] = ACTIONS(2589), + [anon_sym_PIPE_GT] = ACTIONS(2589), + [anon_sym_LT_LT_LT] = ACTIONS(2589), + [anon_sym_GT_GT_GT] = ACTIONS(2589), + [anon_sym_LT_LT_TILDE] = ACTIONS(2589), + [anon_sym_TILDE_GT_GT] = ACTIONS(2589), + [anon_sym_LT_TILDE] = ACTIONS(2589), + [anon_sym_TILDE_GT] = ACTIONS(2589), + [anon_sym_LT_TILDE_GT] = ACTIONS(2589), + [anon_sym_LT_PIPE_GT] = ACTIONS(2589), + [anon_sym_in] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2589), + [anon_sym_DOT_DOT] = ACTIONS(2589), + [anon_sym_LT_GT] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_STAR_STAR] = ACTIONS(2589), + [anon_sym_CARET_CARET] = ACTIONS(2589), + [anon_sym_DASH_GT] = ACTIONS(2589), + [anon_sym_DOT] = ACTIONS(2589), + [anon_sym_after] = ACTIONS(2589), + [anon_sym_catch] = ACTIONS(2589), + [anon_sym_else] = ACTIONS(2589), + [anon_sym_end] = ACTIONS(2589), + [anon_sym_fn] = ACTIONS(2589), + [anon_sym_rescue] = ACTIONS(2589), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2591), + [sym__not_in] = ACTIONS(2591), + [sym__quoted_atom_start] = ACTIONS(2591), + }, + [1010] = { + [aux_sym__terminator_repeat1] = STATE(1010), + [aux_sym__terminator_token1] = ACTIONS(2606), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_LPAREN] = ACTIONS(2596), + [aux_sym_identifier_token1] = ACTIONS(2596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2596), + [sym_alias] = ACTIONS(2596), + [sym_integer] = ACTIONS(2596), + [sym_float] = ACTIONS(2596), + [sym_char] = ACTIONS(2596), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_nil] = ACTIONS(2596), + [sym_atom] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2596), + [anon_sym_LBRACK] = ACTIONS(2596), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_GT] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2596), + [anon_sym_SLASH] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2596), + [anon_sym_LT_LT] = ACTIONS(2596), + [anon_sym_PERCENT] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2596), + [anon_sym_BANG] = ACTIONS(2596), + [anon_sym_CARET] = ACTIONS(2596), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2596), + [anon_sym_not] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(2596), + [anon_sym_LT_DASH] = ACTIONS(2596), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2596), + [anon_sym_when] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_PIPE_PIPE] = ACTIONS(2596), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(2596), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2596), + [anon_sym_and] = ACTIONS(2596), + [anon_sym_EQ_EQ] = ACTIONS(2596), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_EQ_TILDE] = ACTIONS(2596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2596), + [anon_sym_LT_EQ] = ACTIONS(2596), + [anon_sym_GT_EQ] = ACTIONS(2596), + [anon_sym_PIPE_GT] = ACTIONS(2596), + [anon_sym_LT_LT_LT] = ACTIONS(2596), + [anon_sym_GT_GT_GT] = ACTIONS(2596), + [anon_sym_LT_LT_TILDE] = ACTIONS(2596), + [anon_sym_TILDE_GT_GT] = ACTIONS(2596), + [anon_sym_LT_TILDE] = ACTIONS(2596), + [anon_sym_TILDE_GT] = ACTIONS(2596), + [anon_sym_LT_TILDE_GT] = ACTIONS(2596), + [anon_sym_LT_PIPE_GT] = ACTIONS(2596), + [anon_sym_in] = ACTIONS(2596), + [anon_sym_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_DASH_DASH] = ACTIONS(2596), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2596), + [anon_sym_DOT_DOT] = ACTIONS(2596), + [anon_sym_LT_GT] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_STAR_STAR] = ACTIONS(2596), + [anon_sym_CARET_CARET] = ACTIONS(2596), + [anon_sym_DASH_GT] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(2596), + [anon_sym_after] = ACTIONS(2596), + [anon_sym_catch] = ACTIONS(2596), + [anon_sym_else] = ACTIONS(2596), + [anon_sym_end] = ACTIONS(2596), + [anon_sym_fn] = ACTIONS(2596), + [anon_sym_rescue] = ACTIONS(2596), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__before_unary_op] = ACTIONS(2598), + [sym__not_in] = ACTIONS(2598), + [sym__quoted_atom_start] = ACTIONS(2598), + }, + [1011] = { + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2609), + [aux_sym_identifier_token1] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2609), [sym_alias] = ACTIONS(2609), [sym_integer] = ACTIONS(2609), [sym_float] = ACTIONS(2609), [sym_char] = ACTIONS(2609), - [anon_sym_true] = ACTIONS(75), - [anon_sym_false] = ACTIONS(75), - [anon_sym_nil] = ACTIONS(77), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_nil] = ACTIONS(2609), [sym_atom] = ACTIONS(2609), - [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), + [anon_sym_DQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_GT] = ACTIONS(2609), + [anon_sym_PIPE] = ACTIONS(2609), + [anon_sym_SLASH] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2609), + [sym_keyword] = ACTIONS(2609), + [anon_sym_LT_LT] = ACTIONS(2609), + [anon_sym_PERCENT] = ACTIONS(2609), + [anon_sym_AMP] = ACTIONS(2609), + [anon_sym_PLUS] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_CARET] = ACTIONS(2609), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2609), + [anon_sym_not] = ACTIONS(2609), + [anon_sym_AT] = ACTIONS(2609), + [anon_sym_LT_DASH] = ACTIONS(2609), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2609), + [anon_sym_when] = ACTIONS(2609), + [anon_sym_COLON_COLON] = ACTIONS(2609), + [anon_sym_EQ] = ACTIONS(2609), + [anon_sym_PIPE_PIPE] = ACTIONS(2609), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2609), + [anon_sym_or] = ACTIONS(2609), + [anon_sym_AMP_AMP] = ACTIONS(2609), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2609), + [anon_sym_and] = ACTIONS(2609), + [anon_sym_EQ_EQ] = ACTIONS(2609), + [anon_sym_BANG_EQ] = ACTIONS(2609), + [anon_sym_EQ_TILDE] = ACTIONS(2609), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2609), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2609), + [anon_sym_LT_EQ] = ACTIONS(2609), + [anon_sym_GT_EQ] = ACTIONS(2609), + [anon_sym_PIPE_GT] = ACTIONS(2609), + [anon_sym_LT_LT_LT] = ACTIONS(2609), + [anon_sym_GT_GT_GT] = ACTIONS(2609), + [anon_sym_LT_LT_TILDE] = ACTIONS(2609), + [anon_sym_TILDE_GT_GT] = ACTIONS(2609), + [anon_sym_LT_TILDE] = ACTIONS(2609), + [anon_sym_TILDE_GT] = ACTIONS(2609), + [anon_sym_LT_TILDE_GT] = ACTIONS(2609), + [anon_sym_LT_PIPE_GT] = ACTIONS(2609), + [anon_sym_in] = ACTIONS(2609), + [anon_sym_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2609), + [anon_sym_DOT_DOT] = ACTIONS(2609), + [anon_sym_LT_GT] = ACTIONS(2609), + [anon_sym_STAR] = ACTIONS(2609), + [anon_sym_STAR_STAR] = ACTIONS(2609), + [anon_sym_CARET_CARET] = ACTIONS(2609), + [anon_sym_DASH_GT] = ACTIONS(2609), + [anon_sym_DOT] = ACTIONS(2609), + [anon_sym_after] = ACTIONS(2609), + [anon_sym_catch] = ACTIONS(2609), + [anon_sym_else] = ACTIONS(2609), + [anon_sym_end] = ACTIONS(2609), + [anon_sym_fn] = ACTIONS(2609), + [anon_sym_rescue] = ACTIONS(2609), [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), - }, - [910] = { - [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), }, - [911] = { - [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), - }, - [912] = { - [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_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), - }, - [913] = { - [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_after] = ACTIONS(2625), - [anon_sym_catch] = ACTIONS(2625), - [anon_sym_do] = ACTIONS(2625), - [anon_sym_else] = ACTIONS(2625), - [anon_sym_end] = ACTIONS(2625), - [anon_sym_fn] = ACTIONS(2625), - [anon_sym_rescue] = 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), - }, - [914] = { - [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_after] = ACTIONS(2629), - [anon_sym_catch] = ACTIONS(2629), - [anon_sym_do] = ACTIONS(2629), - [anon_sym_else] = ACTIONS(2629), - [anon_sym_end] = ACTIONS(2629), - [anon_sym_fn] = ACTIONS(2629), - [anon_sym_rescue] = 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), - }, - [915] = { - [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_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), - }, - [916] = { - [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), - }, - [917] = { - [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_after] = ACTIONS(2641), - [anon_sym_catch] = ACTIONS(2641), - [anon_sym_do] = ACTIONS(2641), - [anon_sym_else] = ACTIONS(2641), - [anon_sym_end] = ACTIONS(2641), - [anon_sym_fn] = ACTIONS(2641), - [anon_sym_rescue] = 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), - }, - [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), - [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), - }, - [923] = { - [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), - }, - [924] = { - [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_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), - }, - [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(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), - [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), - }, - [929] = { - [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_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), - }, - [930] = { - [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), - }, - [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(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(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), - }, - [936] = { - [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), - }, - [937] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [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(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), - }, - [938] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [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(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), - }, - [939] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [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(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), - }, - [940] = { - [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), - }, - [941] = { - [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), - }, - [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), - [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), - }, - [944] = { - [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), - }, - [945] = { - [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), - [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), - }, - [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), - [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), - }, - [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(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), - }, - [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(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), - }, - [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(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), - }, - [952] = { - [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), - }, - [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), - [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), - }, - [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), - [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), - }, - [970] = { - [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), - }, - [971] = { - [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), - }, - [972] = { - [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), - }, - [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(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), - }, - [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(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), - }, - [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), - [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_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), - }, - [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), - [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), - }, - [984] = { - [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_end] = 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), - }, - [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(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), - }, - [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(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), - }, - [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), - [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), - }, - [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), - [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), - }, - [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(2615), - [sym__not_in] = ACTIONS(2615), - [sym__quoted_atom_start] = ACTIONS(2615), - }, - [997] = { - [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), - }, - [998] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [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_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), - }, - [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(2619), - [sym__not_in] = ACTIONS(2619), - [sym__quoted_atom_start] = ACTIONS(2619), - }, - [1000] = { - [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), - }, - [1001] = { - [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), - [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), - }, - [1002] = { - [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), - }, - [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), - [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(2615), - [sym__not_in] = ACTIONS(2615), - [sym__quoted_atom_start] = ACTIONS(2615), - }, - [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(2619), - [sym__not_in] = ACTIONS(2619), - [sym__quoted_atom_start] = ACTIONS(2619), - }, - [1005] = { - [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), - [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), - }, - [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(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), + [aux_sym__terminator_token1] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym_LPAREN] = ACTIONS(2609), + [aux_sym_identifier_token1] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2609), + [sym_alias] = ACTIONS(2609), + [sym_integer] = ACTIONS(2609), + [sym_float] = ACTIONS(2609), + [sym_char] = ACTIONS(2609), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_nil] = ACTIONS(2609), + [sym_atom] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_GT] = ACTIONS(2609), + [anon_sym_PIPE] = ACTIONS(2609), + [anon_sym_SLASH] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2609), + [anon_sym_LT_LT] = ACTIONS(2609), + [anon_sym_PERCENT] = ACTIONS(2609), + [anon_sym_AMP] = ACTIONS(2609), + [anon_sym_PLUS] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_CARET] = ACTIONS(2609), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2609), + [anon_sym_not] = ACTIONS(2609), + [anon_sym_AT] = ACTIONS(2609), + [anon_sym_LT_DASH] = ACTIONS(2609), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2609), + [anon_sym_when] = ACTIONS(2609), + [anon_sym_COLON_COLON] = ACTIONS(2609), + [anon_sym_EQ] = ACTIONS(2609), + [anon_sym_PIPE_PIPE] = ACTIONS(2609), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2609), + [anon_sym_or] = ACTIONS(2609), + [anon_sym_AMP_AMP] = ACTIONS(2609), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2609), + [anon_sym_and] = ACTIONS(2609), + [anon_sym_EQ_EQ] = ACTIONS(2609), + [anon_sym_BANG_EQ] = ACTIONS(2609), + [anon_sym_EQ_TILDE] = ACTIONS(2609), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2609), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2609), + [anon_sym_LT_EQ] = ACTIONS(2609), + [anon_sym_GT_EQ] = ACTIONS(2609), + [anon_sym_PIPE_GT] = ACTIONS(2609), + [anon_sym_LT_LT_LT] = ACTIONS(2609), + [anon_sym_GT_GT_GT] = ACTIONS(2609), + [anon_sym_LT_LT_TILDE] = ACTIONS(2609), + [anon_sym_TILDE_GT_GT] = ACTIONS(2609), + [anon_sym_LT_TILDE] = ACTIONS(2609), + [anon_sym_TILDE_GT] = ACTIONS(2609), + [anon_sym_LT_TILDE_GT] = ACTIONS(2609), + [anon_sym_LT_PIPE_GT] = ACTIONS(2609), + [anon_sym_in] = ACTIONS(2609), + [anon_sym_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2609), + [anon_sym_DOT_DOT] = ACTIONS(2609), + [anon_sym_LT_GT] = ACTIONS(2609), + [anon_sym_STAR] = ACTIONS(2609), + [anon_sym_STAR_STAR] = ACTIONS(2609), + [anon_sym_CARET_CARET] = ACTIONS(2609), + [anon_sym_DASH_GT] = ACTIONS(2609), + [anon_sym_DOT] = ACTIONS(2609), + [anon_sym_after] = ACTIONS(2609), + [anon_sym_catch] = ACTIONS(2609), + [anon_sym_else] = ACTIONS(2609), + [anon_sym_end] = ACTIONS(2609), + [anon_sym_fn] = ACTIONS(2609), + [anon_sym_rescue] = ACTIONS(2609), [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), + [sym__before_unary_op] = ACTIONS(2611), + [sym__not_in] = ACTIONS(2611), + [sym__quoted_atom_start] = ACTIONS(2611), }, [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), + [anon_sym_LPAREN] = ACTIONS(2609), + [aux_sym_identifier_token1] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2609), + [sym_alias] = ACTIONS(2609), + [sym_integer] = ACTIONS(2609), + [sym_float] = ACTIONS(2609), + [sym_char] = ACTIONS(2609), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_nil] = ACTIONS(2609), + [sym_atom] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_GT] = ACTIONS(2609), + [anon_sym_PIPE] = ACTIONS(2609), + [anon_sym_SLASH] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2609), + [anon_sym_LT_LT] = ACTIONS(2609), + [anon_sym_PERCENT] = ACTIONS(2609), + [anon_sym_AMP] = ACTIONS(2609), + [anon_sym_PLUS] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_CARET] = ACTIONS(2609), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2609), + [anon_sym_not] = ACTIONS(2609), + [anon_sym_AT] = ACTIONS(2609), + [anon_sym_LT_DASH] = ACTIONS(2609), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2609), + [anon_sym_when] = ACTIONS(2609), + [anon_sym_COLON_COLON] = ACTIONS(2609), + [anon_sym_EQ] = ACTIONS(2609), + [anon_sym_PIPE_PIPE] = ACTIONS(2609), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2609), + [anon_sym_or] = ACTIONS(2609), + [anon_sym_AMP_AMP] = ACTIONS(2609), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2609), + [anon_sym_and] = ACTIONS(2609), + [anon_sym_EQ_EQ] = ACTIONS(2609), + [anon_sym_BANG_EQ] = ACTIONS(2609), + [anon_sym_EQ_TILDE] = ACTIONS(2609), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2609), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2609), + [anon_sym_LT_EQ] = ACTIONS(2609), + [anon_sym_GT_EQ] = ACTIONS(2609), + [anon_sym_PIPE_GT] = ACTIONS(2609), + [anon_sym_LT_LT_LT] = ACTIONS(2609), + [anon_sym_GT_GT_GT] = ACTIONS(2609), + [anon_sym_LT_LT_TILDE] = ACTIONS(2609), + [anon_sym_TILDE_GT_GT] = ACTIONS(2609), + [anon_sym_LT_TILDE] = ACTIONS(2609), + [anon_sym_TILDE_GT] = ACTIONS(2609), + [anon_sym_LT_TILDE_GT] = ACTIONS(2609), + [anon_sym_LT_PIPE_GT] = ACTIONS(2609), + [anon_sym_in] = ACTIONS(2609), + [anon_sym_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2609), + [anon_sym_DOT_DOT] = ACTIONS(2609), + [anon_sym_LT_GT] = ACTIONS(2609), + [anon_sym_STAR] = ACTIONS(2609), + [anon_sym_STAR_STAR] = ACTIONS(2609), + [anon_sym_CARET_CARET] = ACTIONS(2609), + [anon_sym_DASH_GT] = ACTIONS(2609), + [anon_sym_DOT] = ACTIONS(2609), + [anon_sym_after] = ACTIONS(2609), + [anon_sym_catch] = ACTIONS(2609), + [anon_sym_else] = ACTIONS(2609), + [anon_sym_end] = ACTIONS(2609), + [anon_sym_fn] = ACTIONS(2609), + [anon_sym_rescue] = ACTIONS(2609), [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), + [sym__before_unary_op] = ACTIONS(2611), + [sym__not_in] = ACTIONS(2611), + [sym__quoted_atom_start] = ACTIONS(2611), }, [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), + [aux_sym__terminator_repeat1] = STATE(1015), + [aux_sym__terminator_token1] = ACTIONS(2613), + [anon_sym_SEMI] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_RPAREN] = ACTIONS(2589), + [aux_sym_identifier_token1] = ACTIONS(2589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2589), + [sym_alias] = ACTIONS(2589), + [sym_integer] = ACTIONS(2589), + [sym_float] = ACTIONS(2589), + [sym_char] = ACTIONS(2589), + [anon_sym_true] = ACTIONS(2589), + [anon_sym_false] = ACTIONS(2589), + [anon_sym_nil] = ACTIONS(2589), + [sym_atom] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_GT] = ACTIONS(2589), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_SLASH] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [sym_keyword] = ACTIONS(2589), + [anon_sym_LT_LT] = ACTIONS(2589), + [anon_sym_PERCENT] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_CARET] = ACTIONS(2589), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2589), + [anon_sym_not] = ACTIONS(2589), + [anon_sym_AT] = ACTIONS(2589), + [anon_sym_LT_DASH] = ACTIONS(2589), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2589), + [anon_sym_when] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_EQ] = ACTIONS(2589), + [anon_sym_PIPE_PIPE] = ACTIONS(2589), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2589), + [anon_sym_or] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2589), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2589), + [anon_sym_and] = ACTIONS(2589), + [anon_sym_EQ_EQ] = ACTIONS(2589), + [anon_sym_BANG_EQ] = ACTIONS(2589), + [anon_sym_EQ_TILDE] = ACTIONS(2589), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2589), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2589), + [anon_sym_LT_EQ] = ACTIONS(2589), + [anon_sym_GT_EQ] = ACTIONS(2589), + [anon_sym_PIPE_GT] = ACTIONS(2589), + [anon_sym_LT_LT_LT] = ACTIONS(2589), + [anon_sym_GT_GT_GT] = ACTIONS(2589), + [anon_sym_LT_LT_TILDE] = ACTIONS(2589), + [anon_sym_TILDE_GT_GT] = ACTIONS(2589), + [anon_sym_LT_TILDE] = ACTIONS(2589), + [anon_sym_TILDE_GT] = ACTIONS(2589), + [anon_sym_LT_TILDE_GT] = ACTIONS(2589), + [anon_sym_LT_PIPE_GT] = ACTIONS(2589), + [anon_sym_in] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2589), + [anon_sym_DOT_DOT] = ACTIONS(2589), + [anon_sym_LT_GT] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_STAR_STAR] = ACTIONS(2589), + [anon_sym_CARET_CARET] = ACTIONS(2589), + [anon_sym_DASH_GT] = ACTIONS(2589), + [anon_sym_DOT] = ACTIONS(2589), + [anon_sym_fn] = ACTIONS(2589), [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), + [sym__before_unary_op] = ACTIONS(2591), + [sym__not_in] = ACTIONS(2591), + [sym__quoted_atom_start] = ACTIONS(2591), }, [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), + [aux_sym__terminator_repeat1] = STATE(1015), + [aux_sym__terminator_token1] = ACTIONS(2617), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_LPAREN] = ACTIONS(2596), + [anon_sym_RPAREN] = ACTIONS(2596), + [aux_sym_identifier_token1] = ACTIONS(2596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2596), + [sym_alias] = ACTIONS(2596), + [sym_integer] = ACTIONS(2596), + [sym_float] = ACTIONS(2596), + [sym_char] = ACTIONS(2596), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_nil] = ACTIONS(2596), + [sym_atom] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2596), + [anon_sym_LBRACK] = ACTIONS(2596), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_GT] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2596), + [anon_sym_SLASH] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2596), + [sym_keyword] = ACTIONS(2596), + [anon_sym_LT_LT] = ACTIONS(2596), + [anon_sym_PERCENT] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2596), + [anon_sym_BANG] = ACTIONS(2596), + [anon_sym_CARET] = ACTIONS(2596), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2596), + [anon_sym_not] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(2596), + [anon_sym_LT_DASH] = ACTIONS(2596), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2596), + [anon_sym_when] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_PIPE_PIPE] = ACTIONS(2596), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(2596), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2596), + [anon_sym_and] = ACTIONS(2596), + [anon_sym_EQ_EQ] = ACTIONS(2596), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_EQ_TILDE] = ACTIONS(2596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2596), + [anon_sym_LT_EQ] = ACTIONS(2596), + [anon_sym_GT_EQ] = ACTIONS(2596), + [anon_sym_PIPE_GT] = ACTIONS(2596), + [anon_sym_LT_LT_LT] = ACTIONS(2596), + [anon_sym_GT_GT_GT] = ACTIONS(2596), + [anon_sym_LT_LT_TILDE] = ACTIONS(2596), + [anon_sym_TILDE_GT_GT] = ACTIONS(2596), + [anon_sym_LT_TILDE] = ACTIONS(2596), + [anon_sym_TILDE_GT] = ACTIONS(2596), + [anon_sym_LT_TILDE_GT] = ACTIONS(2596), + [anon_sym_LT_PIPE_GT] = ACTIONS(2596), + [anon_sym_in] = ACTIONS(2596), + [anon_sym_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_DASH_DASH] = ACTIONS(2596), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2596), + [anon_sym_DOT_DOT] = ACTIONS(2596), + [anon_sym_LT_GT] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_STAR_STAR] = ACTIONS(2596), + [anon_sym_CARET_CARET] = ACTIONS(2596), + [anon_sym_DASH_GT] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(2596), + [anon_sym_fn] = ACTIONS(2596), [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), + [sym__before_unary_op] = ACTIONS(2598), + [sym__not_in] = ACTIONS(2598), + [sym__quoted_atom_start] = ACTIONS(2598), }, [1016] = { - [aux_sym__terminator_token1] = ACTIONS(3), - [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), + [aux_sym__terminator_repeat1] = STATE(1018), + [ts_builtin_sym_end] = ACTIONS(2591), + [aux_sym__terminator_token1] = ACTIONS(2620), + [anon_sym_SEMI] = ACTIONS(2622), + [anon_sym_LPAREN] = ACTIONS(2589), + [aux_sym_identifier_token1] = ACTIONS(2589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2589), + [sym_alias] = ACTIONS(2589), + [sym_integer] = ACTIONS(2589), + [sym_float] = ACTIONS(2589), + [sym_char] = ACTIONS(2589), + [anon_sym_true] = ACTIONS(2589), + [anon_sym_false] = ACTIONS(2589), + [anon_sym_nil] = ACTIONS(2589), + [sym_atom] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_GT] = ACTIONS(2589), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_SLASH] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [anon_sym_LT_LT] = ACTIONS(2589), + [anon_sym_PERCENT] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_CARET] = ACTIONS(2589), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2589), + [anon_sym_not] = ACTIONS(2589), + [anon_sym_AT] = ACTIONS(2589), + [anon_sym_LT_DASH] = ACTIONS(2589), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2589), + [anon_sym_when] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_EQ] = ACTIONS(2589), + [anon_sym_PIPE_PIPE] = ACTIONS(2589), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2589), + [anon_sym_or] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2589), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2589), + [anon_sym_and] = ACTIONS(2589), + [anon_sym_EQ_EQ] = ACTIONS(2589), + [anon_sym_BANG_EQ] = ACTIONS(2589), + [anon_sym_EQ_TILDE] = ACTIONS(2589), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2589), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2589), + [anon_sym_LT_EQ] = ACTIONS(2589), + [anon_sym_GT_EQ] = ACTIONS(2589), + [anon_sym_PIPE_GT] = ACTIONS(2589), + [anon_sym_LT_LT_LT] = ACTIONS(2589), + [anon_sym_GT_GT_GT] = ACTIONS(2589), + [anon_sym_LT_LT_TILDE] = ACTIONS(2589), + [anon_sym_TILDE_GT_GT] = ACTIONS(2589), + [anon_sym_LT_TILDE] = ACTIONS(2589), + [anon_sym_TILDE_GT] = ACTIONS(2589), + [anon_sym_LT_TILDE_GT] = ACTIONS(2589), + [anon_sym_LT_PIPE_GT] = ACTIONS(2589), + [anon_sym_in] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2589), + [anon_sym_DOT_DOT] = ACTIONS(2589), + [anon_sym_LT_GT] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_STAR_STAR] = ACTIONS(2589), + [anon_sym_CARET_CARET] = ACTIONS(2589), + [anon_sym_DASH_GT] = ACTIONS(2589), + [anon_sym_DOT] = ACTIONS(2589), + [anon_sym_fn] = ACTIONS(2589), [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), + [sym__before_unary_op] = ACTIONS(2591), + [sym__not_in] = ACTIONS(2591), + [sym__quoted_atom_start] = ACTIONS(2591), }, [1017] = { - [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), + [aux_sym__terminator_repeat1] = STATE(1017), + [aux_sym__terminator_token1] = ACTIONS(2624), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_LPAREN] = ACTIONS(2596), + [anon_sym_RPAREN] = ACTIONS(2596), + [aux_sym_identifier_token1] = ACTIONS(2596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2596), + [sym_alias] = ACTIONS(2596), + [sym_integer] = ACTIONS(2596), + [sym_float] = ACTIONS(2596), + [sym_char] = ACTIONS(2596), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_nil] = ACTIONS(2596), + [sym_atom] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2596), + [anon_sym_LBRACK] = ACTIONS(2596), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_GT] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2596), + [anon_sym_SLASH] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2596), + [anon_sym_LT_LT] = ACTIONS(2596), + [anon_sym_PERCENT] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2596), + [anon_sym_BANG] = ACTIONS(2596), + [anon_sym_CARET] = ACTIONS(2596), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2596), + [anon_sym_not] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(2596), + [anon_sym_LT_DASH] = ACTIONS(2596), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2596), + [anon_sym_when] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_PIPE_PIPE] = ACTIONS(2596), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(2596), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2596), + [anon_sym_and] = ACTIONS(2596), + [anon_sym_EQ_EQ] = ACTIONS(2596), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_EQ_TILDE] = ACTIONS(2596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2596), + [anon_sym_LT_EQ] = ACTIONS(2596), + [anon_sym_GT_EQ] = ACTIONS(2596), + [anon_sym_PIPE_GT] = ACTIONS(2596), + [anon_sym_LT_LT_LT] = ACTIONS(2596), + [anon_sym_GT_GT_GT] = ACTIONS(2596), + [anon_sym_LT_LT_TILDE] = ACTIONS(2596), + [anon_sym_TILDE_GT_GT] = ACTIONS(2596), + [anon_sym_LT_TILDE] = ACTIONS(2596), + [anon_sym_TILDE_GT] = ACTIONS(2596), + [anon_sym_LT_TILDE_GT] = ACTIONS(2596), + [anon_sym_LT_PIPE_GT] = ACTIONS(2596), + [anon_sym_in] = ACTIONS(2596), + [anon_sym_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_DASH_DASH] = ACTIONS(2596), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2596), + [anon_sym_DOT_DOT] = ACTIONS(2596), + [anon_sym_LT_GT] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_STAR_STAR] = ACTIONS(2596), + [anon_sym_CARET_CARET] = ACTIONS(2596), + [anon_sym_DASH_GT] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(2596), + [anon_sym_fn] = ACTIONS(2596), [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), + [sym__before_unary_op] = ACTIONS(2598), + [sym__not_in] = ACTIONS(2598), + [sym__quoted_atom_start] = ACTIONS(2598), }, [1018] = { - [aux_sym__terminator_repeat1] = STATE(1019), - [aux_sym__terminator_token1] = ACTIONS(2655), - [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), + [aux_sym__terminator_repeat1] = STATE(1018), + [ts_builtin_sym_end] = ACTIONS(2598), + [aux_sym__terminator_token1] = ACTIONS(2627), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_LPAREN] = ACTIONS(2596), + [aux_sym_identifier_token1] = ACTIONS(2596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2596), + [sym_alias] = ACTIONS(2596), + [sym_integer] = ACTIONS(2596), + [sym_float] = ACTIONS(2596), + [sym_char] = ACTIONS(2596), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_nil] = ACTIONS(2596), + [sym_atom] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2596), + [anon_sym_LBRACK] = ACTIONS(2596), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_GT] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2596), + [anon_sym_SLASH] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2596), + [anon_sym_LT_LT] = ACTIONS(2596), + [anon_sym_PERCENT] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2596), + [anon_sym_BANG] = ACTIONS(2596), + [anon_sym_CARET] = ACTIONS(2596), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2596), + [anon_sym_not] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(2596), + [anon_sym_LT_DASH] = ACTIONS(2596), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2596), + [anon_sym_when] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_PIPE_PIPE] = ACTIONS(2596), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(2596), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2596), + [anon_sym_and] = ACTIONS(2596), + [anon_sym_EQ_EQ] = ACTIONS(2596), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_EQ_TILDE] = ACTIONS(2596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2596), + [anon_sym_LT_EQ] = ACTIONS(2596), + [anon_sym_GT_EQ] = ACTIONS(2596), + [anon_sym_PIPE_GT] = ACTIONS(2596), + [anon_sym_LT_LT_LT] = ACTIONS(2596), + [anon_sym_GT_GT_GT] = ACTIONS(2596), + [anon_sym_LT_LT_TILDE] = ACTIONS(2596), + [anon_sym_TILDE_GT_GT] = ACTIONS(2596), + [anon_sym_LT_TILDE] = ACTIONS(2596), + [anon_sym_TILDE_GT] = ACTIONS(2596), + [anon_sym_LT_TILDE_GT] = ACTIONS(2596), + [anon_sym_LT_PIPE_GT] = ACTIONS(2596), + [anon_sym_in] = ACTIONS(2596), + [anon_sym_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_DASH_DASH] = ACTIONS(2596), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2596), + [anon_sym_DOT_DOT] = ACTIONS(2596), + [anon_sym_LT_GT] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_STAR_STAR] = ACTIONS(2596), + [anon_sym_CARET_CARET] = ACTIONS(2596), + [anon_sym_DASH_GT] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(2596), + [anon_sym_fn] = ACTIONS(2596), [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), + [sym__before_unary_op] = ACTIONS(2598), + [sym__not_in] = ACTIONS(2598), + [sym__quoted_atom_start] = ACTIONS(2598), }, [1019] = { - [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), - [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), - [sym_keyword] = 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), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym__terminator_token1] = ACTIONS(2630), + [anon_sym_SEMI] = ACTIONS(2632), + [anon_sym_LPAREN] = ACTIONS(2589), + [aux_sym_identifier_token1] = ACTIONS(2589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2589), + [sym_alias] = ACTIONS(2589), + [sym_integer] = ACTIONS(2589), + [sym_float] = ACTIONS(2589), + [sym_char] = ACTIONS(2589), + [anon_sym_true] = ACTIONS(2589), + [anon_sym_false] = ACTIONS(2589), + [anon_sym_nil] = ACTIONS(2589), + [sym_atom] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_GT] = ACTIONS(2589), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_SLASH] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [anon_sym_LT_LT] = ACTIONS(2589), + [anon_sym_PERCENT] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_CARET] = ACTIONS(2589), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2589), + [anon_sym_not] = ACTIONS(2589), + [anon_sym_AT] = ACTIONS(2589), + [anon_sym_LT_DASH] = ACTIONS(2589), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2589), + [anon_sym_when] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_EQ] = ACTIONS(2589), + [anon_sym_PIPE_PIPE] = ACTIONS(2589), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2589), + [anon_sym_or] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2589), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2589), + [anon_sym_and] = ACTIONS(2589), + [anon_sym_EQ_EQ] = ACTIONS(2589), + [anon_sym_BANG_EQ] = ACTIONS(2589), + [anon_sym_EQ_TILDE] = ACTIONS(2589), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2589), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2589), + [anon_sym_LT_EQ] = ACTIONS(2589), + [anon_sym_GT_EQ] = ACTIONS(2589), + [anon_sym_PIPE_GT] = ACTIONS(2589), + [anon_sym_LT_LT_LT] = ACTIONS(2589), + [anon_sym_GT_GT_GT] = ACTIONS(2589), + [anon_sym_LT_LT_TILDE] = ACTIONS(2589), + [anon_sym_TILDE_GT_GT] = ACTIONS(2589), + [anon_sym_LT_TILDE] = ACTIONS(2589), + [anon_sym_TILDE_GT] = ACTIONS(2589), + [anon_sym_LT_TILDE_GT] = ACTIONS(2589), + [anon_sym_LT_PIPE_GT] = ACTIONS(2589), + [anon_sym_in] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2589), + [anon_sym_DOT_DOT] = ACTIONS(2589), + [anon_sym_LT_GT] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_STAR_STAR] = ACTIONS(2589), + [anon_sym_CARET_CARET] = ACTIONS(2589), + [anon_sym_DASH_GT] = ACTIONS(2589), + [anon_sym_DOT] = ACTIONS(2589), + [anon_sym_end] = ACTIONS(2589), + [anon_sym_fn] = ACTIONS(2589), [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(2591), + [sym__not_in] = ACTIONS(2591), + [sym__quoted_atom_start] = ACTIONS(2591), }, [1020] = { - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym__terminator_token1] = ACTIONS(2670), - [anon_sym_SEMI] = ACTIONS(2666), - [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), + [aux_sym__terminator_repeat1] = STATE(1017), + [aux_sym__terminator_token1] = ACTIONS(2634), + [anon_sym_SEMI] = ACTIONS(2636), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_RPAREN] = ACTIONS(2589), + [aux_sym_identifier_token1] = ACTIONS(2589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2589), + [sym_alias] = ACTIONS(2589), + [sym_integer] = ACTIONS(2589), + [sym_float] = ACTIONS(2589), + [sym_char] = ACTIONS(2589), + [anon_sym_true] = ACTIONS(2589), + [anon_sym_false] = ACTIONS(2589), + [anon_sym_nil] = ACTIONS(2589), + [sym_atom] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_GT] = ACTIONS(2589), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_SLASH] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [anon_sym_LT_LT] = ACTIONS(2589), + [anon_sym_PERCENT] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_CARET] = ACTIONS(2589), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2589), + [anon_sym_not] = ACTIONS(2589), + [anon_sym_AT] = ACTIONS(2589), + [anon_sym_LT_DASH] = ACTIONS(2589), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2589), + [anon_sym_when] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_EQ] = ACTIONS(2589), + [anon_sym_PIPE_PIPE] = ACTIONS(2589), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2589), + [anon_sym_or] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2589), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2589), + [anon_sym_and] = ACTIONS(2589), + [anon_sym_EQ_EQ] = ACTIONS(2589), + [anon_sym_BANG_EQ] = ACTIONS(2589), + [anon_sym_EQ_TILDE] = ACTIONS(2589), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2589), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2589), + [anon_sym_LT_EQ] = ACTIONS(2589), + [anon_sym_GT_EQ] = ACTIONS(2589), + [anon_sym_PIPE_GT] = ACTIONS(2589), + [anon_sym_LT_LT_LT] = ACTIONS(2589), + [anon_sym_GT_GT_GT] = ACTIONS(2589), + [anon_sym_LT_LT_TILDE] = ACTIONS(2589), + [anon_sym_TILDE_GT_GT] = ACTIONS(2589), + [anon_sym_LT_TILDE] = ACTIONS(2589), + [anon_sym_TILDE_GT] = ACTIONS(2589), + [anon_sym_LT_TILDE_GT] = ACTIONS(2589), + [anon_sym_LT_PIPE_GT] = ACTIONS(2589), + [anon_sym_in] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2589), + [anon_sym_DOT_DOT] = ACTIONS(2589), + [anon_sym_LT_GT] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_STAR_STAR] = ACTIONS(2589), + [anon_sym_CARET_CARET] = ACTIONS(2589), + [anon_sym_DASH_GT] = ACTIONS(2589), + [anon_sym_DOT] = ACTIONS(2589), + [anon_sym_fn] = ACTIONS(2589), [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(2591), + [sym__not_in] = ACTIONS(2591), + [sym__quoted_atom_start] = ACTIONS(2591), }, [1021] = { - [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), + [aux_sym__terminator_repeat1] = STATE(1017), + [aux_sym__terminator_token1] = ACTIONS(2634), + [anon_sym_SEMI] = ACTIONS(2638), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_RPAREN] = ACTIONS(2589), + [aux_sym_identifier_token1] = ACTIONS(2589), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2589), + [sym_alias] = ACTIONS(2589), + [sym_integer] = ACTIONS(2589), + [sym_float] = ACTIONS(2589), + [sym_char] = ACTIONS(2589), + [anon_sym_true] = ACTIONS(2589), + [anon_sym_false] = ACTIONS(2589), + [anon_sym_nil] = ACTIONS(2589), + [sym_atom] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE] = ACTIONS(2589), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2589), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2589), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_LBRACK] = ACTIONS(2589), + [anon_sym_LT] = ACTIONS(2589), + [anon_sym_GT] = ACTIONS(2589), + [anon_sym_PIPE] = ACTIONS(2589), + [anon_sym_SLASH] = ACTIONS(2589), + [anon_sym_TILDE] = ACTIONS(2589), + [anon_sym_LT_LT] = ACTIONS(2589), + [anon_sym_PERCENT] = ACTIONS(2589), + [anon_sym_AMP] = ACTIONS(2589), + [anon_sym_PLUS] = ACTIONS(2589), + [anon_sym_DASH] = ACTIONS(2589), + [anon_sym_BANG] = ACTIONS(2589), + [anon_sym_CARET] = ACTIONS(2589), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2589), + [anon_sym_not] = ACTIONS(2589), + [anon_sym_AT] = ACTIONS(2589), + [anon_sym_LT_DASH] = ACTIONS(2589), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2589), + [anon_sym_when] = ACTIONS(2589), + [anon_sym_COLON_COLON] = ACTIONS(2589), + [anon_sym_EQ] = ACTIONS(2589), + [anon_sym_PIPE_PIPE] = ACTIONS(2589), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2589), + [anon_sym_or] = ACTIONS(2589), + [anon_sym_AMP_AMP] = ACTIONS(2589), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2589), + [anon_sym_and] = ACTIONS(2589), + [anon_sym_EQ_EQ] = ACTIONS(2589), + [anon_sym_BANG_EQ] = ACTIONS(2589), + [anon_sym_EQ_TILDE] = ACTIONS(2589), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2589), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2589), + [anon_sym_LT_EQ] = ACTIONS(2589), + [anon_sym_GT_EQ] = ACTIONS(2589), + [anon_sym_PIPE_GT] = ACTIONS(2589), + [anon_sym_LT_LT_LT] = ACTIONS(2589), + [anon_sym_GT_GT_GT] = ACTIONS(2589), + [anon_sym_LT_LT_TILDE] = ACTIONS(2589), + [anon_sym_TILDE_GT_GT] = ACTIONS(2589), + [anon_sym_LT_TILDE] = ACTIONS(2589), + [anon_sym_TILDE_GT] = ACTIONS(2589), + [anon_sym_LT_TILDE_GT] = ACTIONS(2589), + [anon_sym_LT_PIPE_GT] = ACTIONS(2589), + [anon_sym_in] = ACTIONS(2589), + [anon_sym_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_DASH_DASH] = ACTIONS(2589), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2589), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2589), + [anon_sym_DOT_DOT] = ACTIONS(2589), + [anon_sym_LT_GT] = ACTIONS(2589), + [anon_sym_STAR] = ACTIONS(2589), + [anon_sym_STAR_STAR] = ACTIONS(2589), + [anon_sym_CARET_CARET] = ACTIONS(2589), + [anon_sym_DASH_GT] = ACTIONS(2589), + [anon_sym_DOT] = ACTIONS(2589), + [anon_sym_fn] = ACTIONS(2589), [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), + [sym__before_unary_op] = ACTIONS(2591), + [sym__not_in] = ACTIONS(2591), + [sym__quoted_atom_start] = ACTIONS(2591), }, [1022] = { - [aux_sym__terminator_repeat1] = STATE(1020), - [aux_sym__terminator_token1] = ACTIONS(2673), - [anon_sym_SEMI] = ACTIONS(2677), - [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), + [aux_sym__terminator_repeat1] = STATE(1022), + [aux_sym__terminator_token1] = ACTIONS(2640), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_LPAREN] = ACTIONS(2596), + [aux_sym_identifier_token1] = ACTIONS(2596), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2596), + [sym_alias] = ACTIONS(2596), + [sym_integer] = ACTIONS(2596), + [sym_float] = ACTIONS(2596), + [sym_char] = ACTIONS(2596), + [anon_sym_true] = ACTIONS(2596), + [anon_sym_false] = ACTIONS(2596), + [anon_sym_nil] = ACTIONS(2596), + [sym_atom] = ACTIONS(2596), + [anon_sym_DQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE] = ACTIONS(2596), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2596), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2596), + [anon_sym_LBRACE] = ACTIONS(2596), + [anon_sym_LBRACK] = ACTIONS(2596), + [anon_sym_LT] = ACTIONS(2596), + [anon_sym_GT] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2596), + [anon_sym_SLASH] = ACTIONS(2596), + [anon_sym_TILDE] = ACTIONS(2596), + [anon_sym_LT_LT] = ACTIONS(2596), + [anon_sym_PERCENT] = ACTIONS(2596), + [anon_sym_AMP] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2596), + [anon_sym_BANG] = ACTIONS(2596), + [anon_sym_CARET] = ACTIONS(2596), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2596), + [anon_sym_not] = ACTIONS(2596), + [anon_sym_AT] = ACTIONS(2596), + [anon_sym_LT_DASH] = ACTIONS(2596), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2596), + [anon_sym_when] = ACTIONS(2596), + [anon_sym_COLON_COLON] = ACTIONS(2596), + [anon_sym_EQ] = ACTIONS(2596), + [anon_sym_PIPE_PIPE] = ACTIONS(2596), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2596), + [anon_sym_or] = ACTIONS(2596), + [anon_sym_AMP_AMP] = ACTIONS(2596), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2596), + [anon_sym_and] = ACTIONS(2596), + [anon_sym_EQ_EQ] = ACTIONS(2596), + [anon_sym_BANG_EQ] = ACTIONS(2596), + [anon_sym_EQ_TILDE] = ACTIONS(2596), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2596), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2596), + [anon_sym_LT_EQ] = ACTIONS(2596), + [anon_sym_GT_EQ] = ACTIONS(2596), + [anon_sym_PIPE_GT] = ACTIONS(2596), + [anon_sym_LT_LT_LT] = ACTIONS(2596), + [anon_sym_GT_GT_GT] = ACTIONS(2596), + [anon_sym_LT_LT_TILDE] = ACTIONS(2596), + [anon_sym_TILDE_GT_GT] = ACTIONS(2596), + [anon_sym_LT_TILDE] = ACTIONS(2596), + [anon_sym_TILDE_GT] = ACTIONS(2596), + [anon_sym_LT_TILDE_GT] = ACTIONS(2596), + [anon_sym_LT_PIPE_GT] = ACTIONS(2596), + [anon_sym_in] = ACTIONS(2596), + [anon_sym_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_DASH_DASH] = ACTIONS(2596), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2596), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2596), + [anon_sym_DOT_DOT] = ACTIONS(2596), + [anon_sym_LT_GT] = ACTIONS(2596), + [anon_sym_STAR] = ACTIONS(2596), + [anon_sym_STAR_STAR] = ACTIONS(2596), + [anon_sym_CARET_CARET] = ACTIONS(2596), + [anon_sym_DASH_GT] = ACTIONS(2596), + [anon_sym_DOT] = ACTIONS(2596), + [anon_sym_end] = ACTIONS(2596), + [anon_sym_fn] = ACTIONS(2596), [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), + [sym__before_unary_op] = ACTIONS(2598), + [sym__not_in] = ACTIONS(2598), + [sym__quoted_atom_start] = ACTIONS(2598), }, [1023] = { - [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), + [aux_sym__terminator_token1] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym_LPAREN] = ACTIONS(2609), + [anon_sym_RPAREN] = ACTIONS(2609), + [aux_sym_identifier_token1] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2609), + [sym_alias] = ACTIONS(2609), + [sym_integer] = ACTIONS(2609), + [sym_float] = ACTIONS(2609), + [sym_char] = ACTIONS(2609), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_nil] = ACTIONS(2609), + [sym_atom] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_GT] = ACTIONS(2609), + [anon_sym_PIPE] = ACTIONS(2609), + [anon_sym_SLASH] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2609), + [anon_sym_LT_LT] = ACTIONS(2609), + [anon_sym_PERCENT] = ACTIONS(2609), + [anon_sym_AMP] = ACTIONS(2609), + [anon_sym_PLUS] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_CARET] = ACTIONS(2609), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2609), + [anon_sym_not] = ACTIONS(2609), + [anon_sym_AT] = ACTIONS(2609), + [anon_sym_LT_DASH] = ACTIONS(2609), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2609), + [anon_sym_when] = ACTIONS(2609), + [anon_sym_COLON_COLON] = ACTIONS(2609), + [anon_sym_EQ] = ACTIONS(2609), + [anon_sym_PIPE_PIPE] = ACTIONS(2609), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2609), + [anon_sym_or] = ACTIONS(2609), + [anon_sym_AMP_AMP] = ACTIONS(2609), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2609), + [anon_sym_and] = ACTIONS(2609), + [anon_sym_EQ_EQ] = ACTIONS(2609), + [anon_sym_BANG_EQ] = ACTIONS(2609), + [anon_sym_EQ_TILDE] = ACTIONS(2609), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2609), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2609), + [anon_sym_LT_EQ] = ACTIONS(2609), + [anon_sym_GT_EQ] = ACTIONS(2609), + [anon_sym_PIPE_GT] = ACTIONS(2609), + [anon_sym_LT_LT_LT] = ACTIONS(2609), + [anon_sym_GT_GT_GT] = ACTIONS(2609), + [anon_sym_LT_LT_TILDE] = ACTIONS(2609), + [anon_sym_TILDE_GT_GT] = ACTIONS(2609), + [anon_sym_LT_TILDE] = ACTIONS(2609), + [anon_sym_TILDE_GT] = ACTIONS(2609), + [anon_sym_LT_TILDE_GT] = ACTIONS(2609), + [anon_sym_LT_PIPE_GT] = ACTIONS(2609), + [anon_sym_in] = ACTIONS(2609), + [anon_sym_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2609), + [anon_sym_DOT_DOT] = ACTIONS(2609), + [anon_sym_LT_GT] = ACTIONS(2609), + [anon_sym_STAR] = ACTIONS(2609), + [anon_sym_STAR_STAR] = ACTIONS(2609), + [anon_sym_CARET_CARET] = ACTIONS(2609), + [anon_sym_DASH_GT] = ACTIONS(2609), + [anon_sym_DOT] = ACTIONS(2609), + [anon_sym_fn] = ACTIONS(2609), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2681), - [sym__not_in] = ACTIONS(2681), - [sym__quoted_atom_start] = ACTIONS(2681), + [sym__before_unary_op] = ACTIONS(2611), + [sym__not_in] = ACTIONS(2611), + [sym__quoted_atom_start] = ACTIONS(2611), }, [1024] = { - [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), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2609), + [anon_sym_RPAREN] = ACTIONS(2609), + [aux_sym_identifier_token1] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2609), + [sym_alias] = ACTIONS(2609), + [sym_integer] = ACTIONS(2609), + [sym_float] = ACTIONS(2609), + [sym_char] = ACTIONS(2609), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_nil] = ACTIONS(2609), + [sym_atom] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_GT] = ACTIONS(2609), + [anon_sym_PIPE] = ACTIONS(2609), + [anon_sym_SLASH] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2609), + [sym_keyword] = ACTIONS(2609), + [anon_sym_LT_LT] = ACTIONS(2609), + [anon_sym_PERCENT] = ACTIONS(2609), + [anon_sym_AMP] = ACTIONS(2609), + [anon_sym_PLUS] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_CARET] = ACTIONS(2609), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2609), + [anon_sym_not] = ACTIONS(2609), + [anon_sym_AT] = ACTIONS(2609), + [anon_sym_LT_DASH] = ACTIONS(2609), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2609), + [anon_sym_when] = ACTIONS(2609), + [anon_sym_COLON_COLON] = ACTIONS(2609), + [anon_sym_EQ] = ACTIONS(2609), + [anon_sym_PIPE_PIPE] = ACTIONS(2609), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2609), + [anon_sym_or] = ACTIONS(2609), + [anon_sym_AMP_AMP] = ACTIONS(2609), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2609), + [anon_sym_and] = ACTIONS(2609), + [anon_sym_EQ_EQ] = ACTIONS(2609), + [anon_sym_BANG_EQ] = ACTIONS(2609), + [anon_sym_EQ_TILDE] = ACTIONS(2609), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2609), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2609), + [anon_sym_LT_EQ] = ACTIONS(2609), + [anon_sym_GT_EQ] = ACTIONS(2609), + [anon_sym_PIPE_GT] = ACTIONS(2609), + [anon_sym_LT_LT_LT] = ACTIONS(2609), + [anon_sym_GT_GT_GT] = ACTIONS(2609), + [anon_sym_LT_LT_TILDE] = ACTIONS(2609), + [anon_sym_TILDE_GT_GT] = ACTIONS(2609), + [anon_sym_LT_TILDE] = ACTIONS(2609), + [anon_sym_TILDE_GT] = ACTIONS(2609), + [anon_sym_LT_TILDE_GT] = ACTIONS(2609), + [anon_sym_LT_PIPE_GT] = ACTIONS(2609), + [anon_sym_in] = ACTIONS(2609), + [anon_sym_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2609), + [anon_sym_DOT_DOT] = ACTIONS(2609), + [anon_sym_LT_GT] = ACTIONS(2609), + [anon_sym_STAR] = ACTIONS(2609), + [anon_sym_STAR_STAR] = ACTIONS(2609), + [anon_sym_CARET_CARET] = ACTIONS(2609), + [anon_sym_DASH_GT] = ACTIONS(2609), + [anon_sym_DOT] = ACTIONS(2609), + [anon_sym_fn] = ACTIONS(2609), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2681), - [sym__not_in] = ACTIONS(2681), - [sym__quoted_atom_start] = ACTIONS(2681), + [sym__before_unary_op] = ACTIONS(2611), + [sym__not_in] = ACTIONS(2611), + [sym__quoted_atom_start] = ACTIONS(2611), }, [1025] = { - [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), - [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), + [aux_sym__terminator_token1] = ACTIONS(2611), + [anon_sym_SEMI] = ACTIONS(2609), + [anon_sym_LPAREN] = ACTIONS(2609), + [aux_sym_identifier_token1] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2609), + [sym_alias] = ACTIONS(2609), + [sym_integer] = ACTIONS(2609), + [sym_float] = ACTIONS(2609), + [sym_char] = ACTIONS(2609), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_nil] = ACTIONS(2609), + [sym_atom] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_GT] = ACTIONS(2609), + [anon_sym_PIPE] = ACTIONS(2609), + [anon_sym_SLASH] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2609), + [anon_sym_LT_LT] = ACTIONS(2609), + [anon_sym_PERCENT] = ACTIONS(2609), + [anon_sym_AMP] = ACTIONS(2609), + [anon_sym_PLUS] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_CARET] = ACTIONS(2609), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2609), + [anon_sym_not] = ACTIONS(2609), + [anon_sym_AT] = ACTIONS(2609), + [anon_sym_LT_DASH] = ACTIONS(2609), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2609), + [anon_sym_when] = ACTIONS(2609), + [anon_sym_COLON_COLON] = ACTIONS(2609), + [anon_sym_EQ] = ACTIONS(2609), + [anon_sym_PIPE_PIPE] = ACTIONS(2609), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2609), + [anon_sym_or] = ACTIONS(2609), + [anon_sym_AMP_AMP] = ACTIONS(2609), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2609), + [anon_sym_and] = ACTIONS(2609), + [anon_sym_EQ_EQ] = ACTIONS(2609), + [anon_sym_BANG_EQ] = ACTIONS(2609), + [anon_sym_EQ_TILDE] = ACTIONS(2609), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2609), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2609), + [anon_sym_LT_EQ] = ACTIONS(2609), + [anon_sym_GT_EQ] = ACTIONS(2609), + [anon_sym_PIPE_GT] = ACTIONS(2609), + [anon_sym_LT_LT_LT] = ACTIONS(2609), + [anon_sym_GT_GT_GT] = ACTIONS(2609), + [anon_sym_LT_LT_TILDE] = ACTIONS(2609), + [anon_sym_TILDE_GT_GT] = ACTIONS(2609), + [anon_sym_LT_TILDE] = ACTIONS(2609), + [anon_sym_TILDE_GT] = ACTIONS(2609), + [anon_sym_LT_TILDE_GT] = ACTIONS(2609), + [anon_sym_LT_PIPE_GT] = ACTIONS(2609), + [anon_sym_in] = ACTIONS(2609), + [anon_sym_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2609), + [anon_sym_DOT_DOT] = ACTIONS(2609), + [anon_sym_LT_GT] = ACTIONS(2609), + [anon_sym_STAR] = ACTIONS(2609), + [anon_sym_STAR_STAR] = ACTIONS(2609), + [anon_sym_CARET_CARET] = ACTIONS(2609), + [anon_sym_DASH_GT] = ACTIONS(2609), + [anon_sym_DOT] = ACTIONS(2609), + [anon_sym_end] = ACTIONS(2609), + [anon_sym_fn] = ACTIONS(2609), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2681), - [sym__not_in] = ACTIONS(2681), - [sym__quoted_atom_start] = ACTIONS(2681), + [sym__before_unary_op] = ACTIONS(2611), + [sym__not_in] = ACTIONS(2611), + [sym__quoted_atom_start] = ACTIONS(2611), }, [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), + [ts_builtin_sym_end] = ACTIONS(2611), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2609), + [aux_sym_identifier_token1] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2609), + [sym_alias] = ACTIONS(2609), + [sym_integer] = ACTIONS(2609), + [sym_float] = ACTIONS(2609), + [sym_char] = ACTIONS(2609), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_nil] = ACTIONS(2609), + [sym_atom] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_GT] = ACTIONS(2609), + [anon_sym_PIPE] = ACTIONS(2609), + [anon_sym_SLASH] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2609), + [anon_sym_LT_LT] = ACTIONS(2609), + [anon_sym_PERCENT] = ACTIONS(2609), + [anon_sym_AMP] = ACTIONS(2609), + [anon_sym_PLUS] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_CARET] = ACTIONS(2609), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2609), + [anon_sym_not] = ACTIONS(2609), + [anon_sym_AT] = ACTIONS(2609), + [anon_sym_LT_DASH] = ACTIONS(2609), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2609), + [anon_sym_when] = ACTIONS(2609), + [anon_sym_COLON_COLON] = ACTIONS(2609), + [anon_sym_EQ] = ACTIONS(2609), + [anon_sym_PIPE_PIPE] = ACTIONS(2609), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2609), + [anon_sym_or] = ACTIONS(2609), + [anon_sym_AMP_AMP] = ACTIONS(2609), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2609), + [anon_sym_and] = ACTIONS(2609), + [anon_sym_EQ_EQ] = ACTIONS(2609), + [anon_sym_BANG_EQ] = ACTIONS(2609), + [anon_sym_EQ_TILDE] = ACTIONS(2609), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2609), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2609), + [anon_sym_LT_EQ] = ACTIONS(2609), + [anon_sym_GT_EQ] = ACTIONS(2609), + [anon_sym_PIPE_GT] = ACTIONS(2609), + [anon_sym_LT_LT_LT] = ACTIONS(2609), + [anon_sym_GT_GT_GT] = ACTIONS(2609), + [anon_sym_LT_LT_TILDE] = ACTIONS(2609), + [anon_sym_TILDE_GT_GT] = ACTIONS(2609), + [anon_sym_LT_TILDE] = ACTIONS(2609), + [anon_sym_TILDE_GT] = ACTIONS(2609), + [anon_sym_LT_TILDE_GT] = ACTIONS(2609), + [anon_sym_LT_PIPE_GT] = ACTIONS(2609), + [anon_sym_in] = ACTIONS(2609), + [anon_sym_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2609), + [anon_sym_DOT_DOT] = ACTIONS(2609), + [anon_sym_LT_GT] = ACTIONS(2609), + [anon_sym_STAR] = ACTIONS(2609), + [anon_sym_STAR_STAR] = ACTIONS(2609), + [anon_sym_CARET_CARET] = ACTIONS(2609), + [anon_sym_DASH_GT] = ACTIONS(2609), + [anon_sym_DOT] = ACTIONS(2609), + [anon_sym_fn] = ACTIONS(2609), [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), + [sym__before_unary_op] = ACTIONS(2611), + [sym__not_in] = ACTIONS(2611), + [sym__quoted_atom_start] = ACTIONS(2611), }, [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), - [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), - [sym_keyword] = 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_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2609), + [anon_sym_RPAREN] = ACTIONS(2609), + [aux_sym_identifier_token1] = ACTIONS(2609), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2609), + [sym_alias] = ACTIONS(2609), + [sym_integer] = ACTIONS(2609), + [sym_float] = ACTIONS(2609), + [sym_char] = ACTIONS(2609), + [anon_sym_true] = ACTIONS(2609), + [anon_sym_false] = ACTIONS(2609), + [anon_sym_nil] = ACTIONS(2609), + [sym_atom] = ACTIONS(2609), + [anon_sym_DQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE] = ACTIONS(2609), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2609), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2609), + [anon_sym_LBRACE] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(2609), + [anon_sym_LT] = ACTIONS(2609), + [anon_sym_GT] = ACTIONS(2609), + [anon_sym_PIPE] = ACTIONS(2609), + [anon_sym_SLASH] = ACTIONS(2609), + [anon_sym_TILDE] = ACTIONS(2609), + [anon_sym_LT_LT] = ACTIONS(2609), + [anon_sym_PERCENT] = ACTIONS(2609), + [anon_sym_AMP] = ACTIONS(2609), + [anon_sym_PLUS] = ACTIONS(2609), + [anon_sym_DASH] = ACTIONS(2609), + [anon_sym_BANG] = ACTIONS(2609), + [anon_sym_CARET] = ACTIONS(2609), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2609), + [anon_sym_not] = ACTIONS(2609), + [anon_sym_AT] = ACTIONS(2609), + [anon_sym_LT_DASH] = ACTIONS(2609), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2609), + [anon_sym_when] = ACTIONS(2609), + [anon_sym_COLON_COLON] = ACTIONS(2609), + [anon_sym_EQ] = ACTIONS(2609), + [anon_sym_PIPE_PIPE] = ACTIONS(2609), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2609), + [anon_sym_or] = ACTIONS(2609), + [anon_sym_AMP_AMP] = ACTIONS(2609), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2609), + [anon_sym_and] = ACTIONS(2609), + [anon_sym_EQ_EQ] = ACTIONS(2609), + [anon_sym_BANG_EQ] = ACTIONS(2609), + [anon_sym_EQ_TILDE] = ACTIONS(2609), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2609), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2609), + [anon_sym_LT_EQ] = ACTIONS(2609), + [anon_sym_GT_EQ] = ACTIONS(2609), + [anon_sym_PIPE_GT] = ACTIONS(2609), + [anon_sym_LT_LT_LT] = ACTIONS(2609), + [anon_sym_GT_GT_GT] = ACTIONS(2609), + [anon_sym_LT_LT_TILDE] = ACTIONS(2609), + [anon_sym_TILDE_GT_GT] = ACTIONS(2609), + [anon_sym_LT_TILDE] = ACTIONS(2609), + [anon_sym_TILDE_GT] = ACTIONS(2609), + [anon_sym_LT_TILDE_GT] = ACTIONS(2609), + [anon_sym_LT_PIPE_GT] = ACTIONS(2609), + [anon_sym_in] = ACTIONS(2609), + [anon_sym_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_DASH_DASH] = ACTIONS(2609), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2609), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2609), + [anon_sym_DOT_DOT] = ACTIONS(2609), + [anon_sym_LT_GT] = ACTIONS(2609), + [anon_sym_STAR] = ACTIONS(2609), + [anon_sym_STAR_STAR] = ACTIONS(2609), + [anon_sym_CARET_CARET] = ACTIONS(2609), + [anon_sym_DASH_GT] = ACTIONS(2609), + [anon_sym_DOT] = ACTIONS(2609), + [anon_sym_fn] = ACTIONS(2609), [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(2611), + [sym__not_in] = ACTIONS(2611), + [sym__quoted_atom_start] = ACTIONS(2611), }, [1028] = { - [aux_sym__terminator_repeat1] = STATE(1028), - [aux_sym__terminator_token1] = ACTIONS(2690), - [anon_sym_SEMI] = ACTIONS(2666), - [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_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2643), + [aux_sym_identifier_token1] = ACTIONS(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2643), + [sym_alias] = ACTIONS(2643), + [sym_integer] = ACTIONS(2643), + [sym_float] = ACTIONS(2643), + [sym_char] = ACTIONS(2643), + [anon_sym_true] = ACTIONS(2643), + [anon_sym_false] = ACTIONS(2643), + [anon_sym_nil] = ACTIONS(2643), + [sym_atom] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2643), + [anon_sym_SQUOTE] = ACTIONS(2643), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_LT] = ACTIONS(2643), + [anon_sym_GT] = ACTIONS(2643), + [anon_sym_PIPE] = ACTIONS(2643), + [anon_sym_SLASH] = ACTIONS(2643), + [anon_sym_TILDE] = ACTIONS(2643), + [anon_sym_LT_LT] = ACTIONS(2643), + [anon_sym_PERCENT] = ACTIONS(2643), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2643), + [anon_sym_CARET] = ACTIONS(2643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_AT] = ACTIONS(2643), + [anon_sym_LT_DASH] = ACTIONS(2643), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2643), + [anon_sym_when] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_EQ] = ACTIONS(2643), + [anon_sym_PIPE_PIPE] = ACTIONS(2643), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2643), + [anon_sym_or] = ACTIONS(2643), + [anon_sym_AMP_AMP] = ACTIONS(2643), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2643), + [anon_sym_and] = ACTIONS(2643), + [anon_sym_EQ_EQ] = ACTIONS(2643), + [anon_sym_BANG_EQ] = ACTIONS(2643), + [anon_sym_EQ_TILDE] = ACTIONS(2643), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2643), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2643), + [anon_sym_LT_EQ] = ACTIONS(2643), + [anon_sym_GT_EQ] = ACTIONS(2643), + [anon_sym_PIPE_GT] = ACTIONS(2643), + [anon_sym_LT_LT_LT] = ACTIONS(2643), + [anon_sym_GT_GT_GT] = ACTIONS(2643), + [anon_sym_LT_LT_TILDE] = ACTIONS(2643), + [anon_sym_TILDE_GT_GT] = ACTIONS(2643), + [anon_sym_LT_TILDE] = ACTIONS(2643), + [anon_sym_TILDE_GT] = ACTIONS(2643), + [anon_sym_LT_TILDE_GT] = ACTIONS(2643), + [anon_sym_LT_PIPE_GT] = ACTIONS(2643), + [anon_sym_in] = ACTIONS(2643), + [anon_sym_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2643), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2643), + [anon_sym_DOT_DOT] = ACTIONS(2643), + [anon_sym_LT_GT] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_STAR_STAR] = ACTIONS(2643), + [anon_sym_CARET_CARET] = ACTIONS(2643), + [anon_sym_DASH_GT] = ACTIONS(2643), + [anon_sym_DOT] = ACTIONS(2643), + [anon_sym_fn] = ACTIONS(2643), [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(2645), + [sym__not_in] = ACTIONS(2645), + [sym__quoted_atom_start] = ACTIONS(2645), }, [1029] = { - [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), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2643), + [aux_sym_identifier_token1] = ACTIONS(2643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2643), + [sym_alias] = ACTIONS(2643), + [sym_integer] = ACTIONS(2643), + [sym_float] = ACTIONS(2643), + [sym_char] = ACTIONS(2643), + [anon_sym_true] = ACTIONS(2643), + [anon_sym_false] = ACTIONS(2643), + [anon_sym_nil] = ACTIONS(2643), + [sym_atom] = ACTIONS(2643), + [anon_sym_DQUOTE] = ACTIONS(2643), + [anon_sym_SQUOTE] = ACTIONS(2643), + [anon_sym_SQUOTE_SQUOTE_SQUOTE] = ACTIONS(2643), + [anon_sym_DQUOTE_DQUOTE_DQUOTE] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(2643), + [anon_sym_LBRACK] = ACTIONS(2643), + [anon_sym_LT] = ACTIONS(2643), + [anon_sym_GT] = ACTIONS(2643), + [anon_sym_PIPE] = ACTIONS(2643), + [anon_sym_SLASH] = ACTIONS(2643), + [anon_sym_TILDE] = ACTIONS(2643), + [anon_sym_LT_LT] = ACTIONS(2643), + [anon_sym_PERCENT] = ACTIONS(2643), + [anon_sym_AMP] = ACTIONS(2643), + [anon_sym_PLUS] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2643), + [anon_sym_BANG] = ACTIONS(2643), + [anon_sym_CARET] = ACTIONS(2643), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2643), + [anon_sym_not] = ACTIONS(2643), + [anon_sym_AT] = ACTIONS(2643), + [anon_sym_LT_DASH] = ACTIONS(2643), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2643), + [anon_sym_when] = ACTIONS(2643), + [anon_sym_COLON_COLON] = ACTIONS(2643), + [anon_sym_EQ] = ACTIONS(2643), + [anon_sym_PIPE_PIPE] = ACTIONS(2643), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2643), + [anon_sym_or] = ACTIONS(2643), + [anon_sym_AMP_AMP] = ACTIONS(2643), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2643), + [anon_sym_and] = ACTIONS(2643), + [anon_sym_EQ_EQ] = ACTIONS(2643), + [anon_sym_BANG_EQ] = ACTIONS(2643), + [anon_sym_EQ_TILDE] = ACTIONS(2643), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2643), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2643), + [anon_sym_LT_EQ] = ACTIONS(2643), + [anon_sym_GT_EQ] = ACTIONS(2643), + [anon_sym_PIPE_GT] = ACTIONS(2643), + [anon_sym_LT_LT_LT] = ACTIONS(2643), + [anon_sym_GT_GT_GT] = ACTIONS(2643), + [anon_sym_LT_LT_TILDE] = ACTIONS(2643), + [anon_sym_TILDE_GT_GT] = ACTIONS(2643), + [anon_sym_LT_TILDE] = ACTIONS(2643), + [anon_sym_TILDE_GT] = ACTIONS(2643), + [anon_sym_LT_TILDE_GT] = ACTIONS(2643), + [anon_sym_LT_PIPE_GT] = ACTIONS(2643), + [anon_sym_in] = ACTIONS(2643), + [anon_sym_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_DASH_DASH] = ACTIONS(2643), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2643), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2643), + [anon_sym_DOT_DOT] = ACTIONS(2643), + [anon_sym_LT_GT] = ACTIONS(2643), + [anon_sym_STAR] = ACTIONS(2643), + [anon_sym_STAR_STAR] = ACTIONS(2643), + [anon_sym_CARET_CARET] = ACTIONS(2643), + [anon_sym_DASH_GT] = ACTIONS(2643), + [anon_sym_DOT] = ACTIONS(2643), + [anon_sym_fn] = ACTIONS(2643), [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), + [sym__before_unary_op] = ACTIONS(2645), + [sym__not_in] = ACTIONS(2645), + [sym__quoted_atom_start] = ACTIONS(2645), }, [1030] = { - [aux_sym__terminator_repeat1] = STATE(1030), - [ts_builtin_sym_end] = ACTIONS(2668), - [aux_sym__terminator_token1] = ACTIONS(2697), - [anon_sym_SEMI] = ACTIONS(2666), - [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_fn] = ACTIONS(2666), + [sym_identifier] = STATE(959), + [sym__quoted_i_double] = STATE(960), + [sym__quoted_i_single] = STATE(961), + [sym_tuple] = STATE(3948), + [sym_operator_identifier] = STATE(959), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(2649), + [anon_sym_true] = ACTIONS(2651), + [anon_sym_false] = ACTIONS(2651), + [anon_sym_nil] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(31), + [anon_sym_LT] = ACTIONS(2657), + [anon_sym_GT] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_SLASH] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_CARET] = ACTIONS(2661), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2661), + [anon_sym_not] = ACTIONS(2663), + [anon_sym_AT] = ACTIONS(2665), + [anon_sym_LT_DASH] = ACTIONS(2657), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2657), + [anon_sym_when] = ACTIONS(2667), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_EQ] = ACTIONS(2657), + [anon_sym_PIPE_PIPE] = ACTIONS(2657), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2657), + [anon_sym_or] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2657), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2657), + [anon_sym_and] = ACTIONS(2667), + [anon_sym_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ] = ACTIONS(2657), + [anon_sym_EQ_TILDE] = ACTIONS(2657), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2657), + [anon_sym_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_EQ] = ACTIONS(2657), + [anon_sym_PIPE_GT] = ACTIONS(2657), + [anon_sym_LT_LT_LT] = ACTIONS(2657), + [anon_sym_GT_GT_GT] = ACTIONS(2657), + [anon_sym_LT_LT_TILDE] = ACTIONS(2657), + [anon_sym_TILDE_GT_GT] = ACTIONS(2657), + [anon_sym_LT_TILDE] = ACTIONS(2657), + [anon_sym_TILDE_GT] = ACTIONS(2657), + [anon_sym_LT_TILDE_GT] = ACTIONS(2657), + [anon_sym_LT_PIPE_GT] = ACTIONS(2657), + [anon_sym_in] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2657), + [anon_sym_DOT_DOT] = ACTIONS(2657), + [anon_sym_LT_GT] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_STAR_STAR] = ACTIONS(2657), + [anon_sym_CARET_CARET] = ACTIONS(2657), + [anon_sym_DASH_GT] = ACTIONS(2657), + [anon_sym_DOT] = ACTIONS(2657), + [anon_sym_after] = ACTIONS(2651), + [anon_sym_catch] = ACTIONS(2651), + [anon_sym_do] = ACTIONS(2651), + [anon_sym_else] = ACTIONS(2651), + [anon_sym_end] = ACTIONS(2651), + [anon_sym_fn] = ACTIONS(2651), + [anon_sym_rescue] = ACTIONS(2651), [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__not_in] = ACTIONS(2669), }, [1031] = { - [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_identifier] = STATE(976), + [sym__quoted_i_double] = STATE(977), + [sym__quoted_i_single] = STATE(978), + [sym_tuple] = STATE(1602), + [sym_operator_identifier] = STATE(976), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2671), + [anon_sym_true] = ACTIONS(2673), + [anon_sym_false] = ACTIONS(2673), + [anon_sym_nil] = ACTIONS(2673), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2681), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_CARET] = ACTIONS(2683), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2683), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_AT] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2679), + [anon_sym_when] = ACTIONS(2689), + [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(2689), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2689), + [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(2689), + [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(2673), + [anon_sym_catch] = ACTIONS(2673), + [anon_sym_do] = ACTIONS(2673), + [anon_sym_else] = ACTIONS(2673), + [anon_sym_end] = ACTIONS(2673), + [anon_sym_fn] = ACTIONS(2673), + [anon_sym_rescue] = ACTIONS(2673), [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), + [sym__not_in] = ACTIONS(2691), }, [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), - [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_end] = ACTIONS(2666), - [anon_sym_fn] = ACTIONS(2666), + [sym_identifier] = STATE(976), + [sym__quoted_i_double] = STATE(977), + [sym__quoted_i_single] = STATE(978), + [sym_tuple] = STATE(1870), + [sym_operator_identifier] = STATE(976), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2693), + [anon_sym_true] = ACTIONS(2673), + [anon_sym_false] = ACTIONS(2673), + [anon_sym_nil] = ACTIONS(2673), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2681), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_CARET] = ACTIONS(2683), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2683), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_AT] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2679), + [anon_sym_when] = ACTIONS(2689), + [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(2689), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2689), + [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(2689), + [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(2673), + [anon_sym_catch] = ACTIONS(2673), + [anon_sym_do] = ACTIONS(2673), + [anon_sym_else] = ACTIONS(2673), + [anon_sym_end] = ACTIONS(2673), + [anon_sym_fn] = ACTIONS(2673), + [anon_sym_rescue] = ACTIONS(2673), [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__not_in] = ACTIONS(2691), }, [1033] = { - [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_identifier] = STATE(999), + [sym__quoted_i_double] = STATE(998), + [sym__quoted_i_single] = STATE(997), + [sym_tuple] = STATE(4017), + [sym_operator_identifier] = STATE(999), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), + [sym_alias] = ACTIONS(2695), + [anon_sym_true] = ACTIONS(2697), + [anon_sym_false] = ACTIONS(2697), + [anon_sym_nil] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(1097), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_GT] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_SLASH] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_CARET] = ACTIONS(2707), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2707), + [anon_sym_not] = ACTIONS(2709), + [anon_sym_AT] = ACTIONS(2711), + [anon_sym_LT_DASH] = ACTIONS(2703), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2703), + [anon_sym_when] = ACTIONS(2713), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_EQ] = ACTIONS(2703), + [anon_sym_PIPE_PIPE] = ACTIONS(2703), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2703), + [anon_sym_or] = ACTIONS(2713), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2703), + [anon_sym_and] = ACTIONS(2713), + [anon_sym_EQ_EQ] = ACTIONS(2703), + [anon_sym_BANG_EQ] = ACTIONS(2703), + [anon_sym_EQ_TILDE] = ACTIONS(2703), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2703), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2703), + [anon_sym_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_EQ] = ACTIONS(2703), + [anon_sym_PIPE_GT] = ACTIONS(2703), + [anon_sym_LT_LT_LT] = ACTIONS(2703), + [anon_sym_GT_GT_GT] = ACTIONS(2703), + [anon_sym_LT_LT_TILDE] = ACTIONS(2703), + [anon_sym_TILDE_GT_GT] = ACTIONS(2703), + [anon_sym_LT_TILDE] = ACTIONS(2703), + [anon_sym_TILDE_GT] = ACTIONS(2703), + [anon_sym_LT_TILDE_GT] = ACTIONS(2703), + [anon_sym_LT_PIPE_GT] = ACTIONS(2703), + [anon_sym_in] = ACTIONS(2713), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2703), + [anon_sym_DOT_DOT] = ACTIONS(2703), + [anon_sym_LT_GT] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_STAR_STAR] = ACTIONS(2703), + [anon_sym_CARET_CARET] = ACTIONS(2703), + [anon_sym_DASH_GT] = ACTIONS(2703), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_after] = ACTIONS(2697), + [anon_sym_catch] = ACTIONS(2697), + [anon_sym_do] = ACTIONS(2697), + [anon_sym_else] = ACTIONS(2697), + [anon_sym_end] = ACTIONS(2697), + [anon_sym_fn] = ACTIONS(2697), + [anon_sym_rescue] = ACTIONS(2697), [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), + [sym__not_in] = ACTIONS(2715), }, [1034] = { - [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_identifier] = STATE(976), + [sym__quoted_i_double] = STATE(977), + [sym__quoted_i_single] = STATE(978), + [sym_tuple] = STATE(1225), + [sym_operator_identifier] = STATE(976), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2717), + [anon_sym_true] = ACTIONS(2673), + [anon_sym_false] = ACTIONS(2673), + [anon_sym_nil] = ACTIONS(2673), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2681), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_CARET] = ACTIONS(2683), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2683), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_AT] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2679), + [anon_sym_when] = ACTIONS(2689), + [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(2689), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2689), + [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(2689), + [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(2673), + [anon_sym_catch] = ACTIONS(2673), + [anon_sym_do] = ACTIONS(2673), + [anon_sym_else] = ACTIONS(2673), + [anon_sym_end] = ACTIONS(2673), + [anon_sym_fn] = ACTIONS(2673), + [anon_sym_rescue] = ACTIONS(2673), [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), + [sym__not_in] = ACTIONS(2691), }, [1035] = { - [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_identifier] = STATE(959), + [sym__quoted_i_double] = STATE(960), + [sym__quoted_i_single] = STATE(961), + [sym_tuple] = STATE(2672), + [sym_operator_identifier] = STATE(959), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(472), + [anon_sym_DOT_DOT_DOT] = ACTIONS(472), + [sym_alias] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2651), + [anon_sym_false] = ACTIONS(2651), + [anon_sym_nil] = ACTIONS(2651), + [anon_sym_DQUOTE] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_LBRACE] = ACTIONS(488), + [anon_sym_LT] = ACTIONS(2657), + [anon_sym_GT] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_SLASH] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2659), + [anon_sym_PLUS] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_CARET] = ACTIONS(2661), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2661), + [anon_sym_not] = ACTIONS(2663), + [anon_sym_AT] = ACTIONS(2665), + [anon_sym_LT_DASH] = ACTIONS(2657), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2657), + [anon_sym_when] = ACTIONS(2667), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_EQ] = ACTIONS(2657), + [anon_sym_PIPE_PIPE] = ACTIONS(2657), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2657), + [anon_sym_or] = ACTIONS(2667), + [anon_sym_AMP_AMP] = ACTIONS(2657), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2657), + [anon_sym_and] = ACTIONS(2667), + [anon_sym_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ] = ACTIONS(2657), + [anon_sym_EQ_TILDE] = ACTIONS(2657), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2657), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2657), + [anon_sym_LT_EQ] = ACTIONS(2657), + [anon_sym_GT_EQ] = ACTIONS(2657), + [anon_sym_PIPE_GT] = ACTIONS(2657), + [anon_sym_LT_LT_LT] = ACTIONS(2657), + [anon_sym_GT_GT_GT] = ACTIONS(2657), + [anon_sym_LT_LT_TILDE] = ACTIONS(2657), + [anon_sym_TILDE_GT_GT] = ACTIONS(2657), + [anon_sym_LT_TILDE] = ACTIONS(2657), + [anon_sym_TILDE_GT] = ACTIONS(2657), + [anon_sym_LT_TILDE_GT] = ACTIONS(2657), + [anon_sym_LT_PIPE_GT] = ACTIONS(2657), + [anon_sym_in] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_DASH_DASH] = ACTIONS(2657), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2657), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2657), + [anon_sym_DOT_DOT] = ACTIONS(2657), + [anon_sym_LT_GT] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_STAR_STAR] = ACTIONS(2657), + [anon_sym_CARET_CARET] = ACTIONS(2657), + [anon_sym_DASH_GT] = ACTIONS(2657), + [anon_sym_DOT] = ACTIONS(2657), + [anon_sym_after] = ACTIONS(2651), + [anon_sym_catch] = ACTIONS(2651), + [anon_sym_do] = ACTIONS(2651), + [anon_sym_else] = ACTIONS(2651), + [anon_sym_end] = ACTIONS(2651), + [anon_sym_fn] = ACTIONS(2651), + [anon_sym_rescue] = ACTIONS(2651), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2681), - [sym__not_in] = ACTIONS(2681), - [sym__quoted_atom_start] = ACTIONS(2681), + [sym__not_in] = ACTIONS(2669), }, [1036] = { - [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_identifier] = STATE(931), + [sym__quoted_i_double] = STATE(927), + [sym__quoted_i_single] = STATE(928), + [sym_tuple] = STATE(2077), + [sym_operator_identifier] = STATE(931), + [aux_sym__terminator_token1] = ACTIONS(3), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2721), + [anon_sym_true] = ACTIONS(2723), + [anon_sym_false] = ACTIONS(2723), + [anon_sym_nil] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2725), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(361), + [anon_sym_LT] = ACTIONS(2729), + [anon_sym_GT] = ACTIONS(2729), + [anon_sym_PIPE] = ACTIONS(2729), + [anon_sym_SLASH] = ACTIONS(2729), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_PLUS] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_BANG] = ACTIONS(2733), + [anon_sym_CARET] = ACTIONS(2733), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2733), + [anon_sym_not] = ACTIONS(2735), + [anon_sym_AT] = ACTIONS(2737), + [anon_sym_LT_DASH] = ACTIONS(2729), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2729), + [anon_sym_when] = ACTIONS(2739), + [anon_sym_COLON_COLON] = ACTIONS(2729), + [anon_sym_EQ] = ACTIONS(2729), + [anon_sym_PIPE_PIPE] = ACTIONS(2729), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2729), + [anon_sym_or] = ACTIONS(2739), + [anon_sym_AMP_AMP] = ACTIONS(2729), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2729), + [anon_sym_and] = ACTIONS(2739), + [anon_sym_EQ_EQ] = ACTIONS(2729), + [anon_sym_BANG_EQ] = ACTIONS(2729), + [anon_sym_EQ_TILDE] = ACTIONS(2729), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2729), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2729), + [anon_sym_LT_EQ] = ACTIONS(2729), + [anon_sym_GT_EQ] = ACTIONS(2729), + [anon_sym_PIPE_GT] = ACTIONS(2729), + [anon_sym_LT_LT_LT] = ACTIONS(2729), + [anon_sym_GT_GT_GT] = ACTIONS(2729), + [anon_sym_LT_LT_TILDE] = ACTIONS(2729), + [anon_sym_TILDE_GT_GT] = ACTIONS(2729), + [anon_sym_LT_TILDE] = ACTIONS(2729), + [anon_sym_TILDE_GT] = ACTIONS(2729), + [anon_sym_LT_TILDE_GT] = ACTIONS(2729), + [anon_sym_LT_PIPE_GT] = ACTIONS(2729), + [anon_sym_in] = ACTIONS(2739), + [anon_sym_PLUS_PLUS] = ACTIONS(2729), + [anon_sym_DASH_DASH] = ACTIONS(2729), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2729), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2729), + [anon_sym_DOT_DOT] = ACTIONS(2729), + [anon_sym_LT_GT] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_STAR_STAR] = ACTIONS(2729), + [anon_sym_CARET_CARET] = ACTIONS(2729), + [anon_sym_DASH_GT] = ACTIONS(2729), + [anon_sym_DOT] = ACTIONS(2729), + [anon_sym_after] = ACTIONS(2723), + [anon_sym_catch] = ACTIONS(2723), + [anon_sym_do] = ACTIONS(2723), + [anon_sym_else] = ACTIONS(2723), + [anon_sym_end] = ACTIONS(2723), + [anon_sym_fn] = ACTIONS(2723), + [anon_sym_rescue] = ACTIONS(2723), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2681), - [sym__not_in] = ACTIONS(2681), - [sym__quoted_atom_start] = ACTIONS(2681), + [sym__not_in] = ACTIONS(2741), }, [1037] = { + [sym_identifier] = STATE(965), + [sym__quoted_i_double] = STATE(964), + [sym__quoted_i_single] = STATE(962), + [sym_tuple] = STATE(1394), + [sym_operator_identifier] = STATE(965), [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), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2743), + [anon_sym_true] = ACTIONS(2745), + [anon_sym_false] = ACTIONS(2745), + [anon_sym_nil] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2747), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LT] = ACTIONS(2751), + [anon_sym_GT] = ACTIONS(2751), + [anon_sym_PIPE] = ACTIONS(2751), + [anon_sym_SLASH] = ACTIONS(2751), + [anon_sym_AMP] = ACTIONS(2753), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2755), + [anon_sym_CARET] = ACTIONS(2755), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2755), + [anon_sym_not] = ACTIONS(2757), + [anon_sym_AT] = ACTIONS(2759), + [anon_sym_LT_DASH] = ACTIONS(2751), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2751), + [anon_sym_when] = ACTIONS(2761), + [anon_sym_COLON_COLON] = ACTIONS(2751), + [anon_sym_EQ] = ACTIONS(2751), + [anon_sym_PIPE_PIPE] = ACTIONS(2751), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2751), + [anon_sym_or] = ACTIONS(2761), + [anon_sym_AMP_AMP] = ACTIONS(2751), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2751), + [anon_sym_and] = ACTIONS(2761), + [anon_sym_EQ_EQ] = ACTIONS(2751), + [anon_sym_BANG_EQ] = ACTIONS(2751), + [anon_sym_EQ_TILDE] = ACTIONS(2751), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2751), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2751), + [anon_sym_LT_EQ] = ACTIONS(2751), + [anon_sym_GT_EQ] = ACTIONS(2751), + [anon_sym_PIPE_GT] = ACTIONS(2751), + [anon_sym_LT_LT_LT] = ACTIONS(2751), + [anon_sym_GT_GT_GT] = ACTIONS(2751), + [anon_sym_LT_LT_TILDE] = ACTIONS(2751), + [anon_sym_TILDE_GT_GT] = ACTIONS(2751), + [anon_sym_LT_TILDE] = ACTIONS(2751), + [anon_sym_TILDE_GT] = ACTIONS(2751), + [anon_sym_LT_TILDE_GT] = ACTIONS(2751), + [anon_sym_LT_PIPE_GT] = ACTIONS(2751), + [anon_sym_in] = ACTIONS(2761), + [anon_sym_PLUS_PLUS] = ACTIONS(2751), + [anon_sym_DASH_DASH] = ACTIONS(2751), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2751), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2751), + [anon_sym_DOT_DOT] = ACTIONS(2751), + [anon_sym_LT_GT] = ACTIONS(2751), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_STAR_STAR] = ACTIONS(2751), + [anon_sym_CARET_CARET] = ACTIONS(2751), + [anon_sym_DASH_GT] = ACTIONS(2751), + [anon_sym_DOT] = ACTIONS(2751), + [anon_sym_after] = ACTIONS(2745), + [anon_sym_catch] = ACTIONS(2745), + [anon_sym_do] = ACTIONS(2745), + [anon_sym_else] = ACTIONS(2745), + [anon_sym_end] = ACTIONS(2745), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_rescue] = ACTIONS(2745), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2681), - [sym__not_in] = ACTIONS(2681), - [sym__quoted_atom_start] = ACTIONS(2681), + [sym__not_in] = ACTIONS(2763), }, [1038] = { - [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), + [sym_identifier] = STATE(965), + [sym__quoted_i_double] = STATE(964), + [sym__quoted_i_single] = STATE(962), + [sym_tuple] = STATE(1870), + [sym_operator_identifier] = STATE(965), [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(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(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), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(437), + [anon_sym_DOT_DOT_DOT] = ACTIONS(437), + [sym_alias] = ACTIONS(2693), + [anon_sym_true] = ACTIONS(2745), + [anon_sym_false] = ACTIONS(2745), + [anon_sym_nil] = ACTIONS(2745), + [anon_sym_DQUOTE] = ACTIONS(2747), + [anon_sym_SQUOTE] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LT] = ACTIONS(2751), + [anon_sym_GT] = ACTIONS(2751), + [anon_sym_PIPE] = ACTIONS(2751), + [anon_sym_SLASH] = ACTIONS(2751), + [anon_sym_AMP] = ACTIONS(2753), + [anon_sym_PLUS] = ACTIONS(2755), + [anon_sym_DASH] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2755), + [anon_sym_CARET] = ACTIONS(2755), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2755), + [anon_sym_not] = ACTIONS(2757), + [anon_sym_AT] = ACTIONS(2759), + [anon_sym_LT_DASH] = ACTIONS(2751), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2751), + [anon_sym_when] = ACTIONS(2761), + [anon_sym_COLON_COLON] = ACTIONS(2751), + [anon_sym_EQ] = ACTIONS(2751), + [anon_sym_PIPE_PIPE] = ACTIONS(2751), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2751), + [anon_sym_or] = ACTIONS(2761), + [anon_sym_AMP_AMP] = ACTIONS(2751), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2751), + [anon_sym_and] = ACTIONS(2761), + [anon_sym_EQ_EQ] = ACTIONS(2751), + [anon_sym_BANG_EQ] = ACTIONS(2751), + [anon_sym_EQ_TILDE] = ACTIONS(2751), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2751), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2751), + [anon_sym_LT_EQ] = ACTIONS(2751), + [anon_sym_GT_EQ] = ACTIONS(2751), + [anon_sym_PIPE_GT] = ACTIONS(2751), + [anon_sym_LT_LT_LT] = ACTIONS(2751), + [anon_sym_GT_GT_GT] = ACTIONS(2751), + [anon_sym_LT_LT_TILDE] = ACTIONS(2751), + [anon_sym_TILDE_GT_GT] = ACTIONS(2751), + [anon_sym_LT_TILDE] = ACTIONS(2751), + [anon_sym_TILDE_GT] = ACTIONS(2751), + [anon_sym_LT_TILDE_GT] = ACTIONS(2751), + [anon_sym_LT_PIPE_GT] = ACTIONS(2751), + [anon_sym_in] = ACTIONS(2761), + [anon_sym_PLUS_PLUS] = ACTIONS(2751), + [anon_sym_DASH_DASH] = ACTIONS(2751), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2751), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2751), + [anon_sym_DOT_DOT] = ACTIONS(2751), + [anon_sym_LT_GT] = ACTIONS(2751), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_STAR_STAR] = ACTIONS(2751), + [anon_sym_CARET_CARET] = ACTIONS(2751), + [anon_sym_DASH_GT] = ACTIONS(2751), + [anon_sym_DOT] = ACTIONS(2751), + [anon_sym_after] = ACTIONS(2745), + [anon_sym_catch] = ACTIONS(2745), + [anon_sym_do] = ACTIONS(2745), + [anon_sym_else] = ACTIONS(2745), + [anon_sym_end] = ACTIONS(2745), + [anon_sym_fn] = ACTIONS(2745), + [anon_sym_rescue] = ACTIONS(2745), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2737), + [sym__not_in] = ACTIONS(2763), }, [1039] = { - [sym__identifier] = STATE(917), - [sym_identifier] = STATE(917), - [sym_special_identifier] = STATE(917), + [sym_identifier] = STATE(915), [sym__quoted_i_double] = STATE(913), [sym__quoted_i_single] = STATE(914), - [sym_tuple] = STATE(1434), - [sym_operator_identifier] = STATE(917), + [sym_tuple] = STATE(1870), + [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(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(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(267), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_GT] = ACTIONS(2749), - [anon_sym_PIPE] = ACTIONS(2749), - [anon_sym_SLASH] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2751), - [anon_sym_PLUS] = ACTIONS(2753), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_CARET] = ACTIONS(2753), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2753), - [anon_sym_not] = ACTIONS(2755), - [anon_sym_AT] = ACTIONS(2757), - [anon_sym_LT_DASH] = ACTIONS(2749), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2749), - [anon_sym_when] = ACTIONS(2759), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_EQ] = ACTIONS(2749), - [anon_sym_PIPE_PIPE] = ACTIONS(2749), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2749), - [anon_sym_or] = ACTIONS(2759), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2749), - [anon_sym_and] = ACTIONS(2759), - [anon_sym_EQ_EQ] = ACTIONS(2749), - [anon_sym_BANG_EQ] = ACTIONS(2749), - [anon_sym_EQ_TILDE] = ACTIONS(2749), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2749), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2749), - [anon_sym_LT_EQ] = ACTIONS(2749), - [anon_sym_GT_EQ] = ACTIONS(2749), - [anon_sym_PIPE_GT] = ACTIONS(2749), - [anon_sym_LT_LT_LT] = ACTIONS(2749), - [anon_sym_GT_GT_GT] = ACTIONS(2749), - [anon_sym_LT_LT_TILDE] = ACTIONS(2749), - [anon_sym_TILDE_GT_GT] = ACTIONS(2749), - [anon_sym_LT_TILDE] = ACTIONS(2749), - [anon_sym_TILDE_GT] = ACTIONS(2749), - [anon_sym_LT_TILDE_GT] = ACTIONS(2749), - [anon_sym_LT_PIPE_GT] = ACTIONS(2749), - [anon_sym_in] = ACTIONS(2759), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2749), - [anon_sym_DOT_DOT] = ACTIONS(2749), - [anon_sym_LT_GT] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_STAR_STAR] = ACTIONS(2749), - [anon_sym_CARET_CARET] = ACTIONS(2749), - [anon_sym_DASH_GT] = ACTIONS(2749), - [anon_sym_DOT] = ACTIONS(2749), - [anon_sym_after] = ACTIONS(2743), - [anon_sym_catch] = ACTIONS(2743), - [anon_sym_do] = ACTIONS(2743), - [anon_sym_else] = ACTIONS(2743), - [anon_sym_end] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2743), - [anon_sym_rescue] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2693), + [anon_sym_true] = ACTIONS(2765), + [anon_sym_false] = ACTIONS(2765), + [anon_sym_nil] = ACTIONS(2765), + [anon_sym_DQUOTE] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_GT] = ACTIONS(2771), + [anon_sym_PIPE] = ACTIONS(2771), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_CARET] = ACTIONS(2775), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2775), + [anon_sym_not] = ACTIONS(2777), + [anon_sym_AT] = ACTIONS(2779), + [anon_sym_LT_DASH] = ACTIONS(2771), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2771), + [anon_sym_when] = ACTIONS(2781), + [anon_sym_COLON_COLON] = ACTIONS(2771), + [anon_sym_EQ] = ACTIONS(2771), + [anon_sym_PIPE_PIPE] = ACTIONS(2771), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2771), + [anon_sym_or] = ACTIONS(2781), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2771), + [anon_sym_and] = ACTIONS(2781), + [anon_sym_EQ_EQ] = ACTIONS(2771), + [anon_sym_BANG_EQ] = ACTIONS(2771), + [anon_sym_EQ_TILDE] = ACTIONS(2771), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2771), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2771), + [anon_sym_LT_EQ] = ACTIONS(2771), + [anon_sym_GT_EQ] = ACTIONS(2771), + [anon_sym_PIPE_GT] = ACTIONS(2771), + [anon_sym_LT_LT_LT] = ACTIONS(2771), + [anon_sym_GT_GT_GT] = ACTIONS(2771), + [anon_sym_LT_LT_TILDE] = ACTIONS(2771), + [anon_sym_TILDE_GT_GT] = ACTIONS(2771), + [anon_sym_LT_TILDE] = ACTIONS(2771), + [anon_sym_TILDE_GT] = ACTIONS(2771), + [anon_sym_LT_TILDE_GT] = ACTIONS(2771), + [anon_sym_LT_PIPE_GT] = ACTIONS(2771), + [anon_sym_in] = ACTIONS(2781), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2771), + [anon_sym_DOT_DOT] = ACTIONS(2771), + [anon_sym_LT_GT] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_STAR_STAR] = ACTIONS(2771), + [anon_sym_CARET_CARET] = ACTIONS(2771), + [anon_sym_DASH_GT] = ACTIONS(2771), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_after] = ACTIONS(2765), + [anon_sym_catch] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_else] = ACTIONS(2765), + [anon_sym_end] = ACTIONS(2765), + [anon_sym_fn] = ACTIONS(2765), + [anon_sym_rescue] = ACTIONS(2765), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2761), + [sym__not_in] = ACTIONS(2783), }, [1040] = { - [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), + [sym_identifier] = STATE(931), + [sym__quoted_i_double] = STATE(927), + [sym__quoted_i_single] = STATE(928), + [sym_tuple] = STATE(3761), + [sym_operator_identifier] = STATE(931), [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(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(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), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2785), + [anon_sym_true] = ACTIONS(2723), + [anon_sym_false] = ACTIONS(2723), + [anon_sym_nil] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2725), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_LT] = ACTIONS(2729), + [anon_sym_GT] = ACTIONS(2729), + [anon_sym_PIPE] = ACTIONS(2729), + [anon_sym_SLASH] = ACTIONS(2729), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_PLUS] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_BANG] = ACTIONS(2733), + [anon_sym_CARET] = ACTIONS(2733), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2733), + [anon_sym_not] = ACTIONS(2735), + [anon_sym_AT] = ACTIONS(2737), + [anon_sym_LT_DASH] = ACTIONS(2729), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2729), + [anon_sym_when] = ACTIONS(2739), + [anon_sym_COLON_COLON] = ACTIONS(2729), + [anon_sym_EQ] = ACTIONS(2729), + [anon_sym_PIPE_PIPE] = ACTIONS(2729), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2729), + [anon_sym_or] = ACTIONS(2739), + [anon_sym_AMP_AMP] = ACTIONS(2729), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2729), + [anon_sym_and] = ACTIONS(2739), + [anon_sym_EQ_EQ] = ACTIONS(2729), + [anon_sym_BANG_EQ] = ACTIONS(2729), + [anon_sym_EQ_TILDE] = ACTIONS(2729), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2729), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2729), + [anon_sym_LT_EQ] = ACTIONS(2729), + [anon_sym_GT_EQ] = ACTIONS(2729), + [anon_sym_PIPE_GT] = ACTIONS(2729), + [anon_sym_LT_LT_LT] = ACTIONS(2729), + [anon_sym_GT_GT_GT] = ACTIONS(2729), + [anon_sym_LT_LT_TILDE] = ACTIONS(2729), + [anon_sym_TILDE_GT_GT] = ACTIONS(2729), + [anon_sym_LT_TILDE] = ACTIONS(2729), + [anon_sym_TILDE_GT] = ACTIONS(2729), + [anon_sym_LT_TILDE_GT] = ACTIONS(2729), + [anon_sym_LT_PIPE_GT] = ACTIONS(2729), + [anon_sym_in] = ACTIONS(2739), + [anon_sym_PLUS_PLUS] = ACTIONS(2729), + [anon_sym_DASH_DASH] = ACTIONS(2729), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2729), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2729), + [anon_sym_DOT_DOT] = ACTIONS(2729), + [anon_sym_LT_GT] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_STAR_STAR] = ACTIONS(2729), + [anon_sym_CARET_CARET] = ACTIONS(2729), + [anon_sym_DASH_GT] = ACTIONS(2729), + [anon_sym_DOT] = ACTIONS(2729), + [anon_sym_after] = ACTIONS(2723), + [anon_sym_catch] = ACTIONS(2723), + [anon_sym_do] = ACTIONS(2723), + [anon_sym_else] = ACTIONS(2723), + [anon_sym_end] = ACTIONS(2723), + [anon_sym_fn] = ACTIONS(2723), + [anon_sym_rescue] = ACTIONS(2723), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2785), + [sym__not_in] = ACTIONS(2741), }, [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), + [sym_identifier] = STATE(976), + [sym__quoted_i_double] = STATE(977), + [sym__quoted_i_single] = STATE(978), + [sym_tuple] = STATE(1394), + [sym_operator_identifier] = STATE(976), [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), - [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), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(418), + [anon_sym_DOT_DOT_DOT] = ACTIONS(418), + [sym_alias] = ACTIONS(2743), + [anon_sym_true] = ACTIONS(2673), + [anon_sym_false] = ACTIONS(2673), + [anon_sym_nil] = ACTIONS(2673), + [anon_sym_DQUOTE] = ACTIONS(2675), + [anon_sym_SQUOTE] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LT] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2679), + [anon_sym_PIPE] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2681), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_CARET] = ACTIONS(2683), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2683), + [anon_sym_not] = ACTIONS(2685), + [anon_sym_AT] = ACTIONS(2687), + [anon_sym_LT_DASH] = ACTIONS(2679), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2679), + [anon_sym_when] = ACTIONS(2689), + [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(2689), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2679), + [anon_sym_and] = ACTIONS(2689), + [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(2689), + [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(2673), + [anon_sym_catch] = ACTIONS(2673), + [anon_sym_do] = ACTIONS(2673), + [anon_sym_else] = ACTIONS(2673), + [anon_sym_end] = ACTIONS(2673), + [anon_sym_fn] = ACTIONS(2673), + [anon_sym_rescue] = ACTIONS(2673), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2785), + [sym__not_in] = ACTIONS(2691), }, [1042] = { - [sym__identifier] = STATE(917), - [sym_identifier] = STATE(917), - [sym_special_identifier] = STATE(917), + [sym_identifier] = STATE(915), [sym__quoted_i_double] = STATE(913), [sym__quoted_i_single] = STATE(914), - [sym_tuple] = STATE(1877), - [sym_operator_identifier] = STATE(917), + [sym_tuple] = STATE(1394), + [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(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(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(960), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_GT] = ACTIONS(2749), - [anon_sym_PIPE] = ACTIONS(2749), - [anon_sym_SLASH] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2751), - [anon_sym_PLUS] = ACTIONS(2753), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_CARET] = ACTIONS(2753), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2753), - [anon_sym_not] = ACTIONS(2755), - [anon_sym_AT] = ACTIONS(2757), - [anon_sym_LT_DASH] = ACTIONS(2749), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2749), - [anon_sym_when] = ACTIONS(2759), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_EQ] = ACTIONS(2749), - [anon_sym_PIPE_PIPE] = ACTIONS(2749), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2749), - [anon_sym_or] = ACTIONS(2759), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2749), - [anon_sym_and] = ACTIONS(2759), - [anon_sym_EQ_EQ] = ACTIONS(2749), - [anon_sym_BANG_EQ] = ACTIONS(2749), - [anon_sym_EQ_TILDE] = ACTIONS(2749), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2749), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2749), - [anon_sym_LT_EQ] = ACTIONS(2749), - [anon_sym_GT_EQ] = ACTIONS(2749), - [anon_sym_PIPE_GT] = ACTIONS(2749), - [anon_sym_LT_LT_LT] = ACTIONS(2749), - [anon_sym_GT_GT_GT] = ACTIONS(2749), - [anon_sym_LT_LT_TILDE] = ACTIONS(2749), - [anon_sym_TILDE_GT_GT] = ACTIONS(2749), - [anon_sym_LT_TILDE] = ACTIONS(2749), - [anon_sym_TILDE_GT] = ACTIONS(2749), - [anon_sym_LT_TILDE_GT] = ACTIONS(2749), - [anon_sym_LT_PIPE_GT] = ACTIONS(2749), - [anon_sym_in] = ACTIONS(2759), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2749), - [anon_sym_DOT_DOT] = ACTIONS(2749), - [anon_sym_LT_GT] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_STAR_STAR] = ACTIONS(2749), - [anon_sym_CARET_CARET] = ACTIONS(2749), - [anon_sym_DASH_GT] = ACTIONS(2749), - [anon_sym_DOT] = ACTIONS(2749), - [anon_sym_after] = ACTIONS(2743), - [anon_sym_catch] = ACTIONS(2743), - [anon_sym_do] = ACTIONS(2743), - [anon_sym_else] = ACTIONS(2743), - [anon_sym_end] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2743), - [anon_sym_rescue] = ACTIONS(2743), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2743), + [anon_sym_true] = ACTIONS(2765), + [anon_sym_false] = ACTIONS(2765), + [anon_sym_nil] = ACTIONS(2765), + [anon_sym_DQUOTE] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(203), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_GT] = ACTIONS(2771), + [anon_sym_PIPE] = ACTIONS(2771), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_CARET] = ACTIONS(2775), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2775), + [anon_sym_not] = ACTIONS(2777), + [anon_sym_AT] = ACTIONS(2779), + [anon_sym_LT_DASH] = ACTIONS(2771), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2771), + [anon_sym_when] = ACTIONS(2781), + [anon_sym_COLON_COLON] = ACTIONS(2771), + [anon_sym_EQ] = ACTIONS(2771), + [anon_sym_PIPE_PIPE] = ACTIONS(2771), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2771), + [anon_sym_or] = ACTIONS(2781), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2771), + [anon_sym_and] = ACTIONS(2781), + [anon_sym_EQ_EQ] = ACTIONS(2771), + [anon_sym_BANG_EQ] = ACTIONS(2771), + [anon_sym_EQ_TILDE] = ACTIONS(2771), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2771), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2771), + [anon_sym_LT_EQ] = ACTIONS(2771), + [anon_sym_GT_EQ] = ACTIONS(2771), + [anon_sym_PIPE_GT] = ACTIONS(2771), + [anon_sym_LT_LT_LT] = ACTIONS(2771), + [anon_sym_GT_GT_GT] = ACTIONS(2771), + [anon_sym_LT_LT_TILDE] = ACTIONS(2771), + [anon_sym_TILDE_GT_GT] = ACTIONS(2771), + [anon_sym_LT_TILDE] = ACTIONS(2771), + [anon_sym_TILDE_GT] = ACTIONS(2771), + [anon_sym_LT_TILDE_GT] = ACTIONS(2771), + [anon_sym_LT_PIPE_GT] = ACTIONS(2771), + [anon_sym_in] = ACTIONS(2781), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2771), + [anon_sym_DOT_DOT] = ACTIONS(2771), + [anon_sym_LT_GT] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_STAR_STAR] = ACTIONS(2771), + [anon_sym_CARET_CARET] = ACTIONS(2771), + [anon_sym_DASH_GT] = ACTIONS(2771), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_after] = ACTIONS(2765), + [anon_sym_catch] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_else] = ACTIONS(2765), + [anon_sym_end] = ACTIONS(2765), + [anon_sym_fn] = ACTIONS(2765), + [anon_sym_rescue] = ACTIONS(2765), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2761), + [sym__not_in] = ACTIONS(2783), }, [1043] = { - [ts_builtin_sym_end] = ACTIONS(2681), + [sym_identifier] = STATE(915), + [sym__quoted_i_double] = STATE(913), + [sym__quoted_i_single] = STATE(914), + [sym_tuple] = STATE(1602), + [sym_operator_identifier] = STATE(915), [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), - [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), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2671), + [anon_sym_true] = ACTIONS(2765), + [anon_sym_false] = ACTIONS(2765), + [anon_sym_nil] = ACTIONS(2765), + [anon_sym_DQUOTE] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(79), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_GT] = ACTIONS(2771), + [anon_sym_PIPE] = ACTIONS(2771), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_CARET] = ACTIONS(2775), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2775), + [anon_sym_not] = ACTIONS(2777), + [anon_sym_AT] = ACTIONS(2779), + [anon_sym_LT_DASH] = ACTIONS(2771), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2771), + [anon_sym_when] = ACTIONS(2781), + [anon_sym_COLON_COLON] = ACTIONS(2771), + [anon_sym_EQ] = ACTIONS(2771), + [anon_sym_PIPE_PIPE] = ACTIONS(2771), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2771), + [anon_sym_or] = ACTIONS(2781), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2771), + [anon_sym_and] = ACTIONS(2781), + [anon_sym_EQ_EQ] = ACTIONS(2771), + [anon_sym_BANG_EQ] = ACTIONS(2771), + [anon_sym_EQ_TILDE] = ACTIONS(2771), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2771), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2771), + [anon_sym_LT_EQ] = ACTIONS(2771), + [anon_sym_GT_EQ] = ACTIONS(2771), + [anon_sym_PIPE_GT] = ACTIONS(2771), + [anon_sym_LT_LT_LT] = ACTIONS(2771), + [anon_sym_GT_GT_GT] = ACTIONS(2771), + [anon_sym_LT_LT_TILDE] = ACTIONS(2771), + [anon_sym_TILDE_GT_GT] = ACTIONS(2771), + [anon_sym_LT_TILDE] = ACTIONS(2771), + [anon_sym_TILDE_GT] = ACTIONS(2771), + [anon_sym_LT_TILDE_GT] = ACTIONS(2771), + [anon_sym_LT_PIPE_GT] = ACTIONS(2771), + [anon_sym_in] = ACTIONS(2781), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2771), + [anon_sym_DOT_DOT] = ACTIONS(2771), + [anon_sym_LT_GT] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_STAR_STAR] = ACTIONS(2771), + [anon_sym_CARET_CARET] = ACTIONS(2771), + [anon_sym_DASH_GT] = ACTIONS(2771), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_after] = ACTIONS(2765), + [anon_sym_catch] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_else] = ACTIONS(2765), + [anon_sym_end] = ACTIONS(2765), + [anon_sym_fn] = ACTIONS(2765), + [anon_sym_rescue] = ACTIONS(2765), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2681), - [sym__not_in] = ACTIONS(2681), - [sym__quoted_atom_start] = ACTIONS(2681), + [sym__not_in] = ACTIONS(2783), }, [1044] = { + [sym_identifier] = STATE(915), + [sym__quoted_i_double] = STATE(913), + [sym__quoted_i_single] = STATE(914), + [sym_tuple] = STATE(1225), + [sym_operator_identifier] = STATE(915), [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), - [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), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(187), + [anon_sym_DOT_DOT_DOT] = ACTIONS(187), + [sym_alias] = ACTIONS(2717), + [anon_sym_true] = ACTIONS(2765), + [anon_sym_false] = ACTIONS(2765), + [anon_sym_nil] = ACTIONS(2765), + [anon_sym_DQUOTE] = ACTIONS(2767), + [anon_sym_SQUOTE] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(254), + [anon_sym_LT] = ACTIONS(2771), + [anon_sym_GT] = ACTIONS(2771), + [anon_sym_PIPE] = ACTIONS(2771), + [anon_sym_SLASH] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2775), + [anon_sym_DASH] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2775), + [anon_sym_CARET] = ACTIONS(2775), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2775), + [anon_sym_not] = ACTIONS(2777), + [anon_sym_AT] = ACTIONS(2779), + [anon_sym_LT_DASH] = ACTIONS(2771), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2771), + [anon_sym_when] = ACTIONS(2781), + [anon_sym_COLON_COLON] = ACTIONS(2771), + [anon_sym_EQ] = ACTIONS(2771), + [anon_sym_PIPE_PIPE] = ACTIONS(2771), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2771), + [anon_sym_or] = ACTIONS(2781), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2771), + [anon_sym_and] = ACTIONS(2781), + [anon_sym_EQ_EQ] = ACTIONS(2771), + [anon_sym_BANG_EQ] = ACTIONS(2771), + [anon_sym_EQ_TILDE] = ACTIONS(2771), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2771), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2771), + [anon_sym_LT_EQ] = ACTIONS(2771), + [anon_sym_GT_EQ] = ACTIONS(2771), + [anon_sym_PIPE_GT] = ACTIONS(2771), + [anon_sym_LT_LT_LT] = ACTIONS(2771), + [anon_sym_GT_GT_GT] = ACTIONS(2771), + [anon_sym_LT_LT_TILDE] = ACTIONS(2771), + [anon_sym_TILDE_GT_GT] = ACTIONS(2771), + [anon_sym_LT_TILDE] = ACTIONS(2771), + [anon_sym_TILDE_GT] = ACTIONS(2771), + [anon_sym_LT_TILDE_GT] = ACTIONS(2771), + [anon_sym_LT_PIPE_GT] = ACTIONS(2771), + [anon_sym_in] = ACTIONS(2781), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2771), + [anon_sym_DOT_DOT] = ACTIONS(2771), + [anon_sym_LT_GT] = ACTIONS(2771), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_STAR_STAR] = ACTIONS(2771), + [anon_sym_CARET_CARET] = ACTIONS(2771), + [anon_sym_DASH_GT] = ACTIONS(2771), + [anon_sym_DOT] = ACTIONS(2771), + [anon_sym_after] = ACTIONS(2765), + [anon_sym_catch] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_else] = ACTIONS(2765), + [anon_sym_end] = ACTIONS(2765), + [anon_sym_fn] = ACTIONS(2765), + [anon_sym_rescue] = ACTIONS(2765), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__before_unary_op] = ACTIONS(2681), - [sym__not_in] = ACTIONS(2681), - [sym__quoted_atom_start] = ACTIONS(2681), + [sym__not_in] = ACTIONS(2783), }, [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), + [sym_identifier] = STATE(931), + [sym__quoted_i_double] = STATE(927), + [sym__quoted_i_single] = STATE(928), + [sym_tuple] = STATE(2738), + [sym_operator_identifier] = STATE(931), [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(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(846), - [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), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2787), + [anon_sym_true] = ACTIONS(2723), + [anon_sym_false] = ACTIONS(2723), + [anon_sym_nil] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2725), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(588), + [anon_sym_LT] = ACTIONS(2729), + [anon_sym_GT] = ACTIONS(2729), + [anon_sym_PIPE] = ACTIONS(2729), + [anon_sym_SLASH] = ACTIONS(2729), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_PLUS] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_BANG] = ACTIONS(2733), + [anon_sym_CARET] = ACTIONS(2733), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2733), + [anon_sym_not] = ACTIONS(2735), + [anon_sym_AT] = ACTIONS(2737), + [anon_sym_LT_DASH] = ACTIONS(2729), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2729), + [anon_sym_when] = ACTIONS(2739), + [anon_sym_COLON_COLON] = ACTIONS(2729), + [anon_sym_EQ] = ACTIONS(2729), + [anon_sym_PIPE_PIPE] = ACTIONS(2729), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2729), + [anon_sym_or] = ACTIONS(2739), + [anon_sym_AMP_AMP] = ACTIONS(2729), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2729), + [anon_sym_and] = ACTIONS(2739), + [anon_sym_EQ_EQ] = ACTIONS(2729), + [anon_sym_BANG_EQ] = ACTIONS(2729), + [anon_sym_EQ_TILDE] = ACTIONS(2729), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2729), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2729), + [anon_sym_LT_EQ] = ACTIONS(2729), + [anon_sym_GT_EQ] = ACTIONS(2729), + [anon_sym_PIPE_GT] = ACTIONS(2729), + [anon_sym_LT_LT_LT] = ACTIONS(2729), + [anon_sym_GT_GT_GT] = ACTIONS(2729), + [anon_sym_LT_LT_TILDE] = ACTIONS(2729), + [anon_sym_TILDE_GT_GT] = ACTIONS(2729), + [anon_sym_LT_TILDE] = ACTIONS(2729), + [anon_sym_TILDE_GT] = ACTIONS(2729), + [anon_sym_LT_TILDE_GT] = ACTIONS(2729), + [anon_sym_LT_PIPE_GT] = ACTIONS(2729), + [anon_sym_in] = ACTIONS(2739), + [anon_sym_PLUS_PLUS] = ACTIONS(2729), + [anon_sym_DASH_DASH] = ACTIONS(2729), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2729), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2729), + [anon_sym_DOT_DOT] = ACTIONS(2729), + [anon_sym_LT_GT] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_STAR_STAR] = ACTIONS(2729), + [anon_sym_CARET_CARET] = ACTIONS(2729), + [anon_sym_DASH_GT] = ACTIONS(2729), + [anon_sym_DOT] = ACTIONS(2729), + [anon_sym_after] = ACTIONS(2723), + [anon_sym_catch] = ACTIONS(2723), + [anon_sym_do] = ACTIONS(2723), + [anon_sym_else] = ACTIONS(2723), + [anon_sym_end] = ACTIONS(2723), + [anon_sym_fn] = ACTIONS(2723), + [anon_sym_rescue] = ACTIONS(2723), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2785), + [sym__not_in] = ACTIONS(2741), }, [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), + [sym_identifier] = STATE(999), + [sym__quoted_i_double] = STATE(998), + [sym__quoted_i_single] = STATE(997), + [sym_tuple] = STATE(3231), + [sym_operator_identifier] = STATE(999), [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(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), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(526), + [anon_sym_DOT_DOT_DOT] = ACTIONS(526), [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), + [anon_sym_true] = ACTIONS(2697), + [anon_sym_false] = ACTIONS(2697), + [anon_sym_nil] = ACTIONS(2697), + [anon_sym_DQUOTE] = ACTIONS(2699), + [anon_sym_SQUOTE] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(542), + [anon_sym_LT] = ACTIONS(2703), + [anon_sym_GT] = ACTIONS(2703), + [anon_sym_PIPE] = ACTIONS(2703), + [anon_sym_SLASH] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2707), + [anon_sym_CARET] = ACTIONS(2707), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2707), + [anon_sym_not] = ACTIONS(2709), + [anon_sym_AT] = ACTIONS(2711), + [anon_sym_LT_DASH] = ACTIONS(2703), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2703), + [anon_sym_when] = ACTIONS(2713), + [anon_sym_COLON_COLON] = ACTIONS(2703), + [anon_sym_EQ] = ACTIONS(2703), + [anon_sym_PIPE_PIPE] = ACTIONS(2703), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2703), + [anon_sym_or] = ACTIONS(2713), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2703), + [anon_sym_and] = ACTIONS(2713), + [anon_sym_EQ_EQ] = ACTIONS(2703), + [anon_sym_BANG_EQ] = ACTIONS(2703), + [anon_sym_EQ_TILDE] = ACTIONS(2703), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2703), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2703), + [anon_sym_LT_EQ] = ACTIONS(2703), + [anon_sym_GT_EQ] = ACTIONS(2703), + [anon_sym_PIPE_GT] = ACTIONS(2703), + [anon_sym_LT_LT_LT] = ACTIONS(2703), + [anon_sym_GT_GT_GT] = ACTIONS(2703), + [anon_sym_LT_LT_TILDE] = ACTIONS(2703), + [anon_sym_TILDE_GT_GT] = ACTIONS(2703), + [anon_sym_LT_TILDE] = ACTIONS(2703), + [anon_sym_TILDE_GT] = ACTIONS(2703), + [anon_sym_LT_TILDE_GT] = ACTIONS(2703), + [anon_sym_LT_PIPE_GT] = ACTIONS(2703), + [anon_sym_in] = ACTIONS(2713), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2703), + [anon_sym_DOT_DOT] = ACTIONS(2703), + [anon_sym_LT_GT] = ACTIONS(2703), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_STAR_STAR] = ACTIONS(2703), + [anon_sym_CARET_CARET] = ACTIONS(2703), + [anon_sym_DASH_GT] = ACTIONS(2703), + [anon_sym_DOT] = ACTIONS(2703), + [anon_sym_after] = ACTIONS(2697), + [anon_sym_catch] = ACTIONS(2697), + [anon_sym_do] = ACTIONS(2697), + [anon_sym_else] = ACTIONS(2697), + [anon_sym_end] = ACTIONS(2697), + [anon_sym_fn] = ACTIONS(2697), + [anon_sym_rescue] = ACTIONS(2697), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2813), + [sym__not_in] = ACTIONS(2715), }, [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), + [sym_identifier] = STATE(931), + [sym__quoted_i_double] = STATE(927), + [sym__quoted_i_single] = STATE(928), + [sym_tuple] = STATE(3070), + [sym_operator_identifier] = STATE(931), [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), + [anon_sym_LPAREN] = ACTIONS(2647), + [aux_sym_identifier_token1] = ACTIONS(345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(345), + [sym_alias] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(2723), + [anon_sym_false] = ACTIONS(2723), + [anon_sym_nil] = ACTIONS(2723), + [anon_sym_DQUOTE] = ACTIONS(2725), + [anon_sym_SQUOTE] = ACTIONS(2727), + [anon_sym_LBRACE] = ACTIONS(1033), + [anon_sym_LT] = ACTIONS(2729), + [anon_sym_GT] = ACTIONS(2729), + [anon_sym_PIPE] = ACTIONS(2729), + [anon_sym_SLASH] = ACTIONS(2729), + [anon_sym_AMP] = ACTIONS(2731), + [anon_sym_PLUS] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_BANG] = ACTIONS(2733), + [anon_sym_CARET] = ACTIONS(2733), + [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2733), + [anon_sym_not] = ACTIONS(2735), + [anon_sym_AT] = ACTIONS(2737), + [anon_sym_LT_DASH] = ACTIONS(2729), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2729), + [anon_sym_when] = ACTIONS(2739), + [anon_sym_COLON_COLON] = ACTIONS(2729), + [anon_sym_EQ] = ACTIONS(2729), + [anon_sym_PIPE_PIPE] = ACTIONS(2729), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2729), + [anon_sym_or] = ACTIONS(2739), + [anon_sym_AMP_AMP] = ACTIONS(2729), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2729), + [anon_sym_and] = ACTIONS(2739), + [anon_sym_EQ_EQ] = ACTIONS(2729), + [anon_sym_BANG_EQ] = ACTIONS(2729), + [anon_sym_EQ_TILDE] = ACTIONS(2729), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2729), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2729), + [anon_sym_LT_EQ] = ACTIONS(2729), + [anon_sym_GT_EQ] = ACTIONS(2729), + [anon_sym_PIPE_GT] = ACTIONS(2729), + [anon_sym_LT_LT_LT] = ACTIONS(2729), + [anon_sym_GT_GT_GT] = ACTIONS(2729), + [anon_sym_LT_LT_TILDE] = ACTIONS(2729), + [anon_sym_TILDE_GT_GT] = ACTIONS(2729), + [anon_sym_LT_TILDE] = ACTIONS(2729), + [anon_sym_TILDE_GT] = ACTIONS(2729), + [anon_sym_LT_TILDE_GT] = ACTIONS(2729), + [anon_sym_LT_PIPE_GT] = ACTIONS(2729), + [anon_sym_in] = ACTIONS(2739), + [anon_sym_PLUS_PLUS] = ACTIONS(2729), + [anon_sym_DASH_DASH] = ACTIONS(2729), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2729), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2729), + [anon_sym_DOT_DOT] = ACTIONS(2729), + [anon_sym_LT_GT] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2729), + [anon_sym_STAR_STAR] = ACTIONS(2729), + [anon_sym_CARET_CARET] = ACTIONS(2729), + [anon_sym_DASH_GT] = ACTIONS(2729), + [anon_sym_DOT] = ACTIONS(2729), + [anon_sym_after] = ACTIONS(2723), + [anon_sym_catch] = ACTIONS(2723), + [anon_sym_do] = ACTIONS(2723), + [anon_sym_else] = ACTIONS(2723), + [anon_sym_end] = ACTIONS(2723), + [anon_sym_fn] = ACTIONS(2723), + [anon_sym_rescue] = ACTIONS(2723), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2837), + [sym__not_in] = ACTIONS(2741), }, [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(215), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_GT] = ACTIONS(2749), - [anon_sym_PIPE] = ACTIONS(2749), - [anon_sym_SLASH] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2751), - [anon_sym_PLUS] = ACTIONS(2753), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_CARET] = ACTIONS(2753), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2753), - [anon_sym_not] = ACTIONS(2755), - [anon_sym_AT] = ACTIONS(2757), - [anon_sym_LT_DASH] = ACTIONS(2749), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2749), - [anon_sym_when] = ACTIONS(2759), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_EQ] = ACTIONS(2749), - [anon_sym_PIPE_PIPE] = ACTIONS(2749), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2749), - [anon_sym_or] = ACTIONS(2759), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2749), - [anon_sym_and] = ACTIONS(2759), - [anon_sym_EQ_EQ] = ACTIONS(2749), - [anon_sym_BANG_EQ] = ACTIONS(2749), - [anon_sym_EQ_TILDE] = ACTIONS(2749), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2749), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2749), - [anon_sym_LT_EQ] = ACTIONS(2749), - [anon_sym_GT_EQ] = ACTIONS(2749), - [anon_sym_PIPE_GT] = ACTIONS(2749), - [anon_sym_LT_LT_LT] = ACTIONS(2749), - [anon_sym_GT_GT_GT] = ACTIONS(2749), - [anon_sym_LT_LT_TILDE] = ACTIONS(2749), - [anon_sym_TILDE_GT_GT] = ACTIONS(2749), - [anon_sym_LT_TILDE] = ACTIONS(2749), - [anon_sym_TILDE_GT] = ACTIONS(2749), - [anon_sym_LT_TILDE_GT] = ACTIONS(2749), - [anon_sym_LT_PIPE_GT] = ACTIONS(2749), - [anon_sym_in] = ACTIONS(2759), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2749), - [anon_sym_DOT_DOT] = ACTIONS(2749), - [anon_sym_LT_GT] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_STAR_STAR] = ACTIONS(2749), - [anon_sym_CARET_CARET] = ACTIONS(2749), - [anon_sym_DASH_GT] = ACTIONS(2749), - [anon_sym_DOT] = ACTIONS(2749), - [anon_sym_after] = ACTIONS(2743), - [anon_sym_catch] = ACTIONS(2743), - [anon_sym_do] = ACTIONS(2743), - [anon_sym_else] = ACTIONS(2743), - [anon_sym_end] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2743), - [anon_sym_rescue] = ACTIONS(2743), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2761), - }, - [1053] = { - [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(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(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(87), - [anon_sym_LT] = ACTIONS(2749), - [anon_sym_GT] = ACTIONS(2749), - [anon_sym_PIPE] = ACTIONS(2749), - [anon_sym_SLASH] = ACTIONS(2749), - [anon_sym_AMP] = ACTIONS(2751), - [anon_sym_PLUS] = ACTIONS(2753), - [anon_sym_DASH] = ACTIONS(2753), - [anon_sym_BANG] = ACTIONS(2753), - [anon_sym_CARET] = ACTIONS(2753), - [anon_sym_TILDE_TILDE_TILDE] = ACTIONS(2753), - [anon_sym_not] = ACTIONS(2755), - [anon_sym_AT] = ACTIONS(2757), - [anon_sym_LT_DASH] = ACTIONS(2749), - [anon_sym_BSLASH_BSLASH] = ACTIONS(2749), - [anon_sym_when] = ACTIONS(2759), - [anon_sym_COLON_COLON] = ACTIONS(2749), - [anon_sym_EQ] = ACTIONS(2749), - [anon_sym_PIPE_PIPE] = ACTIONS(2749), - [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2749), - [anon_sym_or] = ACTIONS(2759), - [anon_sym_AMP_AMP] = ACTIONS(2749), - [anon_sym_AMP_AMP_AMP] = ACTIONS(2749), - [anon_sym_and] = ACTIONS(2759), - [anon_sym_EQ_EQ] = ACTIONS(2749), - [anon_sym_BANG_EQ] = ACTIONS(2749), - [anon_sym_EQ_TILDE] = ACTIONS(2749), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2749), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2749), - [anon_sym_LT_EQ] = ACTIONS(2749), - [anon_sym_GT_EQ] = ACTIONS(2749), - [anon_sym_PIPE_GT] = ACTIONS(2749), - [anon_sym_LT_LT_LT] = ACTIONS(2749), - [anon_sym_GT_GT_GT] = ACTIONS(2749), - [anon_sym_LT_LT_TILDE] = ACTIONS(2749), - [anon_sym_TILDE_GT_GT] = ACTIONS(2749), - [anon_sym_LT_TILDE] = ACTIONS(2749), - [anon_sym_TILDE_GT] = ACTIONS(2749), - [anon_sym_LT_TILDE_GT] = ACTIONS(2749), - [anon_sym_LT_PIPE_GT] = ACTIONS(2749), - [anon_sym_in] = ACTIONS(2759), - [anon_sym_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_DASH_DASH] = ACTIONS(2749), - [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2749), - [anon_sym_DASH_DASH_DASH] = ACTIONS(2749), - [anon_sym_DOT_DOT] = ACTIONS(2749), - [anon_sym_LT_GT] = ACTIONS(2749), - [anon_sym_STAR] = ACTIONS(2749), - [anon_sym_STAR_STAR] = ACTIONS(2749), - [anon_sym_CARET_CARET] = ACTIONS(2749), - [anon_sym_DASH_GT] = ACTIONS(2749), - [anon_sym_DOT] = ACTIONS(2749), - [anon_sym_after] = ACTIONS(2743), - [anon_sym_catch] = ACTIONS(2743), - [anon_sym_do] = ACTIONS(2743), - [anon_sym_else] = ACTIONS(2743), - [anon_sym_end] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2743), - [anon_sym_rescue] = ACTIONS(2743), - [sym_comment] = ACTIONS(5), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2761), - }, - [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(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(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(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] = { - [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(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(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), - [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), - }, - [1059] = { - [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), - [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(1024), - [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), - }, - [1061] = { - [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(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(355), - [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(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(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(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), - }, - [1063] = { - [sym__terminator] = STATE(169), - [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(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(1044), - [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(143), + [sym__terminator] = STATE(140), [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__terminator_repeat1] = STATE(1009), + [aux_sym_block_repeat2] = STATE(4198), [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), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(952), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), + [sym__not_in] = ACTIONS(2842), }, - [1065] = { + [1049] = { + [sym__terminator] = STATE(160), + [sym_after_block] = STATE(4294), + [sym_rescue_block] = STATE(4294), + [sym_catch_block] = STATE(4294), + [sym_else_block] = STATE(4294), + [aux_sym__terminator_repeat1] = STATE(1009), + [aux_sym_block_repeat2] = STATE(4208), + [aux_sym_do_block_repeat1] = STATE(4294), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2844), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(976), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2842), + }, + [1050] = { + [sym__terminator] = STATE(162), + [sym_after_block] = STATE(4316), + [sym_rescue_block] = STATE(4316), + [sym_catch_block] = STATE(4316), + [sym_else_block] = STATE(4316), + [aux_sym__terminator_repeat1] = STATE(1009), + [aux_sym_block_repeat2] = STATE(4218), + [aux_sym_do_block_repeat1] = STATE(4316), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2846), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(309), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2842), + }, + [1051] = { [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_after_block] = STATE(4305), + [sym_rescue_block] = STATE(4305), + [sym_catch_block] = STATE(4305), + [sym_else_block] = STATE(4305), + [aux_sym__terminator_repeat1] = STATE(1009), + [aux_sym_block_repeat2] = STATE(4255), + [aux_sym_do_block_repeat1] = STATE(4305), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2848), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(942), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), + [sym__not_in] = ACTIONS(2842), }, - [1066] = { + [1052] = { + [sym__terminator] = STATE(145), + [sym_after_block] = STATE(4267), + [sym_rescue_block] = STATE(4267), + [sym_catch_block] = STATE(4267), + [sym_else_block] = STATE(4267), + [aux_sym__terminator_repeat1] = STATE(1009), + [aux_sym_block_repeat2] = STATE(4248), + [aux_sym_do_block_repeat1] = STATE(4267), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2850), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(333), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2842), + }, + [1053] = { + [sym__terminator] = STATE(163), + [sym_after_block] = STATE(4313), + [sym_rescue_block] = STATE(4313), + [sym_catch_block] = STATE(4313), + [sym_else_block] = STATE(4313), + [aux_sym__terminator_repeat1] = STATE(1009), + [aux_sym_block_repeat2] = STATE(4214), + [aux_sym_do_block_repeat1] = STATE(4313), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2852), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(934), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2842), + }, + [1054] = { + [sym__terminator] = STATE(170), + [sym_after_block] = STATE(4262), + [sym_rescue_block] = STATE(4262), + [sym_catch_block] = STATE(4262), + [sym_else_block] = STATE(4262), + [aux_sym__terminator_repeat1] = STATE(1009), + [aux_sym_block_repeat2] = STATE(4251), + [aux_sym_do_block_repeat1] = STATE(4262), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2854), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(984), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2842), + }, + [1055] = { + [sym__terminator] = STATE(151), + [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(1009), + [aux_sym_block_repeat2] = STATE(4197), + [aux_sym_do_block_repeat1] = STATE(4309), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2856), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(950), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2842), + }, + [1056] = { + [sym__terminator] = STATE(158), + [sym_after_block] = STATE(4303), + [sym_rescue_block] = STATE(4303), + [sym_catch_block] = STATE(4303), + [sym_else_block] = STATE(4303), + [aux_sym__terminator_repeat1] = STATE(1009), + [aux_sym_block_repeat2] = STATE(4206), + [aux_sym_do_block_repeat1] = STATE(4303), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2858), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(1002), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2842), + }, + [1057] = { + [sym__terminator] = STATE(175), + [sym_after_block] = STATE(4284), + [sym_rescue_block] = STATE(4284), + [sym_catch_block] = STATE(4284), + [sym_else_block] = STATE(4284), + [aux_sym__terminator_repeat1] = STATE(1009), + [aux_sym_block_repeat2] = STATE(4225), + [aux_sym_do_block_repeat1] = STATE(4284), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2860), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(297), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2842), + }, + [1058] = { + [sym__terminator] = STATE(156), + [sym_after_block] = STATE(4312), + [sym_rescue_block] = STATE(4312), + [sym_catch_block] = STATE(4312), + [sym_else_block] = STATE(4312), + [aux_sym__terminator_repeat1] = STATE(1009), + [aux_sym_block_repeat2] = STATE(4209), + [aux_sym_do_block_repeat1] = STATE(4312), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2862), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(958), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2842), + }, + [1059] = { [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__terminator_repeat1] = STATE(1009), + [aux_sym_block_repeat2] = STATE(4213), [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), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2864), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(329), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), + [sym__not_in] = ACTIONS(2842), }, - [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), + [1060] = { + [sym__terminator] = STATE(173), + [sym_after_block] = STATE(4263), + [sym_rescue_block] = STATE(4263), + [sym_catch_block] = STATE(4263), + [sym_else_block] = STATE(4263), + [aux_sym__terminator_repeat1] = STATE(1009), + [aux_sym_block_repeat2] = STATE(4250), + [aux_sym_do_block_repeat1] = STATE(4263), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2866), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(1000), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), + [sym__not_in] = ACTIONS(2842), }, - [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), + [1061] = { + [sym__terminator] = STATE(174), + [sym_after_block] = STATE(4259), + [sym_rescue_block] = STATE(4259), + [sym_catch_block] = STATE(4259), + [sym_else_block] = STATE(4259), + [aux_sym__terminator_repeat1] = STATE(1009), [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), + [aux_sym_do_block_repeat1] = STATE(4259), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(317), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), + [sym__not_in] = ACTIONS(2842), }, - [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), + [1062] = { + [sym__terminator] = STATE(153), + [sym_after_block] = STATE(4266), + [sym_rescue_block] = STATE(4266), + [sym_catch_block] = STATE(4266), + [sym_else_block] = STATE(4266), + [aux_sym__terminator_repeat1] = STATE(1009), + [aux_sym_block_repeat2] = STATE(4210), + [aux_sym_do_block_repeat1] = STATE(4266), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(321), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), + [sym__not_in] = ACTIONS(2842), }, - [1073] = { - [sym__terminator] = STATE(156), - [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), + [1063] = { + [sym__terminator] = STATE(147), + [sym_after_block] = STATE(4297), + [sym_rescue_block] = STATE(4297), + [sym_catch_block] = STATE(4297), + [sym_else_block] = STATE(4297), + [aux_sym__terminator_repeat1] = STATE(1009), + [aux_sym_block_repeat2] = STATE(4205), + [aux_sym_do_block_repeat1] = STATE(4297), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2872), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(948), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), + [sym__not_in] = ACTIONS(2842), }, - [1074] = { - [sym__terminator] = STATE(161), + [1064] = { + [sym__terminator] = STATE(149), [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__terminator_repeat1] = STATE(1009), + [aux_sym_block_repeat2] = STATE(4203), [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), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2874), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(313), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), + [sym__not_in] = ACTIONS(2842), }, - [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), + [1065] = { + [sym__terminator] = STATE(166), + [sym_after_block] = STATE(4269), + [sym_rescue_block] = STATE(4269), + [sym_catch_block] = STATE(4269), + [sym_else_block] = STATE(4269), + [aux_sym__terminator_repeat1] = STATE(1009), + [aux_sym_block_repeat2] = STATE(4245), + [aux_sym_do_block_repeat1] = STATE(4269), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(341), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), + [sym__not_in] = ACTIONS(2842), }, - [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), + [1066] = { + [sym__terminator] = STATE(165), + [sym_after_block] = STATE(4307), + [sym_rescue_block] = STATE(4307), + [sym_catch_block] = STATE(4307), + [sym_else_block] = STATE(4307), + [aux_sym__terminator_repeat1] = STATE(1009), + [aux_sym_block_repeat2] = STATE(4215), + [aux_sym_do_block_repeat1] = STATE(4307), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(325), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), [sym_comment] = ACTIONS(5), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), + [sym__not_in] = ACTIONS(2842), }, - [1077] = { - [sym__terminator] = STATE(175), + [1067] = { + [sym__terminator] = STATE(169), + [sym_after_block] = STATE(4268), + [sym_rescue_block] = STATE(4268), + [sym_catch_block] = STATE(4268), + [sym_else_block] = STATE(4268), + [aux_sym__terminator_repeat1] = STATE(1009), + [aux_sym_block_repeat2] = STATE(4190), + [aux_sym_do_block_repeat1] = STATE(4268), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2880), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(986), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2842), + }, + [1068] = { + [sym__terminator] = STATE(150), + [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(1009), + [aux_sym_block_repeat2] = STATE(4193), + [aux_sym_do_block_repeat1] = STATE(4290), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2882), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(337), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2842), + }, + [1069] = { + [sym__terminator] = STATE(154), + [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(1009), + [aux_sym_block_repeat2] = STATE(4184), + [aux_sym_do_block_repeat1] = STATE(4274), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(982), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2842), + }, + [1070] = { + [sym__terminator] = STATE(141), + [sym_after_block] = STATE(4283), + [sym_rescue_block] = STATE(4283), + [sym_catch_block] = STATE(4283), + [sym_else_block] = STATE(4283), + [aux_sym__terminator_repeat1] = STATE(1009), + [aux_sym_block_repeat2] = STATE(4227), + [aux_sym_do_block_repeat1] = STATE(4283), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2886), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(305), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2842), + }, + [1071] = { + [sym__terminator] = STATE(148), [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__terminator_repeat1] = STATE(1009), + [aux_sym_block_repeat2] = STATE(4230), [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), + [aux_sym__stab_clause_arguments_without_parentheses_repeat1] = STATE(5149), + [aux_sym__terminator_token1] = ACTIONS(2793), + [anon_sym_SEMI] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_COMMA] = ACTIONS(2803), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_LT_DASH] = ACTIONS(2807), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2807), + [anon_sym_when] = ACTIONS(2809), + [anon_sym_COLON_COLON] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2814), + [anon_sym_EQ] = ACTIONS(2816), + [anon_sym_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2818), + [anon_sym_or] = ACTIONS(2818), + [anon_sym_AMP_AMP] = ACTIONS(2820), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2820), + [anon_sym_and] = ACTIONS(2820), + [anon_sym_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ] = ACTIONS(2822), + [anon_sym_EQ_TILDE] = ACTIONS(2822), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2822), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2822), + [anon_sym_LT_EQ] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2797), + [anon_sym_PIPE_GT] = ACTIONS(2824), + [anon_sym_LT_LT_LT] = ACTIONS(2824), + [anon_sym_GT_GT_GT] = ACTIONS(2824), + [anon_sym_LT_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE] = ACTIONS(2824), + [anon_sym_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_TILDE_GT] = ACTIONS(2824), + [anon_sym_LT_PIPE_GT] = ACTIONS(2824), + [anon_sym_in] = ACTIONS(2826), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2828), + [anon_sym_SLASH_SLASH] = ACTIONS(2830), + [anon_sym_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH] = ACTIONS(2832), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2832), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2832), + [anon_sym_DOT_DOT] = ACTIONS(2832), + [anon_sym_LT_GT] = ACTIONS(2832), + [anon_sym_STAR] = ACTIONS(2801), + [anon_sym_STAR_STAR] = ACTIONS(2834), + [anon_sym_DASH_GT] = ACTIONS(2836), + [anon_sym_DOT] = ACTIONS(2838), + [anon_sym_after] = ACTIONS(99), + [anon_sym_catch] = ACTIONS(101), + [anon_sym_else] = ACTIONS(103), + [anon_sym_end] = ACTIONS(301), + [anon_sym_rescue] = ACTIONS(109), + [anon_sym_LBRACK2] = ACTIONS(2840), + [sym_comment] = ACTIONS(5), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2842), + }, + [1072] = { + [sym__call_arguments_with_parentheses] = STATE(1081), + [aux_sym__terminator_token1] = ACTIONS(2890), + [anon_sym_SEMI] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2894), + [anon_sym_RPAREN] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2892), + [anon_sym_GT] = ACTIONS(2892), + [anon_sym_PIPE] = ACTIONS(2892), + [anon_sym_SLASH] = ACTIONS(2892), + [anon_sym_COMMA] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_LT_DASH] = ACTIONS(2892), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2892), + [anon_sym_when] = ACTIONS(2892), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2892), + [anon_sym_EQ] = ACTIONS(2892), + [anon_sym_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_or] = ACTIONS(2892), + [anon_sym_AMP_AMP] = ACTIONS(2892), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2892), + [anon_sym_and] = ACTIONS(2892), + [anon_sym_EQ_EQ] = ACTIONS(2892), + [anon_sym_BANG_EQ] = ACTIONS(2892), + [anon_sym_EQ_TILDE] = ACTIONS(2892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2892), + [anon_sym_LT_EQ] = ACTIONS(2892), + [anon_sym_GT_EQ] = ACTIONS(2892), + [anon_sym_PIPE_GT] = ACTIONS(2892), + [anon_sym_LT_LT_LT] = ACTIONS(2892), + [anon_sym_GT_GT_GT] = ACTIONS(2892), + [anon_sym_LT_LT_TILDE] = ACTIONS(2892), + [anon_sym_TILDE_GT_GT] = ACTIONS(2892), + [anon_sym_LT_TILDE] = ACTIONS(2892), + [anon_sym_TILDE_GT] = ACTIONS(2892), + [anon_sym_LT_TILDE_GT] = ACTIONS(2892), + [anon_sym_LT_PIPE_GT] = ACTIONS(2892), + [anon_sym_in] = ACTIONS(2892), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2892), + [anon_sym_SLASH_SLASH] = ACTIONS(2892), + [anon_sym_PLUS_PLUS] = ACTIONS(2892), + [anon_sym_DASH_DASH] = ACTIONS(2892), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2892), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2892), + [anon_sym_DOT_DOT] = ACTIONS(2892), + [anon_sym_LT_GT] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(2892), + [anon_sym_STAR_STAR] = ACTIONS(2892), + [anon_sym_DASH_GT] = ACTIONS(2892), + [anon_sym_DOT] = ACTIONS(2892), + [anon_sym_after] = ACTIONS(2892), + [anon_sym_catch] = ACTIONS(2892), + [anon_sym_do] = ACTIONS(2892), + [anon_sym_else] = ACTIONS(2892), + [anon_sym_end] = ACTIONS(2892), + [anon_sym_rescue] = ACTIONS(2892), + [anon_sym_LBRACK2] = ACTIONS(2890), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2890), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2890), + }, + [1073] = { + [sym_do_block] = STATE(1108), + [aux_sym__terminator_token1] = ACTIONS(2896), + [anon_sym_SEMI] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(2898), + [anon_sym_RPAREN] = ACTIONS(2898), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_GT] = ACTIONS(2898), + [anon_sym_PIPE] = ACTIONS(2898), + [anon_sym_SLASH] = ACTIONS(2898), + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_PLUS] = ACTIONS(2898), + [anon_sym_DASH] = ACTIONS(2898), + [anon_sym_LT_DASH] = ACTIONS(2898), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2898), + [anon_sym_when] = ACTIONS(2898), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_EQ_GT] = ACTIONS(2898), [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_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2898), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2898), + [anon_sym_and] = ACTIONS(2898), + [anon_sym_EQ_EQ] = ACTIONS(2898), + [anon_sym_BANG_EQ] = ACTIONS(2898), + [anon_sym_EQ_TILDE] = ACTIONS(2898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2898), + [anon_sym_LT_EQ] = ACTIONS(2898), + [anon_sym_GT_EQ] = ACTIONS(2898), + [anon_sym_PIPE_GT] = ACTIONS(2898), + [anon_sym_LT_LT_LT] = ACTIONS(2898), + [anon_sym_GT_GT_GT] = ACTIONS(2898), + [anon_sym_LT_LT_TILDE] = ACTIONS(2898), + [anon_sym_TILDE_GT_GT] = ACTIONS(2898), + [anon_sym_LT_TILDE] = ACTIONS(2898), + [anon_sym_TILDE_GT] = ACTIONS(2898), + [anon_sym_LT_TILDE_GT] = ACTIONS(2898), + [anon_sym_LT_PIPE_GT] = ACTIONS(2898), + [anon_sym_in] = ACTIONS(2898), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2898), + [anon_sym_SLASH_SLASH] = ACTIONS(2898), + [anon_sym_PLUS_PLUS] = ACTIONS(2898), + [anon_sym_DASH_DASH] = ACTIONS(2898), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2898), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2898), + [anon_sym_DOT_DOT] = ACTIONS(2898), + [anon_sym_LT_GT] = ACTIONS(2898), + [anon_sym_STAR] = ACTIONS(2898), + [anon_sym_STAR_STAR] = ACTIONS(2898), + [anon_sym_DASH_GT] = ACTIONS(2898), + [anon_sym_DOT] = ACTIONS(2898), + [anon_sym_after] = ACTIONS(2898), + [anon_sym_catch] = ACTIONS(2898), + [anon_sym_do] = ACTIONS(2898), + [anon_sym_else] = ACTIONS(2898), + [anon_sym_end] = ACTIONS(2898), + [anon_sym_rescue] = ACTIONS(2898), + [anon_sym_LBRACK2] = ACTIONS(2896), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2896), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2896), + }, + [1074] = { + [sym__call_arguments_with_parentheses] = STATE(1083), + [aux_sym__terminator_token1] = ACTIONS(2890), + [anon_sym_SEMI] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2894), + [anon_sym_RPAREN] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2892), + [anon_sym_GT] = ACTIONS(2892), + [anon_sym_PIPE] = ACTIONS(2892), + [anon_sym_SLASH] = ACTIONS(2892), + [anon_sym_COMMA] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_LT_DASH] = ACTIONS(2892), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2892), + [anon_sym_when] = ACTIONS(2892), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2892), + [anon_sym_EQ] = ACTIONS(2892), + [anon_sym_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_or] = ACTIONS(2892), + [anon_sym_AMP_AMP] = ACTIONS(2892), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2892), + [anon_sym_and] = ACTIONS(2892), + [anon_sym_EQ_EQ] = ACTIONS(2892), + [anon_sym_BANG_EQ] = ACTIONS(2892), + [anon_sym_EQ_TILDE] = ACTIONS(2892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2892), + [anon_sym_LT_EQ] = ACTIONS(2892), + [anon_sym_GT_EQ] = ACTIONS(2892), + [anon_sym_PIPE_GT] = ACTIONS(2892), + [anon_sym_LT_LT_LT] = ACTIONS(2892), + [anon_sym_GT_GT_GT] = ACTIONS(2892), + [anon_sym_LT_LT_TILDE] = ACTIONS(2892), + [anon_sym_TILDE_GT_GT] = ACTIONS(2892), + [anon_sym_LT_TILDE] = ACTIONS(2892), + [anon_sym_TILDE_GT] = ACTIONS(2892), + [anon_sym_LT_TILDE_GT] = ACTIONS(2892), + [anon_sym_LT_PIPE_GT] = ACTIONS(2892), + [anon_sym_in] = ACTIONS(2892), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2892), + [anon_sym_SLASH_SLASH] = ACTIONS(2892), + [anon_sym_PLUS_PLUS] = ACTIONS(2892), + [anon_sym_DASH_DASH] = ACTIONS(2892), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2892), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2892), + [anon_sym_DOT_DOT] = ACTIONS(2892), + [anon_sym_LT_GT] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(2892), + [anon_sym_STAR_STAR] = ACTIONS(2892), + [anon_sym_DASH_GT] = ACTIONS(2892), + [anon_sym_DOT] = ACTIONS(2892), + [anon_sym_after] = ACTIONS(2892), + [anon_sym_catch] = ACTIONS(2892), + [anon_sym_do] = ACTIONS(2892), + [anon_sym_else] = ACTIONS(2892), + [anon_sym_end] = ACTIONS(2892), + [anon_sym_rescue] = ACTIONS(2892), + [anon_sym_LBRACK2] = ACTIONS(2890), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2890), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2890), + }, + [1075] = { + [sym__call_arguments_with_parentheses] = STATE(1095), + [aux_sym__terminator_token1] = ACTIONS(2890), + [anon_sym_SEMI] = ACTIONS(2892), + [anon_sym_LPAREN] = ACTIONS(2894), + [anon_sym_RPAREN] = ACTIONS(2892), + [anon_sym_LT] = ACTIONS(2892), + [anon_sym_GT] = ACTIONS(2892), + [anon_sym_PIPE] = ACTIONS(2892), + [anon_sym_SLASH] = ACTIONS(2892), + [anon_sym_COMMA] = ACTIONS(2892), + [anon_sym_PLUS] = ACTIONS(2892), + [anon_sym_DASH] = ACTIONS(2892), + [anon_sym_LT_DASH] = ACTIONS(2892), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2892), + [anon_sym_when] = ACTIONS(2892), + [anon_sym_COLON_COLON] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(2892), + [anon_sym_EQ] = ACTIONS(2892), + [anon_sym_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2892), + [anon_sym_or] = ACTIONS(2892), + [anon_sym_AMP_AMP] = ACTIONS(2892), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2892), + [anon_sym_and] = ACTIONS(2892), + [anon_sym_EQ_EQ] = ACTIONS(2892), + [anon_sym_BANG_EQ] = ACTIONS(2892), + [anon_sym_EQ_TILDE] = ACTIONS(2892), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2892), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2892), + [anon_sym_LT_EQ] = ACTIONS(2892), + [anon_sym_GT_EQ] = ACTIONS(2892), + [anon_sym_PIPE_GT] = ACTIONS(2892), + [anon_sym_LT_LT_LT] = ACTIONS(2892), + [anon_sym_GT_GT_GT] = ACTIONS(2892), + [anon_sym_LT_LT_TILDE] = ACTIONS(2892), + [anon_sym_TILDE_GT_GT] = ACTIONS(2892), + [anon_sym_LT_TILDE] = ACTIONS(2892), + [anon_sym_TILDE_GT] = ACTIONS(2892), + [anon_sym_LT_TILDE_GT] = ACTIONS(2892), + [anon_sym_LT_PIPE_GT] = ACTIONS(2892), + [anon_sym_in] = ACTIONS(2892), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2892), + [anon_sym_SLASH_SLASH] = ACTIONS(2892), + [anon_sym_PLUS_PLUS] = ACTIONS(2892), + [anon_sym_DASH_DASH] = ACTIONS(2892), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2892), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2892), + [anon_sym_DOT_DOT] = ACTIONS(2892), + [anon_sym_LT_GT] = ACTIONS(2892), + [anon_sym_STAR] = ACTIONS(2892), + [anon_sym_STAR_STAR] = ACTIONS(2892), + [anon_sym_DASH_GT] = ACTIONS(2892), + [anon_sym_DOT] = ACTIONS(2892), + [anon_sym_after] = ACTIONS(2892), + [anon_sym_catch] = ACTIONS(2892), + [anon_sym_do] = ACTIONS(2892), + [anon_sym_else] = ACTIONS(2892), + [anon_sym_end] = ACTIONS(2892), + [anon_sym_rescue] = ACTIONS(2892), + [anon_sym_LBRACK2] = ACTIONS(2890), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2890), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2890), + }, + [1076] = { + [sym_do_block] = STATE(1395), + [aux_sym__terminator_token1] = ACTIONS(2896), + [anon_sym_SEMI] = ACTIONS(2898), + [anon_sym_LPAREN] = ACTIONS(2898), + [anon_sym_RPAREN] = ACTIONS(2898), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_GT] = ACTIONS(2898), + [anon_sym_PIPE] = ACTIONS(2898), + [anon_sym_SLASH] = ACTIONS(2898), + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_PLUS] = ACTIONS(2898), + [anon_sym_DASH] = ACTIONS(2898), + [anon_sym_LT_DASH] = ACTIONS(2898), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2898), + [anon_sym_when] = ACTIONS(2898), + [anon_sym_COLON_COLON] = ACTIONS(2898), + [anon_sym_EQ_GT] = ACTIONS(2898), + [anon_sym_EQ] = ACTIONS(2898), + [anon_sym_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2898), + [anon_sym_or] = ACTIONS(2898), + [anon_sym_AMP_AMP] = ACTIONS(2898), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2898), + [anon_sym_and] = ACTIONS(2898), + [anon_sym_EQ_EQ] = ACTIONS(2898), + [anon_sym_BANG_EQ] = ACTIONS(2898), + [anon_sym_EQ_TILDE] = ACTIONS(2898), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2898), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2898), + [anon_sym_LT_EQ] = ACTIONS(2898), + [anon_sym_GT_EQ] = ACTIONS(2898), + [anon_sym_PIPE_GT] = ACTIONS(2898), + [anon_sym_LT_LT_LT] = ACTIONS(2898), + [anon_sym_GT_GT_GT] = ACTIONS(2898), + [anon_sym_LT_LT_TILDE] = ACTIONS(2898), + [anon_sym_TILDE_GT_GT] = ACTIONS(2898), + [anon_sym_LT_TILDE] = ACTIONS(2898), + [anon_sym_TILDE_GT] = ACTIONS(2898), + [anon_sym_LT_TILDE_GT] = ACTIONS(2898), + [anon_sym_LT_PIPE_GT] = ACTIONS(2898), + [anon_sym_in] = ACTIONS(2898), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2898), + [anon_sym_SLASH_SLASH] = ACTIONS(2898), + [anon_sym_PLUS_PLUS] = ACTIONS(2898), + [anon_sym_DASH_DASH] = ACTIONS(2898), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2898), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2898), + [anon_sym_DOT_DOT] = ACTIONS(2898), + [anon_sym_LT_GT] = ACTIONS(2898), + [anon_sym_STAR] = ACTIONS(2898), + [anon_sym_STAR_STAR] = ACTIONS(2898), + [anon_sym_DASH_GT] = ACTIONS(2898), + [anon_sym_DOT] = ACTIONS(2898), + [anon_sym_after] = ACTIONS(2898), + [anon_sym_catch] = ACTIONS(2898), + [anon_sym_do] = ACTIONS(287), + [anon_sym_else] = ACTIONS(2898), + [anon_sym_end] = ACTIONS(2898), + [anon_sym_rescue] = ACTIONS(2898), + [anon_sym_LBRACK2] = ACTIONS(2896), + [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2900), + [sym__newline_before_binary_operator] = ACTIONS(3), + [sym__newline_before_comment] = ACTIONS(3), + [sym__not_in] = ACTIONS(2896), + }, + [1077] = { + [sym_do_block] = STATE(1111), + [aux_sym__terminator_token1] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_RPAREN] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2904), + [anon_sym_GT] = ACTIONS(2904), + [anon_sym_PIPE] = ACTIONS(2904), + [anon_sym_SLASH] = ACTIONS(2904), + [anon_sym_COMMA] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_LT_DASH] = ACTIONS(2904), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2904), + [anon_sym_when] = ACTIONS(2904), + [anon_sym_COLON_COLON] = ACTIONS(2904), + [anon_sym_EQ_GT] = ACTIONS(2904), + [anon_sym_EQ] = ACTIONS(2904), + [anon_sym_PIPE_PIPE] = ACTIONS(2904), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2904), + [anon_sym_or] = ACTIONS(2904), + [anon_sym_AMP_AMP] = ACTIONS(2904), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2904), + [anon_sym_and] = ACTIONS(2904), [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), + [anon_sym_LT_EQ] = ACTIONS(2904), + [anon_sym_GT_EQ] = ACTIONS(2904), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2904), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2904), + [anon_sym_SLASH_SLASH] = ACTIONS(2904), + [anon_sym_PLUS_PLUS] = ACTIONS(2904), + [anon_sym_DASH_DASH] = ACTIONS(2904), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2904), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2904), + [anon_sym_DOT_DOT] = ACTIONS(2904), + [anon_sym_LT_GT] = ACTIONS(2904), + [anon_sym_STAR] = ACTIONS(2904), + [anon_sym_STAR_STAR] = ACTIONS(2904), + [anon_sym_DASH_GT] = ACTIONS(2904), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_after] = ACTIONS(2904), + [anon_sym_catch] = ACTIONS(2904), + [anon_sym_do] = ACTIONS(2904), + [anon_sym_else] = ACTIONS(2904), + [anon_sym_end] = ACTIONS(2904), + [anon_sym_rescue] = ACTIONS(2904), + [anon_sym_LBRACK2] = ACTIONS(2902), [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2902), [sym__newline_before_binary_operator] = ACTIONS(3), [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2924), + [sym__not_in] = ACTIONS(2902), }, [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), + [sym_do_block] = STATE(1403), + [aux_sym__terminator_token1] = ACTIONS(2902), + [anon_sym_SEMI] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2904), + [anon_sym_RPAREN] = ACTIONS(2904), + [anon_sym_LT] = ACTIONS(2904), + [anon_sym_GT] = ACTIONS(2904), + [anon_sym_PIPE] = ACTIONS(2904), + [anon_sym_SLASH] = ACTIONS(2904), + [anon_sym_COMMA] = ACTIONS(2904), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_LT_DASH] = ACTIONS(2904), + [anon_sym_BSLASH_BSLASH] = ACTIONS(2904), + [anon_sym_when] = ACTIONS(2904), + [anon_sym_COLON_COLON] = ACTIONS(2904), + [anon_sym_EQ_GT] = ACTIONS(2904), + [anon_sym_EQ] = ACTIONS(2904), + [anon_sym_PIPE_PIPE] = ACTIONS(2904), + [anon_sym_PIPE_PIPE_PIPE] = ACTIONS(2904), + [anon_sym_or] = ACTIONS(2904), + [anon_sym_AMP_AMP] = ACTIONS(2904), + [anon_sym_AMP_AMP_AMP] = ACTIONS(2904), + [anon_sym_and] = ACTIONS(2904), [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), + [anon_sym_LT_EQ] = ACTIONS(2904), + [anon_sym_GT_EQ] = ACTIONS(2904), + [anon_sym_PIPE_GT] = ACTIONS(2904), + [anon_sym_LT_LT_LT] = ACTIONS(2904), + [anon_sym_GT_GT_GT] = ACTIONS(2904), + [anon_sym_LT_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE] = ACTIONS(2904), + [anon_sym_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_TILDE_GT] = ACTIONS(2904), + [anon_sym_LT_PIPE_GT] = ACTIONS(2904), + [anon_sym_in] = ACTIONS(2904), + [anon_sym_CARET_CARET_CARET] = ACTIONS(2904), + [anon_sym_SLASH_SLASH] = ACTIONS(2904), + [anon_sym_PLUS_PLUS] = ACTIONS(2904), + [anon_sym_DASH_DASH] = ACTIONS(2904), + [anon_sym_PLUS_PLUS_PLUS] = ACTIONS(2904), + [anon_sym_DASH_DASH_DASH] = ACTIONS(2904), + [anon_sym_DOT_DOT] = ACTIONS(2904), + [anon_sym_LT_GT] = ACTIONS(2904), + [anon_sym_STAR] = ACTIONS(2904), + [anon_sym_STAR_STAR] = ACTIONS(2904), + [anon_sym_DASH_GT] = ACTIONS(2904), + [anon_sym_DOT] = ACTIONS(2904), + [anon_sym_after] = ACTIONS(2904), + [anon_sym_catch] = ACTIONS(2904), + [anon_sym_do] = ACTIONS(287), + [anon_sym_else] = ACTIONS(2904), + [anon_sym_end] = ACTIONS(2904), + [anon_sym_rescue] = ACTIONS(2904), + [anon_sym_LBRACK2] = ACTIONS(2902), [sym_comment] = ACTIONS(5), + [sym__newline_before_do] = ACTIONS(2906), [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), - [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(1010), - [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), - }, - [1084] = { - [sym__call_arguments_with_parentheses] = STATE(1129), - [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), - }, - [1085] = { - [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), - [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), - }, - [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), - [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(2980), - [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(2978), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [sym__not_in] = ACTIONS(2978), - }, - [1089] = { - [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(2984), - [sym__newline_before_binary_operator] = ACTIONS(3), - [sym__newline_before_comment] = ACTIONS(3), - [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), + [sym__not_in] = ACTIONS(2902), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 5, + [0] = 4, ACTIONS(5), 1, sym_comment, - STATE(1219), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2908), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2910), 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, + [73] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2912), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2914), 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, + [146] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1233), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2984), 4, + ACTIONS(2916), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2986), 56, + ACTIONS(2918), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -157953,6 +146120,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, @@ -157960,18 +146128,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [75] = 4, + [221] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2990), 4, + ACTIONS(2920), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 57, + ACTIONS(2922), 57, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -158029,94 +146197,375 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [148] = 32, + [294] = 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, + STATE(1235), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2916), 4, + sym__newline_before_do, sym__not_in, - ACTIONS(2994), 1, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2918), 56, anon_sym_SEMI, - STATE(279), 1, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [369] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(287), 1, + anon_sym_do, + ACTIONS(2928), 1, + sym__newline_before_do, + STATE(1507), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2924), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2926), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [448] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2930), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2932), 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, + [521] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1179), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2896), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2898), 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, + [596] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(2799), 1, + anon_sym_PIPE, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2809), 1, + anon_sym_when, + ACTIONS(2812), 1, + anon_sym_COLON_COLON, + ACTIONS(2814), 1, + anon_sym_EQ_GT, + ACTIONS(2816), 1, + anon_sym_EQ, + ACTIONS(2826), 1, + anon_sym_in, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(2842), 1, + sym__not_in, + ACTIONS(2934), 1, + anon_sym_SEMI, + STATE(270), 1, sym__terminator, - STATE(1021), 1, + STATE(1009), 1, aux_sym__terminator_repeat1, - STATE(4353), 1, + STATE(4341), 1, aux_sym_block_repeat2, - STATE(5161), 1, + STATE(5149), 1, aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2883), 2, + ACTIONS(2801), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(2887), 2, + ACTIONS(2805), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2889), 2, + ACTIONS(2807), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2900), 3, + ACTIONS(2818), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(2902), 3, + ACTIONS(2820), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(2879), 4, + ACTIONS(2797), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(686), 5, + ACTIONS(642), 5, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - ACTIONS(2904), 5, + ACTIONS(2822), 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, + ACTIONS(2832), 6, anon_sym_PLUS_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, + ACTIONS(2824), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -158126,9 +146575,2092 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [277] = 4, + [725] = 7, ACTIONS(5), 1, sym_comment, + ACTIONS(291), 1, + anon_sym_do, + ACTIONS(2936), 1, + sym__newline_before_do, + STATE(1656), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2902), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2904), 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, + [804] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(2799), 1, + anon_sym_PIPE, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2809), 1, + anon_sym_when, + ACTIONS(2812), 1, + anon_sym_COLON_COLON, + ACTIONS(2814), 1, + anon_sym_EQ_GT, + ACTIONS(2816), 1, + anon_sym_EQ, + ACTIONS(2826), 1, + anon_sym_in, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(2842), 1, + sym__not_in, + ACTIONS(2938), 1, + anon_sym_SEMI, + STATE(291), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4346), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2807), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2818), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2820), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(646), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [933] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1242), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2940), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2942), 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, + [1008] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(291), 1, + anon_sym_do, + ACTIONS(2944), 1, + sym__newline_before_do, + STATE(1655), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2896), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2898), 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, + [1087] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(2799), 1, + anon_sym_PIPE, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2809), 1, + anon_sym_when, + ACTIONS(2812), 1, + anon_sym_COLON_COLON, + ACTIONS(2814), 1, + anon_sym_EQ_GT, + ACTIONS(2816), 1, + anon_sym_EQ, + ACTIONS(2826), 1, + anon_sym_in, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(2842), 1, + sym__not_in, + ACTIONS(2946), 1, + anon_sym_SEMI, + STATE(271), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4347), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2807), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2818), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2820), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(626), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [1216] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(2799), 1, + anon_sym_PIPE, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2809), 1, + anon_sym_when, + ACTIONS(2812), 1, + anon_sym_COLON_COLON, + ACTIONS(2814), 1, + anon_sym_EQ_GT, + ACTIONS(2816), 1, + anon_sym_EQ, + ACTIONS(2826), 1, + anon_sym_in, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(2842), 1, + sym__not_in, + ACTIONS(2948), 1, + anon_sym_SEMI, + STATE(301), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4332), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2807), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2818), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2820), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(656), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [1345] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1231), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2924), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2926), 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, + [1420] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1243), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2916), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2918), 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, + [1495] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2565), 5, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2567), 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, + [1568] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(287), 1, + anon_sym_do, + ACTIONS(2950), 1, + sym__newline_before_do, + STATE(1618), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2916), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2918), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [1647] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2952), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2954), 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, + [1720] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2956), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2958), 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, + [1793] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(287), 1, + anon_sym_do, + ACTIONS(2960), 1, + sym__newline_before_do, + STATE(1612), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2940), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2942), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [1872] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(2799), 1, + anon_sym_PIPE, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2809), 1, + anon_sym_when, + ACTIONS(2812), 1, + anon_sym_COLON_COLON, + ACTIONS(2814), 1, + anon_sym_EQ_GT, + ACTIONS(2816), 1, + anon_sym_EQ, + ACTIONS(2826), 1, + anon_sym_in, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(2842), 1, + sym__not_in, + ACTIONS(2962), 1, + anon_sym_SEMI, + STATE(324), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4320), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2807), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2818), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2820), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1379), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [2001] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1165), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2902), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2904), 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, + [2076] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2964), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2966), 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, + [2149] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2968), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2970), 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, + [2222] = 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), 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, + [2295] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(2799), 1, + anon_sym_PIPE, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2809), 1, + anon_sym_when, + ACTIONS(2812), 1, + anon_sym_COLON_COLON, + ACTIONS(2814), 1, + anon_sym_EQ_GT, + ACTIONS(2816), 1, + anon_sym_EQ, + ACTIONS(2826), 1, + anon_sym_in, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(2842), 1, + sym__not_in, + ACTIONS(2976), 1, + anon_sym_SEMI, + STATE(319), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4326), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2807), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2818), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2820), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1311), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [2424] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(2799), 1, + anon_sym_PIPE, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2809), 1, + anon_sym_when, + ACTIONS(2812), 1, + anon_sym_COLON_COLON, + ACTIONS(2814), 1, + anon_sym_EQ_GT, + ACTIONS(2816), 1, + anon_sym_EQ, + ACTIONS(2826), 1, + anon_sym_in, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(2842), 1, + sym__not_in, + ACTIONS(2978), 1, + anon_sym_SEMI, + STATE(313), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4335), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2807), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2818), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2820), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1365), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [2553] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2980), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2982), 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, + [2626] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(2799), 1, + anon_sym_PIPE, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2809), 1, + anon_sym_when, + ACTIONS(2812), 1, + anon_sym_COLON_COLON, + ACTIONS(2814), 1, + anon_sym_EQ_GT, + ACTIONS(2816), 1, + anon_sym_EQ, + ACTIONS(2826), 1, + anon_sym_in, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(2842), 1, + sym__not_in, + ACTIONS(2984), 1, + anon_sym_SEMI, + STATE(311), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4324), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2807), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2818), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2820), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1309), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(2822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [2755] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2986), 1, + anon_sym_LPAREN, + STATE(1141), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2890), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2892), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2832] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2988), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2990), 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, + [2905] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2986), 1, + anon_sym_LPAREN, + STATE(1137), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2890), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2892), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [2982] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2992), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2994), 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, + [3055] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2986), 1, + anon_sym_LPAREN, + STATE(1134), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2890), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2892), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [3132] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3000), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -158137,9 +148669,8 @@ static const uint16_t ts_small_parse_table[] = { sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2998), 57, + ACTIONS(2998), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -158195,20 +148726,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [350] = 5, + [3207] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3004), 1, + ACTIONS(3006), 1, aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3000), 4, + ACTIONS(3002), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3002), 56, + ACTIONS(3004), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -158265,20 +148796,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [425] = 5, + [3282] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2545), 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(3006), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3008), 56, + ACTIONS(2547), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -158335,93 +148865,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [500] = 5, + [3355] = 4, ACTIONS(5), 1, sym_comment, - STATE(1180), 1, - sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2978), 4, + ACTIONS(2581), 5, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2980), 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, - [575] = 7, - ACTIONS(5), 1, - sym_comment, - 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(3012), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3014), 55, + ACTIONS(2583), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -158474,21 +148930,22 @@ 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, - [654] = 4, + [3428] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3018), 4, + ACTIONS(3008), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3020), 57, + ACTIONS(3010), 57, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -158546,94 +149003,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [727] = 32, + [3501] = 4, 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, + 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), 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, + [3574] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2573), 5, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2575), 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, + [3647] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3016), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3018), 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, + [3720] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(287), 1, + anon_sym_do, + ACTIONS(3020), 1, + sym__newline_before_do, + STATE(1609), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2916), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2918), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [3799] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(287), 1, + anon_sym_do, 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, + sym__newline_before_do, + STATE(1610), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2883), 2, + ACTIONS(2916), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2918), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2887), 2, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2889), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2900), 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(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_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -158643,1022 +149336,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [856] = 32, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [3878] = 6, 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(3028), 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, - [1058] = 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, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2653), 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, - [1131] = 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), 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, - [1204] = 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), 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, - [1277] = 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, - aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, - anon_sym_LBRACK2, - ACTIONS(2649), 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, - [1350] = 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), 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, - [1423] = 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), 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, - [1496] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(233), 1, - anon_sym_do, - ACTIONS(3042), 1, - sym__newline_before_do, - STATE(1644), 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, - [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, + STATE(1124), 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, + ACTIONS(2890), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2974), 55, + ACTIONS(2892), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [3954] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2565), 5, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2567), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -159714,190 +149492,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [2023] = 5, + [4026] = 4, 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, + ACTIONS(3016), 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, + ACTIONS(3018), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159950,25 +149556,22 @@ 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, - [2306] = 6, + [4098] = 4, 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, + ACTIONS(3024), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2974), 55, + ACTIONS(3026), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -160017,6 +149620,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, @@ -160024,94 +149628,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [2383] = 7, + [4170] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(233), 1, - anon_sym_do, - ACTIONS(3072), 1, + ACTIONS(3032), 1, + anon_sym_COMMA, + STATE(1129), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3028), 4, sym__newline_before_do, - STATE(1636), 1, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3030), 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, + [4246] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3039), 1, + anon_sym_COMMA, + STATE(1129), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3035), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3037), 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, + [4322] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1398), 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, + ACTIONS(2924), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2974), 55, + ACTIONS(2926), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -160167,89 +149837,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [2539] = 4, + [4396] = 7, 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, + ACTIONS(291), 1, anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [2612] = 5, - ACTIONS(5), 1, - sym_comment, - STATE(1241), 1, + ACTIONS(3041), 1, + sym__newline_before_do, + STATE(1873), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3012), 4, - sym__newline_before_do, + ACTIONS(2924), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3014), 56, + ACTIONS(2926), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -160298,100 +149902,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_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [2687] = 4, + [4474] = 7, 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, + ACTIONS(291), 1, 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, + ACTIONS(3043), 1, sym__newline_before_do, - STATE(1632), 1, + STATE(1876), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3038), 3, + ACTIONS(2916), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3040), 55, + ACTIONS(2918), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -160440,30 +149973,444 @@ 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, - [2839] = 7, + [4552] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(305), 1, - anon_sym_do, - ACTIONS(3084), 1, - sym__newline_before_do, - STATE(1667), 1, + STATE(1400), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2978), 3, + ACTIONS(2916), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2980), 55, + ACTIONS(2918), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4626] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(291), 1, + anon_sym_do, + ACTIONS(3045), 1, + sym__newline_before_do, + STATE(1877), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2916), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2918), 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, + [4704] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(291), 1, + anon_sym_do, + ACTIONS(3047), 1, + sym__newline_before_do, + STATE(1880), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2940), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2942), 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, + [4782] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1408), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2916), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2918), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4856] = 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(2940), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2942), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [4930] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(291), 1, + anon_sym_do, + ACTIONS(3049), 1, + sym__newline_before_do, + STATE(1881), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2916), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2918), 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, + [5008] = 4, + ACTIONS(5), 1, + sym_comment, + 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_LPAREN, anon_sym_RPAREN, @@ -160516,120 +150463,24 @@ 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, - [2918] = 32, + [5080] = 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(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, + STATE(1419), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3038), 4, + ACTIONS(2916), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3040), 56, + ACTIONS(2918), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -160678,7 +150529,6 @@ 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, @@ -160686,185 +150536,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3122] = 5, + [5154] = 4, 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, + ACTIONS(2952), 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, + ACTIONS(2954), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -160914,7 +150597,6 @@ 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, @@ -160922,352 +150604,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3399] = 4, + [5226] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3094), 4, + ACTIONS(3051), 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, + ACTIONS(3053), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -161324,18 +150672,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3878] = 4, + [5298] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3106), 4, + ACTIONS(3055), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3108), 56, + ACTIONS(3057), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -161392,18 +150740,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [3950] = 4, + [5370] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3110), 4, + ACTIONS(3059), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3112), 56, + ACTIONS(3061), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -161460,2800 +150808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [4022] = 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, - [4094] = 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, - [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, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [4960] = 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, - [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, - 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, - [5108] = 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), 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, - [5180] = 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), 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, - [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(3149), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3151), 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, - [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, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [5400] = 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, - [5472] = 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, - 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_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [5544] = 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), 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, - [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, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2647), 5, - sym__newline_before_do, - 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_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [5760] = 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, - [5832] = 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, - [5904] = 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, - [5976] = 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, - [6048] = 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, - [6120] = 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), 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, - [6192] = 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, - [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, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [6984] = 4, + [5442] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -164265,6 +150820,1230 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, anon_sym_LBRACK2, ACTIONS(2998), 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, + [5514] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3002), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3004), 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, + [5586] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3002), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3004), 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, + [5658] = 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), 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, + [5730] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3063), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3065), 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, + [5802] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3063), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3065), 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, + [5874] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3067), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3069), 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, + [5946] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3071), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3073), 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, + [6018] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3067), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3069), 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, + [6090] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3067), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3069), 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, + [6162] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3075), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3077), 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, + [6234] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2890), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2892), 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, + [6306] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3079), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3081), 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, + [6378] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3083), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3085), 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, + [6450] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3087), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3089), 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, + [6522] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3091), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3093), 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, + [6594] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3091), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3093), 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, + [6666] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3095), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3097), 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, + [6738] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2992), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2994), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -164321,7 +152100,1639 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7056] = 4, + [6810] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2988), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2990), 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, + [6882] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3099), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3101), 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, + [6954] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3103), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3105), 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, + [7026] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3107), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3109), 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, + [7098] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3111), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3113), 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, + [7170] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3115), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3117), 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, + [7242] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3119), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3121), 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, + [7314] = 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, + [7386] = 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, + [7458] = 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, + [7530] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [7602] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [7674] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [7746] = 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), 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, + [7818] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2980), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2982), 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, + [7890] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [7962] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3147), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3149), 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, + [8034] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3151), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3153), 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, + [8106] = 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), 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, + [8178] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [8250] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [8322] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [8394] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [8466] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [8538] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -164334,11 +153745,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(3181), 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, @@ -164389,7 +153800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7128] = 4, + [8610] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -164402,11 +153813,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(3185), 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, @@ -164457,75 +153868,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + [8682] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -164538,11 +153881,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(3189), 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, @@ -164593,7 +153936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7344] = 4, + [8754] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -164606,11 +153949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(3193), 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, @@ -164661,75 +154004,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + [8826] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -164742,11 +154017,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(3197), 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, @@ -164797,7 +154072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7560] = 4, + [8898] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -164810,11 +154085,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(3201), 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, @@ -164865,7 +154140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7632] = 4, + [8970] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -164878,11 +154153,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(3205), 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, @@ -164933,7 +154208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7704] = 4, + [9042] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -164946,11 +154221,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(3209), 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, @@ -165001,7 +154276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [7776] = 4, + [9114] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -165069,76 +154344,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + [9186] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -165150,142 +154356,6 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [8066] = 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, @@ -165342,13 +154412,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8138] = 6, + [9258] = 4, 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, @@ -165357,12 +154423,14 @@ static const uint16_t ts_small_parse_table[] = { sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3221), 54, + ACTIONS(3221), 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, @@ -165412,11 +154480,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8214] = 5, + [9330] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3227), 1, - aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -165425,74 +154491,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - [8288] = 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), 56, + ACTIONS(3225), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -165549,24 +154548,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8360] = 4, + [9402] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 4, + ACTIONS(2940), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 56, + ACTIONS(2942), 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, @@ -165617,24 +154616,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8432] = 4, + [9474] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3237), 4, + ACTIONS(3227), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3239), 56, + ACTIONS(3229), 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, @@ -165685,24 +154684,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8504] = 4, + [9546] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3241), 4, + ACTIONS(3227), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3243), 56, + ACTIONS(3229), 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, @@ -165753,7 +154752,420 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8576] = 4, + [9618] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3235), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [9692] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3237), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [9766] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3239), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [9840] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3241), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [9914] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3243), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [9988] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3227), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3229), 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, + [10060] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -165766,11 +155178,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(3247), 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, @@ -165821,18 +155233,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8648] = 4, + [10132] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3249), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [10206] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3249), 4, + ACTIONS(3251), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3251), 56, + ACTIONS(3253), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -165889,18 +155370,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [8720] = 4, + [10278] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3122), 4, + ACTIONS(3255), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3124), 56, + ACTIONS(3257), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -165957,212 +155438,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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), 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, - [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, + [10350] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -166175,76 +155451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(3261), 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, - [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(3223), 4, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3225), 55, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -166299,18 +155506,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9156] = 4, + [10422] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3191), 4, + ACTIONS(3263), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3193), 56, + ACTIONS(3265), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -166367,18 +155574,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9228] = 4, + [10494] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3265), 4, + ACTIONS(3267), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3267), 56, + ACTIONS(3269), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -166435,18 +155642,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9300] = 4, + [10566] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3269), 4, + ACTIONS(3271), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3271), 56, + ACTIONS(3273), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -166503,154 +155710,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9372] = 4, + [10638] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3273), 4, + ACTIONS(3275), 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, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [9444] = 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), 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, - [9516] = 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), 56, + ACTIONS(3277), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -166707,18 +155778,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9588] = 4, + [10710] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3285), 4, + ACTIONS(3279), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3287), 56, + ACTIONS(3281), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -166775,18 +155846,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9660] = 4, + [10782] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3289), 4, + ACTIONS(3279), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3291), 56, + ACTIONS(3281), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -166843,86 +155914,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9732] = 4, + [10854] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3118), 4, + ACTIONS(2930), 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, + ACTIONS(2932), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -166979,20 +155982,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9876] = 4, + [10926] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3283), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 56, + ACTIONS(3233), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -167047,22 +156051,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [9948] = 6, + [11000] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2920), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2922), 56, + anon_sym_SEMI, anon_sym_LPAREN, - STATE(1109), 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), 55, - anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -167110,31 +156112,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, - [10024] = 4, + [11072] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3285), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3289), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3291), 56, + ACTIONS(3233), 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, @@ -167185,86 +156188,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10096] = 4, + [11146] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3285), 4, + ACTIONS(3287), 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, + ACTIONS(3289), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -167321,18 +156256,362 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10240] = 4, + [11218] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3291), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [11292] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3293), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [11366] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3297), 4, + ACTIONS(2968), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3299), 56, + ACTIONS(2970), 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, + [11438] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3295), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [11512] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3297), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [11586] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3299), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3301), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -167389,21 +156668,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10312] = 5, + [11658] = 4, 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, + ACTIONS(3279), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 55, + ACTIONS(3281), 56, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -167458,7 +156736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10386] = 4, + [11730] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -167471,11 +156749,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(3305), 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, @@ -167526,7 +156804,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10458] = 4, + [11802] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2956), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2958), 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, + [11874] = 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, + [11946] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -167539,11 +156953,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(3309), 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, @@ -167594,158 +157008,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10530] = 6, + [12018] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2976), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2964), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2966), 56, + anon_sym_SEMI, anon_sym_LPAREN, - STATE(1113), 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), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [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, @@ -167800,20 +157076,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10750] = 4, + [12090] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 5, + ACTIONS(2912), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2633), 55, + ACTIONS(2914), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -167868,7 +157144,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [10822] = 4, + [12162] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2908), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2910), 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, + [12234] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -167880,144 +157224,6 @@ static const uint16_t ts_small_parse_table[] = { 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(1125), 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), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [10970] = 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, @@ -168074,1111 +157280,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [11042] = 4, + [12306] = 5, 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), 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, - [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(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, - [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, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [11984] = 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, - [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, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [12200] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3339), 1, + ACTIONS(3315), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 55, + ACTIONS(3233), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -169234,18 +157349,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12274] = 4, + [12380] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3341), 4, + ACTIONS(3307), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3343), 56, + ACTIONS(3309), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -169302,24 +157417,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12346] = 4, + [12452] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3345), 4, + ACTIONS(3303), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3347), 56, + ACTIONS(3305), 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, @@ -169370,148 +157485,626 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12418] = 5, + [12524] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3317), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3319), 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, + [12596] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [12668] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [12740] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [12812] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3325), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [12886] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3327), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [12960] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3329), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [13034] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [13106] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3337), 1, + anon_sym_PIPE, + ACTIONS(3341), 1, + anon_sym_COMMA, + ACTIONS(3347), 1, + anon_sym_when, 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, + ACTIONS(3351), 1, anon_sym_EQ_GT, + ACTIONS(3353), 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(3363), 1, anon_sym_in, + ACTIONS(3365), 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_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, + ACTIONS(3371), 1, anon_sym_STAR_STAR, - ACTIONS(3393), 1, + ACTIONS(3373), 1, anon_sym_DOT, - ACTIONS(3395), 1, + ACTIONS(3375), 1, anon_sym_LBRACK2, - ACTIONS(3397), 1, + ACTIONS(3377), 1, sym__not_in, - STATE(1313), 1, + STATE(1130), 1, aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3351), 2, + ACTIONS(3331), 2, sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(3359), 2, + ACTIONS(3339), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3363), 2, + ACTIONS(3343), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3365), 2, + ACTIONS(3345), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3375), 3, + ACTIONS(3355), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3377), 3, + ACTIONS(3357), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3355), 4, + ACTIONS(3335), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3379), 5, + ACTIONS(3359), 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, + ACTIONS(3369), 6, anon_sym_PLUS_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, + ACTIONS(3333), 8, anon_sym_SEMI, anon_sym_DASH_GT, anon_sym_after, @@ -169520,7 +158113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - ACTIONS(3381), 9, + ACTIONS(3361), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -169530,20 +158123,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [12610] = 4, + [13224] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3074), 4, + ACTIONS(3321), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3076), 56, + ACTIONS(3323), 56, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -169591,6 +158183,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, @@ -169598,292 +158191,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [12682] = 4, + [13296] = 5, 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, + ACTIONS(3379), 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, - 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, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3032), 56, + ACTIONS(3233), 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, - [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, @@ -169938,228 +158260,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13042] = 4, + [13370] = 5, 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, + ACTIONS(3381), 1, aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, @@ -170210,18 +158329,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13330] = 4, + [13444] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 4, + ACTIONS(3321), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 56, + ACTIONS(3323), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -170278,7 +158397,1576 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13402] = 4, + [13516] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [13588] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [13660] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [13732] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [13804] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [13876] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [13948] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [14020] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [14092] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [14164] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [14236] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [14308] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [14380] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [14452] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [14524] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3383), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3385), 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, + [14596] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3387), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3389), 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, + [14668] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_COMMA, + STATE(1275), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3391), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3393), 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, + [14744] = 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, + [14816] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3395), 1, + anon_sym_COMMA, + STATE(1285), 1, + aux_sym_keywords_repeat1, + 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), 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, + [14892] = 4, + ACTIONS(5), 1, + sym_comment, + 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_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, + [14964] = 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, + [15036] = 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, + [15108] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3413), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [15182] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -170290,74 +159978,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -170414,18 +160034,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13546] = 4, + [15254] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3052), 4, + ACTIONS(2972), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3054), 56, + ACTIONS(2974), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -170482,159 +160102,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13618] = 4, + [15326] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3048), 4, + ACTIONS(3419), 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, + ACTIONS(3421), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -170683,73 +160162,6 @@ 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, - [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, @@ -170758,7 +160170,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13914] = 4, + [15398] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3419), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3421), 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, + [15470] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -170826,20 +160306,1183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [13986] = 5, + [15542] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(3427), 1, + anon_sym_COMMA, + STATE(1285), 1, + aux_sym_keywords_repeat1, + 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), 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, + [15618] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3419), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3421), 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, + [15690] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3430), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3432), 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, + [15762] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3434), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3436), 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, + [15834] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3438), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3440), 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, + [15906] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3442), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3444), 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, + [15978] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2894), 1, + anon_sym_LPAREN, + STATE(1123), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2890), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2892), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [16054] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2894), 1, + anon_sym_LPAREN, + STATE(1097), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2890), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2892), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [16130] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3446), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [16204] = 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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [16276] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3103), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3105), 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, + [16348] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3107), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3109), 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, + [16420] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3251), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3253), 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, + [16492] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3255), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3257), 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, + [16564] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2573), 5, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2575), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [16636] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2581), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2583), 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, + [16708] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2573), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2575), 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, + [16780] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3006), 1, aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3006), 4, + ACTIONS(3002), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3008), 55, + ACTIONS(3004), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -170895,20 +161538,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14060] = 5, + [16854] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3004), 1, + ACTIONS(3000), 1, aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3000), 4, + ACTIONS(2996), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3002), 55, + ACTIONS(2998), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -170964,18 +161607,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14134] = 4, + [16928] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3427), 4, + ACTIONS(3448), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3429), 56, + ACTIONS(3450), 56, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -171032,18 +161675,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [14206] = 4, + [17000] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3431), 4, + ACTIONS(2581), 5, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3433), 56, + ACTIONS(2583), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -171092,2620 +161736,6 @@ 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, - [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, - 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), 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, - [15752] = 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), 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, - [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, @@ -173719,18 +161749,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3522), 4, + ACTIONS(3452), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3524), 56, + ACTIONS(3454), 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, @@ -173787,12 +161817,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3526), 4, + ACTIONS(2565), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3528), 56, + ACTIONS(2567), 56, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -173855,18 +161885,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3530), 4, + ACTIONS(2545), 5, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3532), 56, + ACTIONS(2547), 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, @@ -173909,7 +161940,6 @@ 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, @@ -173923,18 +161953,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3534), 4, + ACTIONS(2545), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3536), 56, + ACTIONS(2547), 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, @@ -173985,20 +162015,1672 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17360] = 5, + [17360] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3538), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3452), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3454), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17431] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17502] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3448), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3450), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17573] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3456), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [17646] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3458), 1, + anon_sym_COMMA, + STATE(1368), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3035), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3037), 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, + [17721] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3460), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [17794] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [17865] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3462), 1, + anon_sym_COMMA, + STATE(1386), 1, + aux_sym_keywords_repeat1, + 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), 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, + [17940] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2986), 1, + anon_sym_LPAREN, + STATE(1133), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2890), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2892), 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, + [18015] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2986), 1, + anon_sym_LPAREN, + STATE(1135), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2890), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2892), 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, + [18090] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3462), 1, + anon_sym_COMMA, + STATE(1317), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3391), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3393), 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, + [18165] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2986), 1, + anon_sym_LPAREN, + STATE(1139), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2890), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2892), 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, + [18240] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3464), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [18313] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3466), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [18386] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3468), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [18459] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_PIPE, + ACTIONS(3476), 1, + anon_sym_COMMA, + ACTIONS(3482), 1, + anon_sym_when, + ACTIONS(3484), 1, + anon_sym_COLON_COLON, + ACTIONS(3486), 1, + anon_sym_EQ_GT, + ACTIONS(3488), 1, + anon_sym_EQ, + ACTIONS(3498), 1, + anon_sym_in, + ACTIONS(3500), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3512), 1, + sym__not_in, + STATE(1314), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3331), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3474), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3478), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3480), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3490), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3492), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3470), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3494), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3504), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3333), 7, + anon_sym_SEMI, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3496), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [18576] = 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(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [18649] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3516), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [18722] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3518), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [18795] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3103), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3105), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18866] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3107), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3109), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [18937] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3251), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3253), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19008] = 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(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [19081] = 4, + ACTIONS(5), 1, + sym_comment, + 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, + 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, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19152] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3522), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -174053,19 +163735,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [17433] = 4, + [19225] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3524), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [19298] = 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, + ACTIONS(2908), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3108), 55, + ACTIONS(2910), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -174113,26 +163863,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, anon_sym_after, anon_sym_catch, - anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [17504] = 4, + [19369] = 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, + ACTIONS(2912), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3251), 55, + ACTIONS(2914), 56, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -174180,31 +163930,31 @@ 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, - [17575] = 4, + [19440] = 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, + ACTIONS(2964), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3532), 55, + ACTIONS(2966), 56, 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, @@ -174247,949 +163997,33 @@ 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, - [17646] = 4, + [19511] = 6, 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), 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, - [17717] = 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), 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, - [17788] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3540), 1, - anon_sym_COMMA, - STATE(1426), 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), 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, - [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, + ACTIONS(3375), 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, + ACTIONS(3279), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3221), 53, + ACTIONS(3281), 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_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, @@ -175233,1274 +164067,23 @@ static const uint16_t ts_small_parse_table[] = { 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, + [19586] = 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, + ACTIONS(2956), 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_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, + ACTIONS(2958), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -176557,154 +164140,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [20173] = 4, + [19657] = 5, 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, + ACTIONS(3526), 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, - [20315] = 4, - ACTIONS(5), 1, - sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3183), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3185), 55, + ACTIONS(3233), 54, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -176758,543 +164208,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3058), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3060), 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, - [20812] = 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), 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, - [20883] = 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), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_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, + [19730] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -177307,7 +164221,347 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(3173), 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, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [19801] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2545), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2547), 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, + [19872] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3227), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3229), 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, + [19947] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3123), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3125), 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, + [20022] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2581), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2583), 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, + [20093] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3528), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 54, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -177361,18 +164615,829 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21025] = 4, + [20166] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3530), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [20239] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3167), 4, + ACTIONS(2968), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2970), 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, + [20310] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3532), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3169), 55, + ACTIONS(3233), 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, + [20383] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2573), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2575), 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, + [20454] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2565), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2567), 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, + [20525] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [20598] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3536), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [20671] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2920), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2922), 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, + [20742] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2930), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2932), 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, + [20813] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3006), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3002), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3004), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [20886] = 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(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [20959] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3540), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [21032] = 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_RPAREN, anon_sym_LT, @@ -177428,7 +165493,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21096] = 4, + [21103] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21174] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3000), 1, + aux_sym_quoted_keyword_token1, + 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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [21247] = 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(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [21320] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3099), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3101), 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, + [21391] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2940), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2942), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [21462] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -177441,11 +165843,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(3165), 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, @@ -177495,18 +165897,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21167] = 4, + [21533] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3407), 4, + ACTIONS(3123), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3409), 55, + ACTIONS(3125), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -177562,25 +165964,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21238] = 4, + [21604] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3544), 1, + anon_sym_COMMA, + STATE(1368), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3159), 4, + ACTIONS(3028), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3161), 55, + ACTIONS(3030), 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, @@ -177629,153 +166033,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21309] = 4, + [21679] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3106), 4, + ACTIONS(3179), 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, + ACTIONS(3181), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -177831,18 +166100,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21524] = 4, + [21750] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3403), 4, + ACTIONS(3227), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3405), 55, + ACTIONS(3229), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -177898,18 +166167,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21595] = 4, + [21821] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3106), 4, + ACTIONS(3227), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3108), 55, + ACTIONS(3229), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -177965,85 +166234,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21666] = 4, + [21892] = 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [21737] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3106), 4, + ACTIONS(3227), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3108), 55, + ACTIONS(3229), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -178099,621 +166301,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [21808] = 4, + [21963] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3106), 4, + ACTIONS(3203), 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, + ACTIONS(3205), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -178769,141 +166368,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + [22034] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -178915,73 +166380,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -179037,85 +166435,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22802] = 4, + [22105] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3106), 4, + ACTIONS(3095), 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, + ACTIONS(3097), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -179171,18 +166502,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [22944] = 4, + [22176] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3303), 4, + ACTIONS(3259), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3305), 55, + ACTIONS(3261), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [22247] = 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, + [22318] = 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_LT, anon_sym_GT, @@ -179238,287 +166703,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23015] = 4, + [22389] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3241), 4, + ACTIONS(3263), 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, + ACTIONS(3265), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -179574,104 +166770,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + [22460] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3106), 4, + ACTIONS(3267), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3108), 55, + ACTIONS(3269), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -179727,18 +166837,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23552] = 4, + [22531] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3106), 4, + ACTIONS(3271), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3108), 55, + ACTIONS(3273), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -179794,18 +166904,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [23623] = 4, + [22602] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3106), 4, + ACTIONS(3275), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3108), 55, + ACTIONS(3277), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -179861,3390 +166971,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [23978] = 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), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_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, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_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, - anon_sym_after, - anon_sym_catch, - anon_sym_do, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [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, + [22673] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -183311,25 +167038,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27507] = 5, + [22744] = 4, 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, + ACTIONS(3131), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 54, + 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, + [22815] = 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, + [22886] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3547), 1, + anon_sym_COMMA, + STATE(1386), 1, + aux_sym_keywords_repeat1, + 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), 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, + [22961] = 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, @@ -183379,21 +167308,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27580] = 5, + [23032] = 4, 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, + ACTIONS(3119), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 54, + ACTIONS(3121), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -183447,17 +167375,419 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27653] = 4, + [23103] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3074), 3, + ACTIONS(3115), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3076), 56, + ACTIONS(3117), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23174] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3281), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23245] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3281), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23316] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3255), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3257), 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, + [23387] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3251), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3253), 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, + [23458] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3287), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3289), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [23529] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2980), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2982), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -183514,153 +167844,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27724] = 4, + [23600] = 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, + ACTIONS(3107), 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, + ACTIONS(3109), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -183716,18 +167911,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [27939] = 4, + [23671] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3215), 4, + ACTIONS(3103), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3217), 55, + ACTIONS(3105), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -183783,154 +167978,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + [23742] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 4, + ACTIONS(3299), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3283), 55, + ACTIONS(3301), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -183986,18 +168045,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [28227] = 4, + [23813] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3126), 4, + ACTIONS(3279), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3128), 55, + ACTIONS(3281), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -184053,1017 +168112,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + [23884] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -185130,7 +168179,543 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [29444] = 4, + [23955] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3111), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3113), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24026] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3024), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3026), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24097] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2988), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2990), 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, + [24168] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2992), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2994), 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, + [24239] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3091), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3093), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24310] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3091), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3093), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [24381] = 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), 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, + [24452] = 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, + [24523] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -185197,154 +168782,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + [24594] = 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, + ACTIONS(2890), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3299), 55, + ACTIONS(2892), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -185400,228 +168849,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [29732] = 4, + [24665] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3297), 4, + ACTIONS(3139), 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, + ACTIONS(3141), 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_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, @@ -185671,26 +168916,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [30022] = 6, + [24736] = 4, 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, + ACTIONS(3143), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3295), 54, + anon_sym_LBRACK2, + ACTIONS(3145), 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, @@ -185733,25 +168976,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, anon_sym_after, anon_sym_catch, anon_sym_do, anon_sym_else, anon_sym_end, anon_sym_rescue, - [30097] = 4, + [24807] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3269), 4, + ACTIONS(3307), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3271), 55, + ACTIONS(3309), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -185807,24 +169050,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [30168] = 4, + [24878] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3265), 4, + ACTIONS(3147), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3267), 55, + ACTIONS(3149), 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, @@ -185874,7 +169117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [30239] = 4, + [24949] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -185886,6 +169129,274 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, anon_sym_LBRACK2, ACTIONS(3193), 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, + [25020] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25091] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3151), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3153), 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, + [25162] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25233] = 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, @@ -185941,155 +169452,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + [25304] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3145), 4, + ACTIONS(3059), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3147), 55, + ACTIONS(3061), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -186145,17 +169519,888 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [30529] = 4, + [25375] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3044), 3, + ACTIONS(3219), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3046), 56, + ACTIONS(3221), 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, + [25446] = 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), 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, + [25517] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3067), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3069), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25588] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3067), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3069), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25659] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2545), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2547), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [25730] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2581), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2583), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [25801] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3317), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3319), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25872] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3067), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3069), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [25943] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3063), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3065), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26014] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3063), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3065), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26085] = 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), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26156] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3002), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3004), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26227] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3002), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3004), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26298] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2952), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2954), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -186212,17 +170457,2515 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [30600] = 4, + [26369] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3048), 3, + ACTIONS(3321), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3050), 56, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26440] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26511] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3071), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3073), 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, + [26582] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26653] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26724] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26795] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [26866] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3371), 1, + anon_sym_STAR_STAR, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3339), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3369), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [26949] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3367), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3371), 1, + anon_sym_STAR_STAR, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3339), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3369), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [27034] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27105] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27176] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2573), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2575), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [27247] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2565), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2567), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [27318] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3363), 1, + anon_sym_in, + ACTIONS(3365), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3367), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3371), 1, + anon_sym_STAR_STAR, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3377), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3339), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3369), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [27409] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3363), 1, + anon_sym_in, + ACTIONS(3365), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3367), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3371), 1, + anon_sym_STAR_STAR, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3377), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3339), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3335), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3369), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3361), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [27504] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3363), 1, + anon_sym_in, + ACTIONS(3365), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3367), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3371), 1, + anon_sym_STAR_STAR, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3377), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3339), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3335), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3359), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3369), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3361), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [27601] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27672] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27743] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [27814] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3365), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3367), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3371), 1, + anon_sym_STAR_STAR, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3339), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3369), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [27901] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3363), 1, + anon_sym_in, + ACTIONS(3365), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3367), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3371), 1, + anon_sym_STAR_STAR, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3377), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3339), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3369), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3361), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [27994] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28065] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3337), 1, + anon_sym_PIPE, + ACTIONS(3351), 1, + anon_sym_EQ_GT, + ACTIONS(3353), 1, + anon_sym_EQ, + ACTIONS(3363), 1, + anon_sym_in, + ACTIONS(3365), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3367), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3371), 1, + anon_sym_STAR_STAR, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3377), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3339), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3355), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3357), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3335), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3359), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3369), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3361), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [28172] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28243] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3371), 1, + anon_sym_STAR_STAR, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [28320] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3371), 1, + anon_sym_STAR_STAR, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3339), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [28399] = 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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28470] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3337), 1, + anon_sym_PIPE, + ACTIONS(3347), 1, + anon_sym_when, + ACTIONS(3349), 1, + anon_sym_COLON_COLON, + ACTIONS(3351), 1, + anon_sym_EQ_GT, + ACTIONS(3353), 1, + anon_sym_EQ, + ACTIONS(3363), 1, + anon_sym_in, + ACTIONS(3365), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3367), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3371), 1, + anon_sym_STAR_STAR, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3377), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3339), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3355), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3357), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3335), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3359), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3369), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3361), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [28581] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3337), 1, + anon_sym_PIPE, + ACTIONS(3347), 1, + anon_sym_when, + ACTIONS(3349), 1, + anon_sym_COLON_COLON, + ACTIONS(3351), 1, + anon_sym_EQ_GT, + ACTIONS(3353), 1, + anon_sym_EQ, + ACTIONS(3363), 1, + anon_sym_in, + ACTIONS(3365), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3367), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3371), 1, + anon_sym_STAR_STAR, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3377), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3339), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3355), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3357), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3335), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3359), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3369), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3361), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [28692] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3255), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3257), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28763] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28834] = 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, + [28905] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [28976] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3337), 1, + anon_sym_PIPE, + ACTIONS(3347), 1, + anon_sym_when, + ACTIONS(3349), 1, + anon_sym_COLON_COLON, + ACTIONS(3351), 1, + anon_sym_EQ_GT, + ACTIONS(3353), 1, + anon_sym_EQ, + ACTIONS(3363), 1, + anon_sym_in, + ACTIONS(3365), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3367), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3371), 1, + anon_sym_STAR_STAR, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3377), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3339), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3345), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3550), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3355), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3357), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3335), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3359), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3369), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3361), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3552), 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, + [29089] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3442), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3444), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_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(3012), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3014), 56, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -186279,18 +173022,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [30671] = 4, + [29231] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3191), 4, + ACTIONS(3331), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3193), 55, + ACTIONS(3333), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -186346,19 +173089,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [30742] = 4, + [29302] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3052), 3, + ACTIONS(3438), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3054), 56, + ACTIONS(3440), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -186406,25 +173149,245 @@ 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_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(3075), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3077), 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, + [29444] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3434), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3436), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_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] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3337), 1, + anon_sym_PIPE, + ACTIONS(3349), 1, + anon_sym_COLON_COLON, + ACTIONS(3351), 1, + anon_sym_EQ_GT, + ACTIONS(3353), 1, + anon_sym_EQ, + ACTIONS(3363), 1, + anon_sym_in, + ACTIONS(3365), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3367), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3371), 1, + anon_sym_STAR_STAR, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3377), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3339), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3355), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3357), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3335), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3359), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3369), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3361), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 12, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, 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, - [30813] = 4, + [29624] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3141), 4, + ACTIONS(3079), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3143), 55, + ACTIONS(3081), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -186480,698 +173443,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [30884] = 5, + [29695] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(3576), 1, - aux_sym_sigil_token3, + ACTIONS(3351), 1, + anon_sym_EQ_GT, + ACTIONS(3353), 1, + anon_sym_EQ, + ACTIONS(3363), 1, + anon_sym_in, + ACTIONS(3365), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3367), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3371), 1, + anon_sym_STAR_STAR, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3377), 1, + sym__not_in, 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, - [30957] = 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), 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, - [31030] = 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, - [31101] = 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), 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, + ACTIONS(3279), 2, sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(3594), 2, + ACTIONS(3339), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3598), 2, + ACTIONS(3343), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3600), 2, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - ACTIONS(3610), 3, + ACTIONS(3355), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3612), 3, + ACTIONS(3357), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3590), 4, + ACTIONS(3335), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3614), 5, + ACTIONS(3359), 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, + ACTIONS(3369), 6, anon_sym_PLUS_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, + ACTIONS(3361), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -187181,88 +173512,35 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(3281), 14, 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, - [31727] = 5, + [29800] = 4, 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, + ACTIONS(3430), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 54, + ACTIONS(3432), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -187316,21 +173594,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [31800] = 5, + [29871] = 4, 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, + ACTIONS(3419), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 54, + ACTIONS(3421), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -187384,21 +173661,1774 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [31873] = 5, + [29942] = 4, 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, + ACTIONS(3423), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 54, + 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, + [30013] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3419), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3421), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30084] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3367), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3371), 1, + anon_sym_STAR_STAR, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3339), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3369), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [30169] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3083), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3085), 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, + [30240] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3087), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3089), 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, + [30311] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3419), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3421), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30382] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3353), 1, + anon_sym_EQ, + ACTIONS(3363), 1, + anon_sym_in, + ACTIONS(3365), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3367), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3371), 1, + anon_sym_STAR_STAR, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3377), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3339), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3355), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3357), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3335), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3359), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3369), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3361), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [30485] = 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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30556] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3337), 1, + anon_sym_PIPE, + ACTIONS(3347), 1, + anon_sym_when, + ACTIONS(3349), 1, + anon_sym_COLON_COLON, + ACTIONS(3351), 1, + anon_sym_EQ_GT, + ACTIONS(3353), 1, + anon_sym_EQ, + ACTIONS(3363), 1, + anon_sym_in, + ACTIONS(3365), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3367), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3371), 1, + anon_sym_STAR_STAR, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3377), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3028), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3339), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3345), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3355), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3357), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3335), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3359), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3369), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3030), 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(3361), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [30669] = 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, + [30740] = 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, + [30811] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3337), 1, + anon_sym_PIPE, + ACTIONS(3347), 1, + anon_sym_when, + ACTIONS(3349), 1, + anon_sym_COLON_COLON, + ACTIONS(3351), 1, + anon_sym_EQ_GT, + ACTIONS(3353), 1, + anon_sym_EQ, + ACTIONS(3363), 1, + anon_sym_in, + ACTIONS(3365), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3367), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3371), 1, + anon_sym_STAR_STAR, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3377), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3339), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3345), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3554), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3355), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3357), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3335), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3359), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3369), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3361), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3556), 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, + [30924] = 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), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [30995] = 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, + [31066] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3387), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3389), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31137] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3383), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3385), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31208] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3051), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3053), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31279] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31350] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3363), 1, + anon_sym_in, + ACTIONS(3365), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3367), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3371), 1, + anon_sym_STAR_STAR, + ACTIONS(3373), 1, + anon_sym_DOT, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3377), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3339), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3343), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3357), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3335), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3359), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3369), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3361), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [31449] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3055), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3057), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31520] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31591] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31662] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31733] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31804] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_do, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [31875] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -187458,11 +175488,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3203), 3, + ACTIONS(3271), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3205), 55, + ACTIONS(3273), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -187524,11 +175554,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3199), 3, + ACTIONS(3299), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3201), 55, + ACTIONS(3301), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -187584,696 +175614,17 @@ static const uint16_t ts_small_parse_table[] = { 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(4349), 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(1323), 5, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - 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, - [32670] = 5, + [32086] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3735), 2, - anon_sym_when, - anon_sym_DASH_GT, - ACTIONS(3516), 3, + ACTIONS(3067), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - 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, + ACTIONS(3069), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -188329,1244 +175680,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [33018] = 15, + [32156] = 6, 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(3195), 3, - 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_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, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [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(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, - [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(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, - [33906] = 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), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [33976] = 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), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [34046] = 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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [34116] = 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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [34186] = 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, - [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, - anon_sym_LBRACK2, + ACTIONS(3558), 1, + anon_sym_LPAREN, + STATE(1808), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2980), 52, - anon_sym_LPAREN, + ACTIONS(2890), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2892), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -189618,342 +175747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [34480] = 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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [34550] = 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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [34620] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(414), 1, anon_sym_do, - ACTIONS(3749), 1, - sym__newline_before_do, - STATE(2538), 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), 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, - [34696] = 4, + [32230] = 6, 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), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(3560), 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_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, + STATE(1510), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -189961,14 +175762,12 @@ static const uint16_t ts_small_parse_table[] = { sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3313), 55, + ACTIONS(3313), 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, anon_sym_LT_DASH, @@ -190017,22 +175816,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [34906] = 6, + [32304] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3751), 1, + ACTIONS(3558), 1, anon_sym_LPAREN, - STATE(1814), 1, + STATE(1806), 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, + ACTIONS(2890), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2974), 52, + ACTIONS(2892), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -190085,90 +175884,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [34980] = 6, + [32378] = 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(3191), 3, - sym__newline_before_do, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3193), 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, - [35054] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3751), 1, + ACTIONS(3558), 1, anon_sym_LPAREN, - STATE(1815), 1, + STATE(1804), 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, + ACTIONS(2890), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2974), 52, + ACTIONS(2892), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -190221,151 +175952,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [35128] = 6, - ACTIONS(5), 1, - sym_comment, - 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, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [35202] = 4, + [32452] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3179), 3, + ACTIONS(3151), 3, 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_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [35272] = 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), 55, + ACTIONS(3153), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -190421,17 +176018,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35342] = 4, + [32522] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3175), 3, + ACTIONS(3067), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3177), 55, + ACTIONS(3069), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -190487,17 +176084,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35412] = 4, + [32592] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3171), 3, + ACTIONS(3063), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3173), 55, + ACTIONS(3065), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -190553,6934 +176150,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [35482] = 4, + [32662] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3335), 3, + ACTIONS(3063), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3337), 55, + ACTIONS(3065), 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, - [35552] = 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), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [35762] = 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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [35832] = 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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [35902] = 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), 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, - [35972] = 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), 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, - [36042] = 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), 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, - [36112] = 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), 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, - [36182] = 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), 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, - [36252] = 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), 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, - [36322] = 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), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [36392] = 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), 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, - [36462] = 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), 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, - [36532] = 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), 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, - [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, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_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, - [36676] = 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, - [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, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [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, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3253), 3, - 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_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [37026] = 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), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [37096] = 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), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [37166] = 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, - [37236] = 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, - [37306] = 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), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [37376] = 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), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - [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(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, - [37518] = 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), 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, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [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, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2972), 3, - 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_DASH_GT, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [39156] = 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, - [39226] = 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, - [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(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_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [41776] = 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(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, - ACTIONS(3755), 1, - anon_sym_SEMI, - ACTIONS(3757), 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, - 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, - [41904] = 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), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - 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, - [42296] = 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), 55, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [42576] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3048), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3050), 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, - [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, @@ -197528,71 +176209,6 @@ 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, - [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, @@ -197600,73 +176216,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + [32732] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -197678,7 +176228,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(2998), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -197726,89 +176275,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, - [43206] = 4, + [32802] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3058), 3, + ACTIONS(3002), 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, + ACTIONS(3004), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -197864,149 +176348,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [43346] = 4, + [32872] = 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, + ACTIONS(3155), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3231), 55, + ACTIONS(3157), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -198062,19 +176414,414 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [43556] = 4, + [32942] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3078), 3, + ACTIONS(3159), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3080), 55, + ACTIONS(3161), 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, + [33012] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [33082] = 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), 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, + [33152] = 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), 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, + [33222] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3255), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3257), 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, + [33292] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3251), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3253), 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, + [33362] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3055), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3057), 55, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -198122,23 +176869,119 @@ 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, - [43626] = 4, + [33432] = 33, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3563), 1, + anon_sym_SEMI, + ACTIONS(3565), 1, + anon_sym_RPAREN, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3573), 1, + anon_sym_COMMA, + ACTIONS(3579), 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, + sym__not_in, + STATE(377), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4945), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + STATE(5425), 1, + aux_sym__stab_clause_arguments_with_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [33560] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3145), 3, + ACTIONS(3107), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3147), 55, + ACTIONS(3109), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -198194,17 +177037,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [43696] = 4, + [33630] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3141), 3, + ACTIONS(3103), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3143), 55, + ACTIONS(3105), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -198260,17 +177103,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [43766] = 4, + [33700] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3215), 3, + ACTIONS(3051), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3217), 55, + ACTIONS(3053), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [33770] = 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), 55, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -198326,7 +177235,535 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [43836] = 4, + [33840] = 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), 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, + [33910] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [33980] = 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), 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, + [34050] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [34120] = 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), 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, + [34190] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [34260] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [34330] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [34400] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -198392,38 +177829,1446 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [43906] = 11, + [34470] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [34540] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3610), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [34612] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3612), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [34684] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3614), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [34756] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3616), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [34828] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3618), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [34900] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3620), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [34972] = 5, 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, + aux_sym_sigil_token3, 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, + ACTIONS(3231), 3, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3624), 6, + anon_sym_LBRACK2, + ACTIONS(3233), 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, - ACTIONS(3295), 41, + 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, + [35044] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3624), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [35116] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3626), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [35188] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3628), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [35260] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [35332] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3632), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [35404] = 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(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [35476] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3636), 1, + anon_sym_COMMA, + STATE(1561), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3391), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3393), 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, + [35550] = 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(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [35622] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3640), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [35694] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3642), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [35766] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3644), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [35838] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3646), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [35910] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3636), 1, + anon_sym_COMMA, + STATE(1510), 1, + aux_sym_keywords_repeat1, + 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), 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, + [35984] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3502), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3478), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3504), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 41, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -198465,1238 +179310,2289 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [43990] = 4, + [36068] = 11, 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, + ACTIONS(3502), 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(3506), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(3508), 1, 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, + ACTIONS(3510), 1, anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3594), 2, + ACTIONS(3474), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3598), 2, + ACTIONS(3478), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3293), 3, + ACTIONS(3279), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3624), 6, + ACTIONS(3504), 6, anon_sym_PLUS_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, + ACTIONS(3281), 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, + [36152] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [36222] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3498), 1, + anon_sym_in, + ACTIONS(3500), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3512), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3474), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3478), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3504), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [36312] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3498), 1, + anon_sym_in, + ACTIONS(3500), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3512), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3474), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3478), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3470), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3504), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3496), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [36406] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_PIPE, + ACTIONS(3482), 1, + anon_sym_when, + ACTIONS(3484), 1, + anon_sym_COLON_COLON, + ACTIONS(3486), 1, + anon_sym_EQ_GT, + ACTIONS(3488), 1, + anon_sym_EQ, + ACTIONS(3498), 1, + anon_sym_in, + ACTIONS(3500), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3512), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3478), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3480), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3550), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3490), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3492), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3470), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3494), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3504), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3552), 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(3496), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [36518] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3119), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3121), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [36588] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3648), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [36660] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2890), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2892), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [36730] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3091), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3093), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [36800] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3024), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3026), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [36870] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3103), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3105), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [36940] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3107), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3109), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [37010] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3111), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3113), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [37080] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3115), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3117), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [37150] = 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, + [37220] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_PIPE, + ACTIONS(3482), 1, + anon_sym_when, + ACTIONS(3484), 1, + anon_sym_COLON_COLON, + ACTIONS(3486), 1, + anon_sym_EQ_GT, + ACTIONS(3488), 1, + anon_sym_EQ, + ACTIONS(3498), 1, + anon_sym_in, + ACTIONS(3500), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3512), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3028), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3474), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3478), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3480), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3490), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3492), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3470), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3494), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3504), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3030), 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(3496), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [37332] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [37402] = 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, + [37472] = 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, + [37542] = 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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [37612] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3650), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [37684] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2940), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2942), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [37754] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3227), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3229), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [37824] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3227), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3229), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [37894] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1947), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2902), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2904), 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, + [37966] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(1952), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2896), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2898), 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, + [38038] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3227), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3229), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [38108] = 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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [38178] = 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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [38248] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3251), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3253), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [38318] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3255), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3257), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [38388] = 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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [38458] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3263), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3265), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [38528] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3478), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3504), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 42, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -199739,20 +181635,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [45360] = 5, + [38610] = 4, 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, + ACTIONS(3267), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 54, + ACTIONS(3269), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -199806,18 +181701,349 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [45432] = 4, + [38680] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 4, + ACTIONS(3147), 3, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2649), 54, + ACTIONS(3149), 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, + [38750] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3275), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3277), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [38820] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3281), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [38890] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3091), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3093), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [38960] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3287), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3289), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [39030] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3000), 1, + aux_sym_quoted_keyword_token1, + 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), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -199872,18 +182098,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [45502] = 4, + [39102] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3006), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2651), 4, + ACTIONS(3002), 3, sym__not_in, aux_sym__terminator_token1, - aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2653), 54, + ACTIONS(3004), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -199938,20 +182165,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [45572] = 5, + [39174] = 4, 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, + ACTIONS(3067), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 54, + ACTIONS(3069), 55, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -200005,7 +182231,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [45644] = 4, + [39244] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3281), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [39314] = 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), 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, + [39384] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3652), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3245), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3247), 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, + [39456] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -200071,17 +182496,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [45714] = 4, + [39526] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 3, + ACTIONS(3303), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 55, + ACTIONS(3305), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -200137,283 +182562,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + [39596] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -200479,17 +182628,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [46158] = 4, + [39666] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3449), 3, + ACTIONS(3307), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3451), 55, + ACTIONS(3309), 55, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -200545,90 +182694,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [46228] = 4, + [39736] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3435), 3, + ACTIONS(2565), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3437), 55, + ACTIONS(2567), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_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, @@ -200678,223 +182760,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [46370] = 5, + [39806] = 4, 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, + ACTIONS(2573), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3536), 53, + ACTIONS(2575), 55, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_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, @@ -200944,24 +182826,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [46654] = 5, + [39876] = 4, 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, + ACTIONS(2581), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 54, + ACTIONS(2583), 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, @@ -201011,24 +182892,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [46726] = 5, + [39946] = 4, 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, + ACTIONS(2545), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 54, + ACTIONS(2547), 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, @@ -201078,7 +182958,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [46798] = 4, + [40016] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3498), 1, + anon_sym_in, + ACTIONS(3500), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3512), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3474), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3478), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3470), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3494), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3504), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3496), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [40112] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -201088,7 +183047,6078 @@ static const uint16_t ts_small_parse_table[] = { sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3305), 54, + 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, + [40182] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3317), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3319), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [40252] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [40322] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [40392] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [40462] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [40532] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [40602] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [40672] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [40742] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [40812] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [40882] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [40952] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3500), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3478), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3504), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [41038] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3498), 1, + anon_sym_in, + ACTIONS(3500), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3512), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3474), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3478), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3492), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3470), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3494), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3504), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3496), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [41136] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3488), 1, + anon_sym_EQ, + ACTIONS(3498), 1, + anon_sym_in, + ACTIONS(3500), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3512), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3474), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3478), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3490), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3492), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3470), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3494), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3504), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3496), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [41238] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [41308] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [41378] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3654), 1, + aux_sym__terminator_token1, + ACTIONS(3657), 1, + anon_sym_SEMI, + ACTIONS(3662), 1, + anon_sym_PIPE, + ACTIONS(3670), 1, + anon_sym_when, + ACTIONS(3672), 1, + anon_sym_COLON_COLON, + ACTIONS(3674), 1, + anon_sym_EQ_GT, + ACTIONS(3676), 1, + anon_sym_EQ, + ACTIONS(3686), 1, + anon_sym_in, + ACTIONS(3688), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3702), 1, + sym__not_in, + STATE(259), 1, + sym__terminator, + STATE(1008), 1, + aux_sym__terminator_repeat1, + STATE(4333), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3668), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3678), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3680), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3660), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3682), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3698), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3684), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [41498] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3486), 1, + anon_sym_EQ_GT, + ACTIONS(3488), 1, + anon_sym_EQ, + ACTIONS(3498), 1, + anon_sym_in, + ACTIONS(3500), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3512), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3474), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3478), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3490), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3492), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3470), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3494), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3504), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3496), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [41602] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3227), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3229), 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, + [41676] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3123), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3125), 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, + [41750] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [41824] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_PIPE, + ACTIONS(3484), 1, + anon_sym_COLON_COLON, + ACTIONS(3486), 1, + anon_sym_EQ_GT, + ACTIONS(3488), 1, + anon_sym_EQ, + ACTIONS(3498), 1, + anon_sym_in, + ACTIONS(3500), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3512), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3474), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3478), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3490), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3492), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3470), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3494), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3504), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3496), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [41932] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_PIPE, + ACTIONS(3482), 1, + anon_sym_when, + ACTIONS(3484), 1, + anon_sym_COLON_COLON, + ACTIONS(3486), 1, + anon_sym_EQ_GT, + ACTIONS(3488), 1, + anon_sym_EQ, + ACTIONS(3498), 1, + anon_sym_in, + ACTIONS(3500), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3512), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3474), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3478), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3490), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3492), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3470), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3494), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3504), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3496), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [42042] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [42112] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_PIPE, + ACTIONS(3482), 1, + anon_sym_when, + ACTIONS(3484), 1, + anon_sym_COLON_COLON, + ACTIONS(3486), 1, + anon_sym_EQ_GT, + ACTIONS(3488), 1, + anon_sym_EQ, + ACTIONS(3498), 1, + anon_sym_in, + ACTIONS(3500), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3512), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3474), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3478), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3490), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3492), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3470), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3494), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3504), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3496), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [42222] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [42300] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [42376] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2908), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2910), 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, + [42446] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [42516] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2912), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2914), 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, + [42586] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2964), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2966), 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, + [42656] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2956), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2958), 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, + [42726] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2968), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2970), 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, + [42796] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2920), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2922), 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, + [42866] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2930), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2932), 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, + [42936] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_PIPE, + ACTIONS(3486), 1, + anon_sym_EQ_GT, + ACTIONS(3488), 1, + anon_sym_EQ, + ACTIONS(3498), 1, + anon_sym_in, + ACTIONS(3500), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3512), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3474), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3478), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3490), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3492), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3470), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3494), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3504), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3496), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [43042] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2980), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2982), 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, + [43112] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2988), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2990), 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, + [43182] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2992), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2994), 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, + [43252] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [43322] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2545), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2547), 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, + [43392] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2581), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2583), 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, + [43462] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3498), 1, + anon_sym_in, + ACTIONS(3500), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3512), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3474), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3478), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3504), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3496), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [43554] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2952), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2954), 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, + [43624] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [43694] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [43764] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [43834] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3662), 1, + anon_sym_PIPE, + ACTIONS(3670), 1, + anon_sym_when, + ACTIONS(3672), 1, + anon_sym_COLON_COLON, + ACTIONS(3674), 1, + anon_sym_EQ_GT, + ACTIONS(3676), 1, + anon_sym_EQ, + ACTIONS(3686), 1, + anon_sym_in, + ACTIONS(3688), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3702), 1, + sym__not_in, + ACTIONS(3704), 1, + aux_sym__terminator_token1, + ACTIONS(3707), 1, + anon_sym_SEMI, + STATE(261), 1, + sym__terminator, + STATE(1008), 1, + aux_sym__terminator_repeat1, + STATE(4337), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3668), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3678), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3680), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3660), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(1267), 5, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3682), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3684), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [43954] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [44024] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [44094] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3383), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3385), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [44164] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3387), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3389), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [44234] = 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, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [44304] = 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), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [44374] = 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, + [44444] = 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), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [44514] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3419), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3421), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [44584] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3419), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3421), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [44654] = 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, + [44724] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3419), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3421), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [44794] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3430), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3432), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [44864] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3434), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3436), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [44934] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3438), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3440), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [45004] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3442), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3444), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [45074] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3281), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [45144] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3002), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3004), 55, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [45214] = 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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [45284] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(387), 1, + anon_sym_do, + ACTIONS(3710), 1, + sym__newline_before_do, + STATE(2526), 1, + sym_do_block, + ACTIONS(2902), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2904), 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, + [45360] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(387), 1, + anon_sym_do, + ACTIONS(3712), 1, + sym__newline_before_do, + STATE(2527), 1, + sym_do_block, + ACTIONS(2896), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2898), 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, + [45436] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2573), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2575), 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, + [45506] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2565), 4, + sym__not_in, + aux_sym__terminator_token1, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2567), 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, + [45576] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3059), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3061), 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, + [45646] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [45716] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3071), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3073), 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, + [45786] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3075), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3077), 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, + [45856] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3079), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3081), 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, + [45926] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3083), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3085), 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, + [45996] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3087), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3089), 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, + [46066] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3095), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3097), 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, + [46136] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3099), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3101), 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, + [46206] = 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, + [46276] = 33, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3573), 1, + anon_sym_COMMA, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3714), 1, + anon_sym_SEMI, + ACTIONS(3716), 1, + anon_sym_RPAREN, + STATE(399), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(5004), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + STATE(5425), 1, + aux_sym__stab_clause_arguments_with_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [46404] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3718), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3024), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3026), 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, + [46476] = 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, + [46546] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_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, + [46616] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3139), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3141), 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, + [46686] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3472), 1, + anon_sym_PIPE, + ACTIONS(3482), 1, + anon_sym_when, + ACTIONS(3484), 1, + anon_sym_COLON_COLON, + ACTIONS(3486), 1, + anon_sym_EQ_GT, + ACTIONS(3488), 1, + anon_sym_EQ, + ACTIONS(3498), 1, + anon_sym_in, + ACTIONS(3500), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3502), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3506), 1, + anon_sym_STAR_STAR, + ACTIONS(3508), 1, + anon_sym_DOT, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(3512), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3474), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3478), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3480), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3554), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3490), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3492), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3470), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3494), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3504), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3556), 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(3496), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [46798] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3255), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3257), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -201144,3143 +189174,17 @@ static const uint16_t ts_small_parse_table[] = { 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(1575), 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(3807), 1, - anon_sym_SEMI, - STATE(398), 1, - sym__terminator, - STATE(1031), 1, - aux_sym__terminator_repeat1, - STATE(4910), 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, - [47280] = 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(3293), 2, - 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_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(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3118), 2, - 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, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_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, - [47426] = 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(3191), 2, - sym__not_in, - aux_sym__terminator_token1, - ACTIONS(3193), 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, - [47499] = 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), 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, - [47568] = 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, + ACTIONS(2992), 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(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, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [50663] = 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__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(2649), 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, - [50732] = 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), 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, - [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, + ACTIONS(2994), 53, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -204334,9 +189238,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [50870] = 4, + [46936] = 32, ACTIONS(5), 1, sym_comment, + ACTIONS(886), 1, + anon_sym_RPAREN, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3720), 1, + anon_sym_SEMI, + STATE(432), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4998), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [47061] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3722), 1, + anon_sym_COMMA, + STATE(1709), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -204344,14 +189345,12 @@ static const uint16_t ts_small_parse_table[] = { sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3313), 54, + ACTIONS(3313), 52, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -204399,24 +189398,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [50939] = 4, + [47134] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3725), 1, + anon_sym_COMMA, + STATE(1709), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3000), 3, + ACTIONS(3401), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3002), 54, + ACTIONS(3403), 52, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -204464,24 +189465,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [51008] = 4, + [47207] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3725), 1, + anon_sym_COMMA, + STATE(1710), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3006), 3, + ACTIONS(3391), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3008), 54, + ACTIONS(3393), 52, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -204529,1060 +189532,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [51077] = 4, + [47280] = 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, + ACTIONS(2573), 4, sym__newline_before_do, sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3008), 52, + ACTIONS(2575), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -205635,20 +189597,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [52252] = 5, + [47349] = 4, 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, + ACTIONS(2565), 4, sym__newline_before_do, sym__not_in, + aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(3002), 52, + ACTIONS(2567), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -205701,17 +189662,2747 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [52323] = 4, + [47418] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2545), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2547), 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, + [47487] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2581), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2583), 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, + [47556] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2573), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2575), 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, + [47625] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(1679), 1, + anon_sym_RPAREN, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3727), 1, + anon_sym_SEMI, + STATE(405), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4898), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [47750] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [47823] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3227), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3229), 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, + [47896] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3123), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3125), 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, + [47969] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3720), 1, + anon_sym_SEMI, + ACTIONS(3729), 1, + anon_sym_RPAREN, + STATE(432), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4998), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [48094] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3731), 1, + anon_sym_SEMI, + ACTIONS(3733), 1, + anon_sym_RPAREN, + STATE(403), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(5028), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [48219] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(1621), 1, + anon_sym_RPAREN, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3735), 1, + anon_sym_SEMI, + STATE(393), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(5008), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [48344] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(870), 1, + anon_sym_RPAREN, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3731), 1, + anon_sym_SEMI, + STATE(403), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(5028), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [48469] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3737), 1, + anon_sym_SEMI, + ACTIONS(3739), 1, + anon_sym_RPAREN, + STATE(421), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4929), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [48594] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(1659), 1, + anon_sym_RPAREN, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3741), 1, + anon_sym_SEMI, + STATE(426), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4992), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [48719] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(874), 1, + anon_sym_RPAREN, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3737), 1, + anon_sym_SEMI, + STATE(421), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4929), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [48844] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3743), 1, + anon_sym_SEMI, + ACTIONS(3745), 1, + anon_sym_RPAREN, + STATE(389), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4912), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [48969] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(1587), 1, + anon_sym_RPAREN, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3747), 1, + anon_sym_SEMI, + STATE(391), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4901), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [49094] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(858), 1, + anon_sym_RPAREN, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3743), 1, + anon_sym_SEMI, + STATE(389), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4912), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [49219] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3749), 1, + anon_sym_SEMI, + ACTIONS(3751), 1, + anon_sym_RPAREN, + STATE(360), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4932), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [49344] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(1507), 1, + anon_sym_RPAREN, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3753), 1, + anon_sym_SEMI, + STATE(353), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4923), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [49469] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(890), 1, + anon_sym_RPAREN, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3749), 1, + anon_sym_SEMI, + STATE(360), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4932), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [49594] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(1617), 1, + anon_sym_RPAREN, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3755), 1, + anon_sym_SEMI, + STATE(385), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4942), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [49719] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(854), 1, + anon_sym_RPAREN, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3563), 1, + anon_sym_SEMI, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + STATE(377), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4945), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [49844] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3757), 1, + anon_sym_SEMI, + ACTIONS(3759), 1, + anon_sym_RPAREN, + STATE(401), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4953), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [49969] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3761), 1, + anon_sym_SEMI, + ACTIONS(3763), 1, + anon_sym_RPAREN, + STATE(427), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4973), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [50094] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(1669), 1, + anon_sym_RPAREN, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3765), 1, + anon_sym_SEMI, + STATE(440), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4966), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [50219] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(850), 1, + anon_sym_RPAREN, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3757), 1, + anon_sym_SEMI, + STATE(401), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4953), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [50344] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3767), 1, + anon_sym_SEMI, + ACTIONS(3769), 1, + anon_sym_RPAREN, + STATE(352), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(5025), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [50469] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(1473), 1, + anon_sym_RPAREN, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3771), 1, + anon_sym_SEMI, + STATE(404), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(5006), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [50594] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(862), 1, + anon_sym_RPAREN, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3761), 1, + anon_sym_SEMI, + STATE(427), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4973), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [50719] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2565), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2567), 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, + [50788] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3530), 3, + ACTIONS(3051), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3532), 54, + ACTIONS(3053), 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, + [50857] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3055), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3057), 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, + [50926] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3059), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3061), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -205766,17 +192457,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [52392] = 4, + [50995] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3480), 3, + ACTIONS(3219), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3482), 54, + ACTIONS(3221), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -205831,17 +192522,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [52461] = 4, + [51064] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3415), 3, + ACTIONS(3071), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3417), 54, + ACTIONS(3073), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -205896,17 +192587,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [52530] = 4, + [51133] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3289), 3, + ACTIONS(3075), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3291), 54, + ACTIONS(3077), 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, + [51202] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3079), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3081), 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, + [51271] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3083), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3085), 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, + [51340] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3002), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3004), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -205961,17 +192847,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [52599] = 4, + [51409] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3285), 3, + ACTIONS(2996), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3287), 54, + ACTIONS(2998), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -206026,17 +192912,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [52668] = 4, + [51478] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 3, + ACTIONS(3063), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3283), 54, + ACTIONS(3065), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -206091,17 +192977,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [52737] = 4, + [51547] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3269), 3, + ACTIONS(3063), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3271), 54, + ACTIONS(3065), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -206156,17 +193042,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [52806] = 4, + [51616] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3265), 3, + ACTIONS(3067), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3267), 54, + ACTIONS(3069), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -206221,7 +193107,2219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [52875] = 4, + [51685] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3087), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3089), 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, + [51754] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3067), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3069), 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, + [51823] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3067), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3069), 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, + [51892] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3095), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3097), 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, + [51961] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3099), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3101), 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, + [52030] = 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, + [52099] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2890), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2892), 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, + [52168] = 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, + [52237] = 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, + [52306] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3139), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3141), 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, + [52375] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3091), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3093), 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, + [52444] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3091), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3093), 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, + [52513] = 4, + ACTIONS(5), 1, + sym_comment, + 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, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52582] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3000), 1, + aux_sym_quoted_keyword_token1, + 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), 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, + [52653] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3006), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3002), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3004), 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, + [52724] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3147), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3149), 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, + [52793] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3151), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3153), 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, + [52862] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [52931] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3103), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3105), 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, + [53000] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3107), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3109), 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, + [53069] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3111), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3113), 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, + [53138] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3115), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3117), 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, + [53207] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3119), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3121), 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, + [53276] = 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, + [53345] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [53414] = 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, + [53483] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [53552] = 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, + [53621] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [53690] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [53759] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [53828] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [53897] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [53966] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [54035] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -206233,11 +195331,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(3193), 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, @@ -206286,17 +195384,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [52944] = 4, + [54104] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3411), 3, + ACTIONS(3195), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3413), 54, + ACTIONS(3197), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -206351,82 +195449,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [53013] = 4, + [54173] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3191), 3, + ACTIONS(3199), 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, + ACTIONS(3201), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -206481,82 +195514,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [53151] = 4, + [54242] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3191), 3, + ACTIONS(3203), 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, + ACTIONS(3205), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -206611,17 +195579,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [53289] = 4, + [54311] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3110), 3, + ACTIONS(3207), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3112), 54, + ACTIONS(3209), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -206676,722 +195644,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3233), 3, - sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3235), 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, - [53841] = 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), 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, - [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, + [54380] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -207456,17 +195709,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [54186] = 4, + [54449] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3468), 3, + ACTIONS(3223), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3470), 54, + ACTIONS(3225), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -207521,401 +195774,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [54255] = 4, + [54518] = 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, @@ -207924,400 +195785,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(3014), 53, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -208371,17 +195839,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [55162] = 4, + [54587] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3307), 3, + ACTIONS(3103), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3309), 54, + ACTIONS(3105), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -208436,17 +195904,344 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [55231] = 4, + [54656] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3118), 3, + ACTIONS(3107), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3120), 54, + ACTIONS(3109), 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, + [54725] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3251), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3253), 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, + [54794] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3255), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3257), 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, + [54863] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2074), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2924), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2926), 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, + [54934] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2072), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2916), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2918), 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, + [55005] = 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_RPAREN, anon_sym_LT, @@ -208501,19 +196296,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [55300] = 4, + [55074] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + STATE(2071), 1, + sym_do_block, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3118), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(2916), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3120), 54, - anon_sym_SEMI, + ACTIONS(2918), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -208561,24 +196361,282 @@ 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, - [55369] = 4, + anon_sym_do, + [55145] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2068), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2940), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2942), 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, + [55216] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2067), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2916), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2918), 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, + [55287] = 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, + ACTIONS(2952), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2954), 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, + [55356] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2940), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2942), 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, + [55425] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2581), 4, sym__newline_before_do, sym__not_in, aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2613), 52, + ACTIONS(2583), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -208631,149 +196689,19 @@ static const uint16_t ts_small_parse_table[] = { 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, + [55494] = 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, + ACTIONS(2545), 4, sym__newline_before_do, sym__not_in, aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2633), 52, + ACTIONS(2547), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -208826,20 +196754,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [55645] = 5, + [55563] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3855), 1, + ACTIONS(3773), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 52, + ACTIONS(3233), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -208892,215 +196820,17 @@ static const uint16_t ts_small_parse_table[] = { 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, + [55634] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3307), 3, + ACTIONS(3227), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3309), 54, + ACTIONS(3229), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -209155,17 +196885,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [55998] = 4, + [55703] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3449), 3, + ACTIONS(3227), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3451), 54, + ACTIONS(3229), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -209220,17 +196950,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [56067] = 4, + [55772] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3775), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [55843] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3435), 3, + ACTIONS(3227), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3437), 54, + ACTIONS(3229), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -209285,7 +197081,3925 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [56136] = 4, + [55912] = 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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [55981] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3777), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [56052] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3779), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [56123] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3781), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [56194] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3783), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [56265] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3251), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3253), 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, + [56334] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3785), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [56405] = 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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [56474] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3263), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3265), 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, + [56543] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3787), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [56614] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3789), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [56685] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3791), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [56756] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3793), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [56827] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3795), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [56898] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3797), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [56969] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3799), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [57040] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3801), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [57111] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3803), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [57182] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3805), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [57253] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3807), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [57324] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3809), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [57395] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3811), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [57466] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3813), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [57537] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3815), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [57608] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3817), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [57679] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3819), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [57750] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3821), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [57821] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3103), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3105), 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, + [57890] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3823), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [57961] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3267), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3269), 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, + [58030] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3271), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3273), 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, + [58099] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3275), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3277), 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, + [58168] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2799), 1, + anon_sym_PIPE, + ACTIONS(2812), 1, + anon_sym_COLON_COLON, + ACTIONS(2814), 1, + anon_sym_EQ_GT, + ACTIONS(2816), 1, + anon_sym_EQ, + ACTIONS(2826), 1, + anon_sym_in, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(2842), 1, + sym__not_in, + ACTIONS(3550), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2807), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(2818), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2820), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3552), 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(2824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [58279] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3827), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [58350] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3829), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [58421] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3281), 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, + [58490] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3831), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [58561] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3833), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [58632] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3835), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [58703] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(387), 1, + anon_sym_do, + ACTIONS(3837), 1, + sym__newline_before_do, + STATE(3065), 1, + sym_do_block, + ACTIONS(2924), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2926), 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, + [58778] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3281), 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, + [58847] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(387), 1, + anon_sym_do, + ACTIONS(3839), 1, + sym__newline_before_do, + STATE(3063), 1, + sym_do_block, + ACTIONS(2916), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2918), 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, + [58922] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(387), 1, + anon_sym_do, + ACTIONS(3841), 1, + sym__newline_before_do, + STATE(3062), 1, + sym_do_block, + ACTIONS(2916), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2918), 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, + [58997] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(387), 1, + anon_sym_do, + ACTIONS(3843), 1, + sym__newline_before_do, + STATE(3059), 1, + sym_do_block, + ACTIONS(2940), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2942), 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, + [59072] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(387), 1, + anon_sym_do, + ACTIONS(3845), 1, + sym__newline_before_do, + STATE(3058), 1, + sym_do_block, + ACTIONS(2916), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2918), 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, + [59147] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3107), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3109), 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, + [59216] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3563), 1, + anon_sym_SEMI, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3847), 1, + anon_sym_RPAREN, + STATE(377), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4945), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [59341] = 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), 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, + [59410] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [59491] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [59574] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [59657] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3255), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3257), 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, + [59726] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3287), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3289), 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, + [59795] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2826), 1, + anon_sym_in, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(2842), 1, + sym__not_in, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [59884] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2826), 1, + anon_sym_in, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(2842), 1, + sym__not_in, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [59977] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3299), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3301), 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, + [60046] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3281), 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, + [60115] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2826), 1, + anon_sym_in, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(2842), 1, + sym__not_in, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [60210] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -209297,11 +201011,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(3305), 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, @@ -209350,20 +201064,1924 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [56205] = 5, + [60279] = 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, + [60348] = 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, + [60417] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2826), 1, + anon_sym_in, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(2842), 1, + sym__not_in, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2820), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [60514] = 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, + [60583] = 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, + [60652] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3317), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3319), 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, + [60721] = 4, 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, + ACTIONS(3251), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 52, + ACTIONS(3253), 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, + [60790] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2816), 1, + anon_sym_EQ, + ACTIONS(2826), 1, + anon_sym_in, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(2842), 1, + sym__not_in, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2818), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2820), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [60891] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2814), 1, + anon_sym_EQ_GT, + ACTIONS(2816), 1, + anon_sym_EQ, + ACTIONS(2826), 1, + anon_sym_in, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(2842), 1, + sym__not_in, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2818), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2820), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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_DASH_GT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [60994] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2799), 1, + anon_sym_PIPE, + ACTIONS(2812), 1, + anon_sym_COLON_COLON, + ACTIONS(2814), 1, + anon_sym_EQ_GT, + ACTIONS(2816), 1, + anon_sym_EQ, + ACTIONS(2826), 1, + anon_sym_in, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(2842), 1, + sym__not_in, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2818), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2820), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 11, + 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_else, + anon_sym_end, + anon_sym_rescue, + [61101] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2799), 1, + anon_sym_PIPE, + ACTIONS(2812), 1, + anon_sym_COLON_COLON, + ACTIONS(2814), 1, + anon_sym_EQ_GT, + ACTIONS(2816), 1, + anon_sym_EQ, + ACTIONS(2826), 1, + anon_sym_in, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(2842), 1, + sym__not_in, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2818), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2820), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [61210] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2799), 1, + anon_sym_PIPE, + ACTIONS(2812), 1, + anon_sym_COLON_COLON, + ACTIONS(2814), 1, + anon_sym_EQ_GT, + ACTIONS(2816), 1, + anon_sym_EQ, + ACTIONS(2826), 1, + anon_sym_in, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(2842), 1, + sym__not_in, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3825), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2818), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2820), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [61319] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [61396] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [61471] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2799), 1, + anon_sym_PIPE, + ACTIONS(2814), 1, + anon_sym_EQ_GT, + ACTIONS(2816), 1, + anon_sym_EQ, + ACTIONS(2826), 1, + anon_sym_in, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(2842), 1, + sym__not_in, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2818), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(2820), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(2797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2822), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [61576] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2826), 1, + anon_sym_in, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(2842), 1, + sym__not_in, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(2824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61667] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2828), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 1, + anon_sym_SLASH_SLASH, + ACTIONS(2834), 1, + anon_sym_STAR_STAR, + ACTIONS(2838), 1, + anon_sym_DOT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2801), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(2805), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(2832), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [61752] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [61821] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [61890] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [61959] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [62028] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [62097] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [62166] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [62235] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [62304] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [62373] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [62442] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 53, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -209416,46 +203034,2129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [56276] = 5, + [62511] = 5, ACTIONS(5), 1, sym_comment, + ACTIONS(3849), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [62582] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3851), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [62653] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3853), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [62724] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3016), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3018), 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, + [62793] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3024), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3026), 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, + [62862] = 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(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [62933] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(1559), 1, + anon_sym_RPAREN, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3857), 1, + anon_sym_SEMI, + STATE(351), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4969), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [63058] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3002), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3004), 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, + [63127] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(846), 1, + anon_sym_RPAREN, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3714), 1, + anon_sym_SEMI, + STATE(399), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(5004), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [63252] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [63321] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [63390] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [63459] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [63528] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [63597] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [63666] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [63735] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [63804] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [63873] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [63942] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3383), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3385), 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, + [64011] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3387), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3389), 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, + [64080] = 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, + [64149] = 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, + [64218] = 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, + [64287] = 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(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [64358] = 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), 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, + [64427] = 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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [64496] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3861), 1, + anon_sym_SEMI, + ACTIONS(3863), 1, + anon_sym_RPAREN, + STATE(422), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4905), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [64621] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3419), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3421), 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, + [64690] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3419), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3421), 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, + [64759] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(1661), 1, + anon_sym_RPAREN, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, ACTIONS(3865), 1, - aux_sym_sigil_token3, + anon_sym_SEMI, + STATE(411), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4944), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, 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, + ACTIONS(3571), 2, anon_sym_SLASH, - anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(3575), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(3577), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + 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(3567), 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, - 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, @@ -209465,1276 +205166,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_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, + [64884] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -210799,215 +205231,17 @@ static const uint16_t ts_small_parse_table[] = { 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, + [64953] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 3, + ACTIONS(3419), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3295), 54, + ACTIONS(3421), 54, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -211062,1238 +205296,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [58043] = 5, + [65022] = 4, 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, - 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(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, + ACTIONS(3430), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3432), 54, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(2887), 2, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2889), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(2900), 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(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_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_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_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + [65091] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3867), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [65162] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(882), 1, + anon_sym_RPAREN, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, 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, + ACTIONS(2840), 1, anon_sym_LBRACK2, - ACTIONS(3291), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3569), 1, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(3579), 1, anon_sym_when, + ACTIONS(3582), 1, anon_sym_COLON_COLON, + ACTIONS(3584), 1, anon_sym_EQ_GT, + ACTIONS(3586), 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(3596), 1, anon_sym_in, + ACTIONS(3598), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3600), 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(3604), 1, anon_sym_STAR_STAR, + ACTIONS(3606), 1, 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, + ACTIONS(3608), 1, sym__not_in, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3295), 54, + ACTIONS(3767), 1, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_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, + STATE(352), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4958), 1, + STATE(5025), 1, aux_sym_block_repeat2, - STATE(5161), 1, + STATE(5149), 1, aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3648), 2, + ACTIONS(3571), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3652), 2, + ACTIONS(3575), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3654), 2, + ACTIONS(3577), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3665), 3, + ACTIONS(3588), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3667), 3, + ACTIONS(3590), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3644), 4, + ACTIONS(3567), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3669), 5, + 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(3679), 6, + 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(3671), 9, + ACTIONS(3594), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -212303,2695 +205520,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [59427] = 4, + [65287] = 5, 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, - 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(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, - [60839] = 21, - ACTIONS(5), 1, - sym_comment, - 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(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(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_DASH_GT, - anon_sym_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [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, - 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(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(3295), 11, - 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_else, - anon_sym_end, - anon_sym_rescue, - [61049] = 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(3293), 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(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(3295), 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, - [61158] = 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(3293), 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(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(3295), 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, - [61267] = 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, - [61336] = 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, - [61405] = 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, - [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, - 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(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(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(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, - anon_sym_PIPE, - anon_sym_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - 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_else, - anon_sym_end, - anon_sym_rescue, - [62305] = 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(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), 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_after, - anon_sym_catch, - anon_sym_else, - anon_sym_end, - anon_sym_rescue, - [62390] = 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), 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, + ACTIONS(3869), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 52, + ACTIONS(3233), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -215044,3136 +205586,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [62530] = 4, + [65358] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3516), 3, - sym__not_in, + ACTIONS(1004), 1, 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, + ACTIONS(2803), 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_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, - ACTIONS(2885), 1, - anon_sym_COMMA, - ACTIONS(2918), 1, + ACTIONS(2836), 1, anon_sym_DASH_GT, - ACTIONS(2922), 1, + ACTIONS(2840), 1, anon_sym_LBRACK2, - ACTIONS(3640), 1, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3871), 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, - 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, - [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(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, - [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(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, - [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(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, - [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(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, - [65750] = 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, - [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, + ACTIONS(3873), 1, anon_sym_RPAREN, STATE(376), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(5016), 1, + STATE(4982), 1, aux_sym_block_repeat2, - STATE(5161), 1, + STATE(5149), 1, aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3648), 2, + ACTIONS(3571), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3652), 2, + ACTIONS(3575), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3654), 2, + ACTIONS(3577), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3665), 3, + ACTIONS(3588), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3667), 3, + ACTIONS(3590), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3644), 4, + ACTIONS(3567), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3669), 5, + 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(3679), 6, + 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(3671), 9, + ACTIONS(3594), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -218183,220 +205679,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [66124] = 4, + [65483] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3199), 3, - sym__not_in, + ACTIONS(1004), 1, aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3201), 54, - anon_sym_SEMI, + ACTIONS(1557), 1, anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, + ACTIONS(2803), 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_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, + ACTIONS(2836), 1, anon_sym_DASH_GT, - ACTIONS(2922), 1, + ACTIONS(2840), 1, anon_sym_LBRACK2, - ACTIONS(3646), 1, + ACTIONS(3569), 1, anon_sym_PIPE, - ACTIONS(3656), 1, + ACTIONS(3579), 1, anon_sym_when, - ACTIONS(3659), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(3661), 1, + ACTIONS(3584), 1, anon_sym_EQ_GT, - ACTIONS(3663), 1, + ACTIONS(3586), 1, anon_sym_EQ, - ACTIONS(3673), 1, + ACTIONS(3596), 1, anon_sym_in, - ACTIONS(3675), 1, + ACTIONS(3598), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3677), 1, + ACTIONS(3600), 1, anon_sym_SLASH_SLASH, - ACTIONS(3681), 1, + ACTIONS(3604), 1, anon_sym_STAR_STAR, - ACTIONS(3683), 1, + ACTIONS(3606), 1, anon_sym_DOT, - ACTIONS(3685), 1, + ACTIONS(3608), 1, sym__not_in, - ACTIONS(3965), 1, + ACTIONS(3875), 1, anon_sym_SEMI, - STATE(372), 1, + STATE(392), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4997), 1, + STATE(4892), 1, aux_sym_block_repeat2, - STATE(5161), 1, + STATE(5149), 1, aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3648), 2, + ACTIONS(3571), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3652), 2, + ACTIONS(3575), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3654), 2, + ACTIONS(3577), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3665), 3, + ACTIONS(3588), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3667), 3, + ACTIONS(3590), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3644), 4, + ACTIONS(3567), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3669), 5, + 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(3679), 6, + 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(3671), 9, + ACTIONS(3594), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -218406,90 +205772,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [66387] = 32, + [65608] = 32, ACTIONS(5), 1, sym_comment, - ACTIONS(934), 1, + ACTIONS(866), 1, anon_sym_RPAREN, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(2885), 1, + ACTIONS(2803), 1, anon_sym_COMMA, - ACTIONS(2918), 1, + ACTIONS(2836), 1, anon_sym_DASH_GT, - ACTIONS(2922), 1, + ACTIONS(2840), 1, anon_sym_LBRACK2, - ACTIONS(3646), 1, + ACTIONS(3569), 1, anon_sym_PIPE, - ACTIONS(3656), 1, + ACTIONS(3579), 1, anon_sym_when, - ACTIONS(3659), 1, + ACTIONS(3582), 1, anon_sym_COLON_COLON, - ACTIONS(3661), 1, + ACTIONS(3584), 1, anon_sym_EQ_GT, - ACTIONS(3663), 1, + ACTIONS(3586), 1, anon_sym_EQ, - ACTIONS(3673), 1, + ACTIONS(3596), 1, anon_sym_in, - ACTIONS(3675), 1, + ACTIONS(3598), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(3677), 1, + ACTIONS(3600), 1, anon_sym_SLASH_SLASH, - ACTIONS(3681), 1, + ACTIONS(3604), 1, anon_sym_STAR_STAR, - ACTIONS(3683), 1, + ACTIONS(3606), 1, anon_sym_DOT, - ACTIONS(3685), 1, + ACTIONS(3608), 1, sym__not_in, - ACTIONS(3809), 1, + ACTIONS(3861), 1, anon_sym_SEMI, - STATE(363), 1, + STATE(422), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(5010), 1, + STATE(4905), 1, aux_sym_block_repeat2, - STATE(5161), 1, + STATE(5149), 1, aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3648), 2, + ACTIONS(3571), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3652), 2, + ACTIONS(3575), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3654), 2, + ACTIONS(3577), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3665), 3, + ACTIONS(3588), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3667), 3, + ACTIONS(3590), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3644), 4, + ACTIONS(3567), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3669), 5, + 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(3679), 6, + 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(3671), 9, + ACTIONS(3594), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -218499,90 +205865,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [66512] = 32, + [65733] = 5, 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, + ACTIONS(3877), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3648), 2, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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_STAR, - ACTIONS(3652), 2, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3654), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3665), 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(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_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -218592,18 +205918,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [66637] = 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, + [65804] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3879), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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(2990), 3, + ACTIONS(2988), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2992), 53, + ACTIONS(2990), 53, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -218657,343 +206062,452 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [66706] = 4, + [65944] = 25, 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), 53, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, + ACTIONS(2799), 1, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, + ACTIONS(2812), 1, anon_sym_COLON_COLON, + ACTIONS(2814), 1, anon_sym_EQ_GT, + ACTIONS(2816), 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(2826), 1, anon_sym_in, + ACTIONS(2828), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(2830), 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(2834), 1, anon_sym_STAR_STAR, + ACTIONS(2838), 1, 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(3496), 3, - sym__newline_before_do, - sym__not_in, + ACTIONS(2840), 1, 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, + ACTIONS(2842), 1, 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, + ACTIONS(3554), 1, 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, + ACTIONS(3825), 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_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, + ACTIONS(2801), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(2805), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(2807), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, + ACTIONS(2818), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(2820), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(2797), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(2822), 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(2832), 6, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PLUS_PLUS_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(3556), 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, - [67051] = 4, + ACTIONS(2824), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [66055] = 32, ACTIONS(5), 1, sym_comment, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3714), 1, + anon_sym_SEMI, + ACTIONS(3881), 1, + anon_sym_RPAREN, + STATE(399), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(5004), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2611), 3, - sym__not_in, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [66180] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1004), 1, aux_sym__terminator_token1, + ACTIONS(1613), 1, + anon_sym_RPAREN, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, anon_sym_LBRACK2, - ACTIONS(2613), 54, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3883), 1, anon_sym_SEMI, + STATE(388), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4985), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [66305] = 32, + ACTIONS(5), 1, + sym_comment, + ACTIONS(878), 1, + anon_sym_RPAREN, + ACTIONS(1004), 1, + aux_sym__terminator_token1, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3569), 1, + anon_sym_PIPE, + ACTIONS(3579), 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, + sym__not_in, + ACTIONS(3871), 1, + anon_sym_SEMI, + STATE(376), 1, + sym__terminator, + STATE(1020), 1, + aux_sym__terminator_repeat1, + STATE(4982), 1, + aux_sym_block_repeat2, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3567), 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, + [66430] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2980), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2982), 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, + [66499] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 53, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -219042,77 +206556,8 @@ 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, - [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, + anon_sym_do, + [66568] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -219177,6 +206622,591 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, + [66637] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3434), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3436), 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, + [66706] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3438), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3440), 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, + [66775] = 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), 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), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3442), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3444), 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, + [66913] = 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), 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(2545), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2547), 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(2581), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2583), 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(2573), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2575), 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(3199), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3201), 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, @@ -219184,11 +207214,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3215), 3, + ACTIONS(3195), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3217), 53, + ACTIONS(3197), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -219249,11 +207279,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3141), 3, + ACTIONS(3191), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3143), 53, + ACTIONS(3193), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -219314,11 +207344,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3145), 3, + ACTIONS(3187), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3147), 53, + ACTIONS(3189), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -219379,11 +207409,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3229), 3, + ACTIONS(3183), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3231), 53, + ACTIONS(3185), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -219443,11 +207473,11 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2651), 3, + ACTIONS(2565), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2653), 54, + ACTIONS(2567), 54, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -219509,11 +207539,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3090), 3, + ACTIONS(2972), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3092), 53, + ACTIONS(2974), 53, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -219574,11 +207604,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3044), 3, + ACTIONS(2908), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3046), 53, + ACTIONS(2910), 53, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -219639,11 +207669,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3048), 3, + ACTIONS(2912), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3050), 53, + ACTIONS(2914), 53, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -219704,11 +207734,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3052), 3, + ACTIONS(2964), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3054), 53, + ACTIONS(2966), 53, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -219769,11 +207799,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3233), 3, + ACTIONS(3179), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3235), 53, + ACTIONS(3181), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -219834,11 +207864,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3098), 3, + ACTIONS(2956), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3100), 53, + ACTIONS(2958), 53, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -219899,11 +207929,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3241), 3, + ACTIONS(3175), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3243), 53, + ACTIONS(3177), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -219964,11 +207994,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3245), 3, + ACTIONS(3171), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3247), 53, + ACTIONS(3173), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220029,11 +208059,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3311), 3, + ACTIONS(3059), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3313), 53, + ACTIONS(3061), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220094,11 +208124,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3331), 3, + ACTIONS(3219), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3333), 53, + ACTIONS(3221), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220159,11 +208189,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3335), 3, + ACTIONS(3071), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3337), 53, + ACTIONS(3073), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220224,11 +208254,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3399), 3, + ACTIONS(3075), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3401), 53, + ACTIONS(3077), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220289,11 +208319,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3441), 3, + ACTIONS(3079), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3443), 53, + ACTIONS(3081), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220354,11 +208384,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3445), 3, + ACTIONS(3083), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3447), 53, + ACTIONS(3085), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220419,11 +208449,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3500), 3, + ACTIONS(3087), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3502), 53, + ACTIONS(3089), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220484,11 +208514,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3522), 3, + ACTIONS(3095), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3524), 53, + ACTIONS(3097), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220549,11 +208579,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3526), 3, + ACTIONS(3099), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3528), 53, + ACTIONS(3101), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220614,11 +208644,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3530), 3, + ACTIONS(3127), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3532), 53, + ACTIONS(3129), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220679,11 +208709,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3480), 3, + ACTIONS(3131), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3482), 53, + ACTIONS(3133), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220744,11 +208774,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3415), 3, + ACTIONS(3135), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3417), 53, + ACTIONS(3137), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220809,11 +208839,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3411), 3, + ACTIONS(3139), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3413), 53, + ACTIONS(3141), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220874,11 +208904,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3345), 3, + ACTIONS(3143), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3347), 53, + ACTIONS(3145), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -220939,11 +208969,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3315), 3, + ACTIONS(3147), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3317), 53, + ACTIONS(3149), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -221004,11 +209034,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3110), 3, + ACTIONS(3151), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3112), 53, + ACTIONS(3153), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -221069,11 +209099,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3253), 3, + ACTIONS(3167), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3255), 53, + ACTIONS(3169), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -221134,11 +209164,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3259), 3, + ACTIONS(3163), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3261), 53, + ACTIONS(3165), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -221199,11 +209229,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3273), 3, + ACTIONS(3159), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3275), 53, + ACTIONS(3161), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -221264,11 +209294,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3094), 3, + ACTIONS(2968), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3096), 53, + ACTIONS(2970), 53, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -221329,11 +209359,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3277), 3, + ACTIONS(3155), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3279), 53, + ACTIONS(3157), 53, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -221394,11 +209424,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3074), 3, + ACTIONS(2930), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3076), 53, + ACTIONS(2932), 53, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -221459,11 +209489,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3018), 3, + ACTIONS(2920), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3020), 53, + ACTIONS(2922), 53, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -221524,11 +209554,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3179), 3, + ACTIONS(3415), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3181), 52, + ACTIONS(3417), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -221588,11 +209618,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3183), 3, + ACTIONS(3419), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3185), 52, + ACTIONS(3421), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -221652,11 +209682,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3175), 3, + ACTIONS(3409), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3177), 52, + ACTIONS(3411), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -221716,11 +209746,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3171), 3, + ACTIONS(3405), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3173), 52, + ACTIONS(3407), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -221780,11 +209810,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3167), 3, + ACTIONS(3397), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3169), 52, + ACTIONS(3399), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -221844,11 +209874,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3163), 3, + ACTIONS(3387), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3165), 52, + ACTIONS(3389), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -221908,11 +209938,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3159), 3, + ACTIONS(3383), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3161), 52, + ACTIONS(3385), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -221972,11 +210002,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3106), 3, + ACTIONS(3321), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3108), 52, + ACTIONS(3323), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -222036,11 +210066,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3106), 3, + ACTIONS(3321), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3108), 52, + ACTIONS(3323), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -222100,11 +210130,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3106), 3, + ACTIONS(3321), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3108), 52, + ACTIONS(3323), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -222164,11 +210194,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3106), 3, + ACTIONS(3321), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3108), 52, + ACTIONS(3323), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -222228,11 +210258,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3106), 3, + ACTIONS(3321), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3108), 52, + ACTIONS(3323), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -222292,11 +210322,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3106), 3, + ACTIONS(3321), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3108), 52, + ACTIONS(3323), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -222356,11 +210386,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3106), 3, + ACTIONS(3321), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3108), 52, + ACTIONS(3323), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -222420,11 +210450,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3106), 3, + ACTIONS(3321), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3108), 52, + ACTIONS(3323), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -222484,11 +210514,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3106), 3, + ACTIONS(3321), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3108), 52, + ACTIONS(3323), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -222548,11 +210578,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3106), 3, + ACTIONS(3321), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3108), 52, + ACTIONS(3323), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -222612,11 +210642,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3183), 3, + ACTIONS(3419), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3185), 52, + ACTIONS(3421), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -222670,4080 +210700,6 @@ static const uint16_t ts_small_parse_table[] = { 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(2666), 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, - [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(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, - [71654] = 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, - [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(2984), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2986), 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, - [71792] = 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, - [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(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, - [72338] = 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, - [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(3130), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3132), 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, - [74364] = 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, - [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, - 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, - [74846] = 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), 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, - [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, @@ -226807,18 +210763,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [75402] = 4, + [71034] = 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, + ACTIONS(3419), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3429), 52, + ACTIONS(3421), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -226871,18 +210827,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [75470] = 4, + [71102] = 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, + ACTIONS(3430), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3433), 52, + ACTIONS(3432), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -226935,18 +210891,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [75538] = 4, + [71170] = 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, + ACTIONS(3434), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3136), 52, + ACTIONS(3436), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -226999,373 +210955,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [75606] = 25, + [71238] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3551), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, 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, + ACTIONS(3438), 3, + sym__newline_before_do, sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3440), 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(3442), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3444), 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(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, - 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(3983), 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(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(3457), 4, + ACTIONS(3251), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3459), 50, + ACTIONS(3253), 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, @@ -227410,286 +211147,283 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [76068] = 6, + [71442] = 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, + ACTIONS(3885), 1, anon_sym_LPAREN, - STATE(2348), 1, + STATE(2200), 1, sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2890), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2892), 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, + [71514] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3885), 1, + anon_sym_LPAREN, + STATE(2199), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2890), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2892), 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(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [71654] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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(2521), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2972), 5, + ACTIONS(2896), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2974), 49, + ACTIONS(2898), 50, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -227738,240 +211472,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [76424] = 6, + [71792] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3995), 1, - anon_sym_LPAREN, - STATE(2345), 1, - sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2649), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2972), 5, + ACTIONS(2902), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2974), 49, + ACTIONS(2904), 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, - [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, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [72134] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2974), 51, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -228023,21 +211856,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [76754] = 6, + anon_sym_do, + [72202] = 4, 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, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -228089,21 +211920,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [76826] = 6, + anon_sym_do, + [72270] = 4, 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, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -228155,25 +211984,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [76898] = 4, + anon_sym_do, + [72338] = 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(3321), 3, sym__newline_before_do, sym__not_in, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3239), 52, - anon_sym_SEMI, + ACTIONS(3323), 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, @@ -228216,502 +212047,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, - [76966] = 4, + [72406] = 6, 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, + ACTIONS(3885), 1, anon_sym_LPAREN, - STATE(2343), 1, + STATE(2650), 1, sym__call_arguments_with_parentheses, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2972), 5, + aux_sym__terminator_token1, + ACTIONS(2890), 3, 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, + ACTIONS(2892), 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, @@ -228756,44 +212115,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [77560] = 12, + [72478] = 4, 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, + ACTIONS(3107), 4, + sym__newline_before_do, 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_LBRACK2, + ACTIONS(3109), 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, @@ -228823,62 +212166,1017 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_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] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(617), 1, + anon_sym_do, + ACTIONS(3887), 1, + sym__newline_before_do, + STATE(3328), 1, + sym_do_block, + ACTIONS(2896), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2898), 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, + [72620] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2639), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2902), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2904), 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, + [72690] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2638), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2896), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2898), 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, + [72760] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3103), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3105), 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, + [72828] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3255), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3257), 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, + [72896] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3446), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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(3413), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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(3381), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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(3379), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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(3329), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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(3327), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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(3325), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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(3315), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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(3297), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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(3295), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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(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, + aux_sym_sigil_token3, 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, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, @@ -228898,72 +213196,71 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_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(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(3291), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3697), 2, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3699), 2, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3711), 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(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_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -228973,35 +213270,36 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_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(3727), 1, - anon_sym_STAR_STAR, - ACTIONS(3729), 1, - anon_sym_DOT, - ACTIONS(3731), 1, - anon_sym_LBRACK2, + ACTIONS(3285), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 2, + ACTIONS(3231), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3295), 51, + anon_sym_LBRACK2, + ACTIONS(3233), 51, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -229047,34 +213345,30 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [73806] = 5, 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(3283), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 2, + ACTIONS(3231), 4, + sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3697), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3295), 49, + anon_sym_LBRACK2, + ACTIONS(3233), 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, @@ -229115,86 +213409,53 @@ static const uint16_t ts_small_parse_table[] = { 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, + 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(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(3249), 1, + aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3697), 2, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 51, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(3699), 2, + anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3711), 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(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_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -229204,18 +213465,357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [78096] = 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_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [73946] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3243), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + ACTIONS(3241), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [74086] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3239), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [74156] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3237), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [74226] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3235), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [74296] = 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, + ACTIONS(3317), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3437), 52, + ACTIONS(3319), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -229268,775 +213868,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + [74364] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -230100,394 +213932,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + [74432] = 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, + ACTIONS(3307), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3536), 52, + ACTIONS(3309), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -230540,18 +213996,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [79568] = 4, + [74500] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(617), 1, + anon_sym_do, + ACTIONS(3889), 1, + sym__newline_before_do, + STATE(3243), 1, + sym_do_block, + ACTIONS(2902), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2904), 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(3118), 3, + ACTIONS(3307), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3120), 52, + ACTIONS(3309), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -230604,84 +214127,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + [74642] = 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, + ACTIONS(3303), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3120), 52, + ACTIONS(3305), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -230734,18 +214191,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [79776] = 4, + [74710] = 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, + ACTIONS(3303), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3120), 52, + ACTIONS(3305), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -230798,176 +214255,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + [74778] = 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, + ACTIONS(3279), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3066), 52, + ACTIONS(3281), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -231020,245 +214319,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + [74846] = 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, + ACTIONS(3299), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3157), 52, + ACTIONS(3301), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -231311,182 +214383,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [80450] = 11, + [74914] = 6, 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, + ACTIONS(3891), 1, + anon_sym_COMMA, + STATE(2075), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 3, 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, + ACTIONS(3028), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3030), 50, + 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_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, @@ -231518,23 +214439,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, - [80694] = 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, + [74986] = 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, + ACTIONS(3103), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3193), 52, + ACTIONS(3105), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -231587,26 +214513,953 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [80762] = 4, + [75054] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3287), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3289), 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, + [75122] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 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(3281), 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, + [75194] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3281), 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, + [75262] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3281), 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, + [75330] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3275), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3277), 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, + [75398] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3271), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3273), 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, + [75466] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3267), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3269), 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, + [75534] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3898), 1, + anon_sym_COMMA, + STATE(2084), 1, + aux_sym_keywords_repeat1, + 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_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, + [75606] = 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), 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, + [75674] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + aux_sym__terminator_token1, + ACTIONS(3662), 1, + anon_sym_PIPE, + ACTIONS(3670), 1, + anon_sym_when, + ACTIONS(3672), 1, + anon_sym_COLON_COLON, + ACTIONS(3674), 1, + anon_sym_EQ_GT, + ACTIONS(3676), 1, + anon_sym_EQ, + ACTIONS(3686), 1, + anon_sym_in, + ACTIONS(3688), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3702), 1, + sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2611), 4, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3668), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3678), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3680), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3660), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3682), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3556), 7, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3684), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [75784] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3901), 1, + anon_sym_COMMA, + STATE(2084), 1, + aux_sym_keywords_repeat1, + 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_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, + [75856] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3901), 1, + anon_sym_COMMA, + STATE(2087), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3391), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3393), 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, + [75928] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3448), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3450), 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] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3452), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3454), 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, + [76064] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3903), 1, + anon_sym_COMMA, + STATE(2091), 1, + aux_sym__items_with_trailing_separator_repeat1, + 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(2613), 52, + ACTIONS(3030), 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, @@ -231651,969 +215504,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [80830] = 4, + [76136] = 6, 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, + ACTIONS(3906), 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_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, + STATE(2092), 1, + aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -232622,15 +215519,13 @@ static const uint16_t ts_small_parse_table[] = { sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3313), 52, + 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, @@ -232675,491 +215570,155 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [81918] = 4, + [76208] = 6, 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, + ACTIONS(3909), 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, - [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, + STATE(2075), 1, aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3351), 2, - sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4043), 2, + ACTIONS(3035), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3037), 50, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, 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_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(4061), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3353), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [76280] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3911), 1, + anon_sym_COMMA, + STATE(2092), 1, + aux_sym_keywords_repeat1, + 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), 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_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, + [76352] = 6, 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(3913), 1, + anon_sym_LPAREN, + STATE(2339), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3191), 2, + ACTIONS(2890), 5, + sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3193), 52, + anon_sym_LBRACK2, + ACTIONS(2892), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -233207,25 +215766,5496 @@ static const uint16_t ts_small_parse_table[] = { 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(3913), 1, + anon_sym_LPAREN, + STATE(2336), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2890), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2892), 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] = 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), 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, + [76564] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3331), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3917), 1, + anon_sym_PIPE, + ACTIONS(3921), 1, + anon_sym_COMMA, + ACTIONS(3927), 1, + anon_sym_when, + ACTIONS(3929), 1, + anon_sym_COLON_COLON, + ACTIONS(3931), 1, + anon_sym_EQ_GT, + ACTIONS(3933), 1, + anon_sym_EQ, + ACTIONS(3943), 1, + anon_sym_in, + ACTIONS(3945), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3947), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3951), 1, + anon_sym_STAR_STAR, + ACTIONS(3953), 1, + sym__not_in, + STATE(2093), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3919), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3925), 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(3935), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3937), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3333), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_do, + ACTIONS(3915), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3939), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3949), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3941), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [76678] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3913), 1, + anon_sym_LPAREN, + STATE(2335), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2890), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2892), 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, + [76750] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3911), 1, + anon_sym_COMMA, + STATE(2094), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3391), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3393), 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, + [76822] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3558), 1, + anon_sym_LPAREN, + STATE(1862), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2890), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2892), 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, + [76894] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3558), 1, + anon_sym_LPAREN, + STATE(1860), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2890), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2892), 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, + [76966] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3558), 1, + anon_sym_LPAREN, + STATE(1859), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2890), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2892), 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, + [77038] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3550), 1, + aux_sym__terminator_token1, + ACTIONS(3662), 1, + anon_sym_PIPE, + ACTIONS(3670), 1, + anon_sym_when, + ACTIONS(3672), 1, + anon_sym_COLON_COLON, + ACTIONS(3674), 1, + anon_sym_EQ_GT, + ACTIONS(3676), 1, + anon_sym_EQ, + ACTIONS(3686), 1, + anon_sym_in, + ACTIONS(3688), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3702), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3668), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3678), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3680), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3660), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3682), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3552), 7, + anon_sym_SEMI, + anon_sym_COMMA, anon_sym_after, anon_sym_catch, anon_sym_else, anon_sym_end, anon_sym_rescue, - [82512] = 6, + ACTIONS(3684), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [77148] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3729), 1, + ACTIONS(3955), 1, + anon_sym_COMMA, + STATE(2091), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3035), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3037), 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, - ACTIONS(3731), 1, + anon_sym_do, + [77220] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [77288] = 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, + [77356] = 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), 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, + [77424] = 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), 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, + [77492] = 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), 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, + [77560] = 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), 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, + [77628] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3688), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3118), 2, + ACTIONS(3279), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3120), 52, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [77712] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3686), 1, + anon_sym_in, + ACTIONS(3688), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3702), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3684), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [77802] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3662), 1, + anon_sym_PIPE, + ACTIONS(3674), 1, + anon_sym_EQ_GT, + ACTIONS(3676), 1, + anon_sym_EQ, + ACTIONS(3686), 1, + anon_sym_in, + ACTIONS(3688), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3702), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3678), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3680), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3660), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3682), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3684), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [77906] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [77980] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3263), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3265), 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, + [78048] = 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), 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, + [78116] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3255), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3257), 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, + [78184] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3251), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3253), 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, + [78252] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3281), 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, + [78328] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3662), 1, + anon_sym_PIPE, + ACTIONS(3670), 1, + anon_sym_when, + ACTIONS(3672), 1, + anon_sym_COLON_COLON, + ACTIONS(3674), 1, + anon_sym_EQ_GT, + ACTIONS(3676), 1, + anon_sym_EQ, + ACTIONS(3686), 1, + anon_sym_in, + ACTIONS(3688), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3702), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3678), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3680), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3660), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3682), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(3684), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [78436] = 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), 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(3187), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3189), 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(3183), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3185), 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(3179), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3181), 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(3175), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3177), 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(3171), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3173), 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), 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), 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, + [78912] = 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), 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, + [78980] = 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), 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, + [79048] = 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), 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, + [79116] = 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), 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, + [79184] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3227), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3229), 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, + [79252] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2565), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2567), 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, + [79320] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2573), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2575), 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, + [79388] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3227), 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(3229), 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, + [79460] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3227), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3229), 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, + [79528] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3227), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3229), 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, + [79596] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3662), 1, + anon_sym_PIPE, + ACTIONS(3670), 1, + anon_sym_when, + ACTIONS(3672), 1, + anon_sym_COLON_COLON, + ACTIONS(3674), 1, + anon_sym_EQ_GT, + ACTIONS(3676), 1, + anon_sym_EQ, + ACTIONS(3686), 1, + anon_sym_in, + ACTIONS(3688), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3702), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3678), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3680), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3660), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3682), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(3684), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [79704] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3662), 1, + anon_sym_PIPE, + ACTIONS(3672), 1, + anon_sym_COLON_COLON, + ACTIONS(3674), 1, + anon_sym_EQ_GT, + ACTIONS(3676), 1, + anon_sym_EQ, + ACTIONS(3686), 1, + anon_sym_in, + ACTIONS(3688), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3702), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3678), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3680), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3660), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3682), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3684), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [79810] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2940), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2942), 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, + [79878] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3674), 1, + anon_sym_EQ_GT, + ACTIONS(3676), 1, + anon_sym_EQ, + ACTIONS(3686), 1, + anon_sym_in, + ACTIONS(3688), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3702), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3678), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3680), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3660), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3682), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3684), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [79980] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3676), 1, + anon_sym_EQ, + ACTIONS(3686), 1, + anon_sym_in, + ACTIONS(3688), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3702), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3678), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3680), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3660), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3682), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3684), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [80080] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3686), 1, + anon_sym_in, + ACTIONS(3688), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3702), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3680), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3660), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3682), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3684), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [80176] = 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), 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, + [80244] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3686), 1, + anon_sym_in, + ACTIONS(3688), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3702), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3660), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3682), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3684), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [80338] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3686), 1, + anon_sym_in, + ACTIONS(3688), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3702), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3660), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3684), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [80430] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3686), 1, + anon_sym_in, + ACTIONS(3688), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3702), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [80518] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [80600] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [80682] = 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, + [80750] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2581), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2583), 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, + [80818] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3123), 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(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_do, + [80890] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2545), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2547), 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, + [80958] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [81038] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2890), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2892), 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, + [81106] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3151), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3153), 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, + [81174] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3147), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3149), 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, + [81242] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [81310] = 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), 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, + [81378] = 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, + [81446] = 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, + [81514] = 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, + [81582] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3099), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3101), 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, + [81650] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3095), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3097), 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, + [81718] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3087), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3089), 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, + [81786] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3083), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3085), 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, + [81854] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3079), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3081), 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, + [81922] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3075), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3077), 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, + [81990] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3071), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3073), 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, + [82058] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [82126] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3059), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3061), 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, + [82194] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3107), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3109), 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, + [82262] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3111), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3113), 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, + [82330] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3115), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3117), 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, + [82398] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3959), 1, + anon_sym_PIPE, + ACTIONS(3963), 1, + anon_sym_COMMA, + ACTIONS(3969), 1, + anon_sym_when, + ACTIONS(3971), 1, + anon_sym_COLON_COLON, + ACTIONS(3973), 1, + anon_sym_EQ_GT, + ACTIONS(3975), 1, + anon_sym_EQ, + ACTIONS(3985), 1, + anon_sym_in, + ACTIONS(3987), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3989), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3993), 1, + anon_sym_STAR_STAR, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3997), 1, + sym__not_in, + STATE(2105), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3331), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3961), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3967), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3977), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3979), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3333), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3957), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3981), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3991), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3983), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [82512] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3123), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3125), 52, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -233285,11 +221315,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3407), 3, + ACTIONS(3091), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3409), 52, + ACTIONS(3093), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -233349,11 +221379,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3403), 3, + ACTIONS(3091), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3405), 52, + ACTIONS(3093), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -233409,83 +221439,17 @@ static const uint16_t ts_small_parse_table[] = { [82720] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3979), 1, + ACTIONS(3696), 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, + ACTIONS(3700), 1, anon_sym_LBRACK2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 2, + ACTIONS(3227), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3295), 52, + ACTIONS(3229), 52, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -233538,24 +221502,1050 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_else, anon_sym_end, anon_sym_rescue, - [82864] = 7, + [82792] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(552), 1, - anon_sym_do, - ACTIONS(4081), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3051), 3, sym__newline_before_do, - STATE(3569), 1, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3053), 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, + [82860] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3055), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3057), 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, + [82928] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [83000] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3024), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3026), 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, + [83068] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3119), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3121), 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, + [83136] = 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, + [83204] = 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), 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, + [83272] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3002), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3004), 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, + [83340] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3002), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3004), 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, + [83408] = 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), 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, + [83476] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3063), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3065), 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, + [83544] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3063), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3065), 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, + [83612] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3067), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3069), 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, + [83680] = 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, + [83748] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3067), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3069), 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, + [83816] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3067), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3069), 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, + [83884] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(514), 1, + anon_sym_do, + ACTIONS(3999), 1, + sym__newline_before_do, + STATE(3557), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2984), 4, + ACTIONS(2896), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2986), 49, + ACTIONS(2898), 49, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LT, @@ -233605,24 +222595,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [82938] = 7, + [83958] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(552), 1, + ACTIONS(514), 1, anon_sym_do, - ACTIONS(4083), 1, + ACTIONS(4001), 1, sym__newline_before_do, - STATE(3573), 1, + STATE(3561), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2978), 4, + ACTIONS(2902), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2980), 49, + ACTIONS(2904), 49, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LT, @@ -233672,980 +222662,20 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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), 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, - [83896] = 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), 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, - [83964] = 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), 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, [84032] = 5, ACTIONS(5), 1, sym_comment, - STATE(2759), 1, + STATE(2745), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3064), 3, + ACTIONS(2916), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3066), 50, + ACTIONS(2918), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -234699,17 +222729,17 @@ static const uint16_t ts_small_parse_table[] = { [84101] = 5, ACTIONS(5), 1, sym_comment, - STATE(2756), 1, + STATE(2744), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3038), 3, + ACTIONS(2916), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3040), 50, + ACTIONS(2918), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -234763,19 +222793,19 @@ static const uint16_t ts_small_parse_table[] = { [84170] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4085), 1, + ACTIONS(4003), 1, anon_sym_COMMA, - STATE(2236), 1, + STATE(2223), 1, aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3149), 4, + ACTIONS(3401), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3151), 49, + ACTIONS(3403), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -234825,146 +222855,18 @@ static const uint16_t ts_small_parse_table[] = { 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(3110), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - 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_do, - [84379] = 4, + [84241] = 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, + ACTIONS(3016), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3036), 51, + ACTIONS(3018), 51, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, @@ -235016,83 +222918,652 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [84446] = 27, + [84308] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4089), 1, - anon_sym_PIPE, - ACTIONS(4093), 1, + ACTIONS(4003), 1, anon_sym_COMMA, - 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, + STATE(2201), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3391), 4, + sym__newline_before_do, sym__not_in, - STATE(2259), 1, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3393), 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, + [84379] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3103), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3105), 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, + [84446] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3107), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3109), 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, + [84513] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3251), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3253), 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, + [84580] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3255), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3257), 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, + [84647] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2920), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2922), 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, + [84714] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [84781] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3103), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3105), 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, + [84848] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3107), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3109), 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, + [84915] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4007), 1, + anon_sym_PIPE, + ACTIONS(4011), 1, + anon_sym_COMMA, + ACTIONS(4017), 1, + anon_sym_when, + ACTIONS(4019), 1, + anon_sym_COLON_COLON, + ACTIONS(4021), 1, + anon_sym_EQ_GT, + ACTIONS(4023), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_in, + ACTIONS(4035), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4037), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(4047), 1, + sym__not_in, + STATE(2244), 1, aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3353), 2, + ACTIONS(3333), 2, anon_sym_SEMI, anon_sym_do, - ACTIONS(4091), 2, + ACTIONS(4009), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4095), 2, + ACTIONS(4013), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4097), 2, + ACTIONS(4015), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3351), 3, + ACTIONS(3331), 3, sym__newline_before_do, ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4107), 3, + ACTIONS(4025), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4109), 3, + ACTIONS(4027), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4087), 4, + ACTIONS(4005), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4111), 5, + ACTIONS(4029), 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, + ACTIONS(4039), 6, anon_sym_PLUS_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, + ACTIONS(4031), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -235102,339 +223573,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [84559] = 4, + [85028] = 7, 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_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_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(514), 1, anon_sym_do, - [84626] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3285), 4, + ACTIONS(4049), 1, 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, + STATE(3942), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3012), 4, + ACTIONS(2924), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3014), 48, + ACTIONS(2926), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -235483,18 +223639,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [84967] = 4, + [85101] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3289), 4, + ACTIONS(3251), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3291), 51, + ACTIONS(3253), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -235546,87 +223702,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [85034] = 4, + [85168] = 7, 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, + ACTIONS(514), 1, anon_sym_do, - anon_sym_end, - [85101] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(552), 1, - anon_sym_do, - ACTIONS(4133), 1, + ACTIONS(4051), 1, sym__newline_before_do, - STATE(3951), 1, + STATE(3939), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3038), 4, + ACTIONS(2916), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3040), 48, + ACTIONS(2918), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -235675,20 +223768,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [85174] = 5, + [85241] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(3000), 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, + ACTIONS(2996), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3008), 50, + ACTIONS(2998), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -235739,20 +223832,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [85243] = 5, + [85310] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3004), 1, + ACTIONS(3006), 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, + ACTIONS(3002), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3002), 50, + ACTIONS(3004), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -235803,24 +223896,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [85312] = 7, + [85379] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(552), 1, + ACTIONS(514), 1, anon_sym_do, - ACTIONS(4135), 1, + ACTIONS(4053), 1, sym__newline_before_do, - STATE(3950), 1, + STATE(3938), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3038), 4, + ACTIONS(2916), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3040), 48, + ACTIONS(2918), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -235869,81 +223962,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [85385] = 25, + [85452] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3551), 1, + ACTIONS(3554), 1, sym__newline_before_do, - ACTIONS(3979), 1, + ACTIONS(3894), 1, anon_sym_DOT, - ACTIONS(3981), 1, + ACTIONS(3896), 1, anon_sym_LBRACK2, - ACTIONS(3999), 1, + ACTIONS(3917), 1, anon_sym_PIPE, - ACTIONS(4009), 1, + ACTIONS(3927), 1, anon_sym_when, - ACTIONS(4011), 1, + ACTIONS(3929), 1, anon_sym_COLON_COLON, - ACTIONS(4013), 1, + ACTIONS(3931), 1, anon_sym_EQ_GT, - ACTIONS(4015), 1, + ACTIONS(3933), 1, anon_sym_EQ, - ACTIONS(4025), 1, + ACTIONS(3943), 1, anon_sym_in, - ACTIONS(4027), 1, + ACTIONS(3945), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4029), 1, + ACTIONS(3947), 1, anon_sym_SLASH_SLASH, - ACTIONS(4033), 1, + ACTIONS(3951), 1, anon_sym_STAR_STAR, - ACTIONS(4035), 1, + ACTIONS(3953), 1, sym__not_in, - ACTIONS(4001), 2, + ACTIONS(3919), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4005), 2, + ACTIONS(3923), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4007), 2, + ACTIONS(3925), 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, + ACTIONS(3935), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4019), 3, + ACTIONS(3937), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3997), 4, + ACTIONS(3915), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3553), 5, + ACTIONS(3556), 5, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COMMA, anon_sym_do, - ACTIONS(4021), 5, + ACTIONS(3939), 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, + ACTIONS(3949), 6, anon_sym_PLUS_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, + ACTIONS(3941), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -235953,87 +224046,25 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(2968), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3305), 51, + ACTIONS(2970), 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, @@ -236078,25 +224109,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, [85628] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(552), 1, + ACTIONS(514), 1, anon_sym_do, - ACTIONS(4137), 1, + ACTIONS(4055), 1, sym__newline_before_do, - STATE(3937), 1, + STATE(3925), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3064), 4, + ACTIONS(2940), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3066), 48, + ACTIONS(2942), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -236145,87 +224175,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [85701] = 4, + [85701] = 7, 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, + ACTIONS(514), 1, anon_sym_do, - [85768] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(552), 1, - anon_sym_do, - ACTIONS(4139), 1, + ACTIONS(4057), 1, sym__newline_before_do, - STATE(3914), 1, + STATE(3902), 1, sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3038), 4, + ACTIONS(2916), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3040), 48, + ACTIONS(2918), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -236274,22 +224241,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [85841] = 6, + [85774] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4141), 1, + ACTIONS(4059), 1, anon_sym_COMMA, - STATE(2236), 1, + STATE(2223), 1, aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3134), 4, + ACTIONS(3311), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3136), 49, + ACTIONS(3313), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -236339,19 +224306,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [85912] = 4, + [85845] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3415), 5, + ACTIONS(3151), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3417), 50, + ACTIONS(3153), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -236402,148 +224369,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [85979] = 4, + [85912] = 6, 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, + ACTIONS(4062), 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, - [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, + STATE(2225), 1, aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3457), 4, + ACTIONS(3028), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3459), 49, + ACTIONS(3030), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -236593,22 +224434,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [86184] = 6, + [85983] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4065), 1, anon_sym_COMMA, - STATE(2240), 1, + STATE(2225), 1, aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3506), 4, + ACTIONS(3035), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3508), 49, + ACTIONS(3037), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -236658,19 +224499,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, + [86054] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3147), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3149), 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, + [86121] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [86188] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3255), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3257), 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, [86255] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3526), 5, + ACTIONS(3251), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3528), 50, + ACTIONS(3253), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -236727,12 +224757,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3307), 4, + ACTIONS(3255), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3309), 51, + ACTIONS(3257), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -236787,17 +224817,18 @@ static const uint16_t ts_small_parse_table[] = { [86389] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2545), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, 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, + ACTIONS(2547), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -236846,21 +224877,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, [86456] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(2581), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, 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, + ACTIONS(2583), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -236909,20 +224940,19 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(3139), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3305), 50, + ACTIONS(3141), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -236976,18 +225006,17 @@ static const uint16_t ts_small_parse_table[] = { [86590] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2631), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3107), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(2633), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3109), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -237036,17 +225065,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, + anon_sym_do, [86657] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2611), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3103), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3105), 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, + [86724] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2573), 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, + ACTIONS(2575), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -237099,83 +225192,21 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(2565), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, 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, + ACTIONS(2567), 52, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -237224,20 +225255,19 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(3135), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3291), 50, + ACTIONS(3137), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -237291,18 +225321,17 @@ static const uint16_t ts_small_parse_table[] = { [86925] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2647), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + 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, - ACTIONS(2649), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3133), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -237351,21 +225380,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, + anon_sym_do, [86992] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2651), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + 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, - ACTIONS(2653), 52, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACK2, + ACTIONS(3129), 50, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -237414,19 +225443,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, + anon_sym_do, [87059] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3445), 5, + ACTIONS(3099), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3447), 50, + ACTIONS(3101), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -237483,202 +225513,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3441), 5, + ACTIONS(3008), 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, + ACTIONS(3010), 50, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LT, @@ -237729,23 +225570,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [87394] = 6, + [87193] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4149), 1, + ACTIONS(4067), 1, anon_sym_COMMA, - STATE(2350), 1, + STATE(2330), 1, aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3506), 5, + ACTIONS(3035), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3508), 48, + ACTIONS(3037), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -237794,25 +225635,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, + [87264] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [87331] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3095), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3097), 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, + [87398] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3087), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3089), 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, [87465] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3090), 5, + ACTIONS(3083), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3092), 50, + ACTIONS(3085), 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, @@ -237863,13 +225893,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3331), 5, + ACTIONS(3079), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3333), 50, + ACTIONS(3081), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -237926,13 +225956,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3311), 5, + ACTIONS(3075), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3313), 50, + ACTIONS(3077), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -237989,13 +226019,202 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3098), 5, + ACTIONS(3071), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3100), 50, + ACTIONS(3073), 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, + [87733] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3219), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3221), 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, + [87800] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3059), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3061), 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, + [87867] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3016), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3018), 50, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LT, @@ -238046,7 +226265,4714 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [87733] = 4, + [87934] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2956), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2958), 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, + [88001] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [88068] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2930), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2932), 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, + [88135] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3255), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3257), 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, + [88202] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2912), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2914), 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, + [88269] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2908), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2910), 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, + [88336] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3000), 1, + aux_sym_quoted_keyword_token1, + 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), 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, + [88405] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3006), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3002), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3004), 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, + [88474] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4069), 1, + anon_sym_COMMA, + STATE(2265), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3391), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3393), 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, + [88545] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3251), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3253), 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, + [88612] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4069), 1, + anon_sym_COMMA, + STATE(2328), 1, + aux_sym_keywords_repeat1, + 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, + anon_sym_LBRACK2, + ACTIONS(3403), 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, + [88683] = 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), 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, + [88750] = 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), 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, + [88817] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3107), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3109), 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(4071), 1, + anon_sym_COMMA, + STATE(2269), 1, + aux_sym_keywords_repeat1, + 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), 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), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3103), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3105), 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, + [89022] = 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), 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, + [89089] = 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), 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, + [89156] = 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), 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] = 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), 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, + [89290] = 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), 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, + [89357] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4074), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [89426] = 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), 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, + [89493] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4076), 1, + anon_sym_COMMA, + STATE(2346), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3391), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3393), 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, + [89564] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [89635] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3993), 1, + anon_sym_STAR_STAR, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3961), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3991), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [89714] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3989), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3993), 1, + anon_sym_STAR_STAR, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3961), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3991), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [89795] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3989), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3993), 1, + anon_sym_STAR_STAR, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3961), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3991), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [89876] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3985), 1, + anon_sym_in, + ACTIONS(3987), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3989), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3993), 1, + anon_sym_STAR_STAR, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3997), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3961), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3991), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [89963] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3985), 1, + anon_sym_in, + ACTIONS(3987), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3989), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3993), 1, + anon_sym_STAR_STAR, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3997), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3961), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3957), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3991), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3983), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [90054] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3985), 1, + anon_sym_in, + ACTIONS(3987), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3989), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3993), 1, + anon_sym_STAR_STAR, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3997), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3961), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3957), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3981), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3991), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3983), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [90147] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3945), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3947), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3951), 1, + anon_sym_STAR_STAR, + ACTIONS(3279), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3919), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3949), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [90230] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3943), 1, + anon_sym_in, + ACTIONS(3945), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3947), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3951), 1, + anon_sym_STAR_STAR, + ACTIONS(3953), 1, + sym__not_in, + ACTIONS(3919), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3949), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3941), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [90319] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3917), 1, + anon_sym_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ_GT, + ACTIONS(3933), 1, + anon_sym_EQ, + ACTIONS(3943), 1, + anon_sym_in, + ACTIONS(3945), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3947), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3951), 1, + anon_sym_STAR_STAR, + ACTIONS(3953), 1, + sym__not_in, + ACTIONS(3919), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3935), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3937), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3915), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3939), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3949), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(3941), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [90422] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3985), 1, + anon_sym_in, + ACTIONS(3987), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3989), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3993), 1, + anon_sym_STAR_STAR, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3997), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3961), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3979), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3957), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3981), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3991), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3983), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [90517] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3951), 1, + anon_sym_STAR_STAR, + ACTIONS(3279), 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(3281), 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, + [90590] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3951), 1, + anon_sym_STAR_STAR, + ACTIONS(3279), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3919), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [90665] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3917), 1, + anon_sym_PIPE, + ACTIONS(3927), 1, + anon_sym_when, + ACTIONS(3929), 1, + anon_sym_COLON_COLON, + ACTIONS(3931), 1, + anon_sym_EQ_GT, + ACTIONS(3933), 1, + anon_sym_EQ, + ACTIONS(3943), 1, + anon_sym_in, + ACTIONS(3945), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3947), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3951), 1, + anon_sym_STAR_STAR, + ACTIONS(3953), 1, + sym__not_in, + ACTIONS(3919), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3935), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3937), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3915), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3939), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3949), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(3941), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3917), 1, + anon_sym_PIPE, + ACTIONS(3927), 1, + anon_sym_when, + ACTIONS(3929), 1, + anon_sym_COLON_COLON, + ACTIONS(3931), 1, + anon_sym_EQ_GT, + ACTIONS(3933), 1, + anon_sym_EQ, + ACTIONS(3943), 1, + anon_sym_in, + ACTIONS(3945), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3947), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3951), 1, + anon_sym_STAR_STAR, + ACTIONS(3953), 1, + sym__not_in, + ACTIONS(3919), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3935), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3937), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3915), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3939), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3949), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(3941), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [90879] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3975), 1, + anon_sym_EQ, + ACTIONS(3985), 1, + anon_sym_in, + ACTIONS(3987), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3989), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3993), 1, + anon_sym_STAR_STAR, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3997), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3961), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3977), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3979), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3957), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3981), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3991), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3983), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [90978] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3917), 1, + anon_sym_PIPE, + ACTIONS(3929), 1, + anon_sym_COLON_COLON, + ACTIONS(3931), 1, + anon_sym_EQ_GT, + ACTIONS(3933), 1, + anon_sym_EQ, + ACTIONS(3943), 1, + anon_sym_in, + ACTIONS(3945), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3947), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3951), 1, + anon_sym_STAR_STAR, + ACTIONS(3953), 1, + sym__not_in, + ACTIONS(3919), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3935), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3937), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3915), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3939), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3949), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(3941), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [91083] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3931), 1, + anon_sym_EQ_GT, + ACTIONS(3933), 1, + anon_sym_EQ, + ACTIONS(3943), 1, + anon_sym_in, + ACTIONS(3945), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3947), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3951), 1, + anon_sym_STAR_STAR, + ACTIONS(3953), 1, + sym__not_in, + ACTIONS(3919), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3935), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3937), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3915), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3939), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3949), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3941), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [91184] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3933), 1, + anon_sym_EQ, + ACTIONS(3943), 1, + anon_sym_in, + ACTIONS(3945), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3947), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3951), 1, + anon_sym_STAR_STAR, + ACTIONS(3953), 1, + sym__not_in, + ACTIONS(3919), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3935), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3937), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3915), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3939), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3949), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3941), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [91283] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3943), 1, + anon_sym_in, + ACTIONS(3945), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3947), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3951), 1, + anon_sym_STAR_STAR, + ACTIONS(3953), 1, + sym__not_in, + ACTIONS(3919), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3937), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3915), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3939), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3949), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3941), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [91378] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3943), 1, + anon_sym_in, + ACTIONS(3945), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3947), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3951), 1, + anon_sym_STAR_STAR, + ACTIONS(3953), 1, + sym__not_in, + ACTIONS(3919), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3915), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3939), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3949), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3941), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [91471] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3943), 1, + anon_sym_in, + ACTIONS(3945), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3947), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3951), 1, + anon_sym_STAR_STAR, + ACTIONS(3953), 1, + sym__not_in, + ACTIONS(3919), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3915), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3949), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3941), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [91562] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3943), 1, + anon_sym_in, + ACTIONS(3945), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3947), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3951), 1, + anon_sym_STAR_STAR, + ACTIONS(3953), 1, + sym__not_in, + ACTIONS(3919), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3949), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [91649] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3947), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3951), 1, + anon_sym_STAR_STAR, + ACTIONS(3279), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3919), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3949), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [91730] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3947), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3951), 1, + anon_sym_STAR_STAR, + ACTIONS(3279), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3919), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3949), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [91811] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3951), 1, + anon_sym_STAR_STAR, + ACTIONS(3279), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(3919), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3949), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [91890] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3973), 1, + anon_sym_EQ_GT, + ACTIONS(3975), 1, + anon_sym_EQ, + ACTIONS(3985), 1, + anon_sym_in, + ACTIONS(3987), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3989), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3993), 1, + anon_sym_STAR_STAR, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3997), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3961), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3977), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3979), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3957), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3981), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3991), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3983), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [91991] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3959), 1, + anon_sym_PIPE, + ACTIONS(3971), 1, + anon_sym_COLON_COLON, + ACTIONS(3973), 1, + anon_sym_EQ_GT, + ACTIONS(3975), 1, + anon_sym_EQ, + ACTIONS(3985), 1, + anon_sym_in, + ACTIONS(3987), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3989), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3993), 1, + anon_sym_STAR_STAR, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3997), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3961), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3977), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3979), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3957), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3981), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3991), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(3983), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [92096] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2565), 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(2567), 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, + [92163] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3959), 1, + anon_sym_PIPE, + ACTIONS(3969), 1, + anon_sym_when, + ACTIONS(3971), 1, + anon_sym_COLON_COLON, + ACTIONS(3973), 1, + anon_sym_EQ_GT, + ACTIONS(3975), 1, + anon_sym_EQ, + ACTIONS(3985), 1, + anon_sym_in, + ACTIONS(3987), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3989), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3993), 1, + anon_sym_STAR_STAR, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3997), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3961), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3977), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3979), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3957), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3981), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3991), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(3983), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [92270] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3959), 1, + anon_sym_PIPE, + ACTIONS(3969), 1, + anon_sym_when, + ACTIONS(3971), 1, + anon_sym_COLON_COLON, + ACTIONS(3973), 1, + anon_sym_EQ_GT, + ACTIONS(3975), 1, + anon_sym_EQ, + ACTIONS(3985), 1, + anon_sym_in, + ACTIONS(3987), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3989), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3993), 1, + anon_sym_STAR_STAR, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3997), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3961), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3977), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3979), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3957), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3981), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3991), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(3983), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [92377] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3993), 1, + anon_sym_STAR_STAR, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3961), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [92452] = 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), 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, + [92519] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3993), 1, + anon_sym_STAR_STAR, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [92592] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2573), 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(2575), 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, + [92659] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3959), 1, + anon_sym_PIPE, + ACTIONS(3973), 1, + anon_sym_EQ_GT, + ACTIONS(3975), 1, + anon_sym_EQ, + ACTIONS(3985), 1, + anon_sym_in, + ACTIONS(3987), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3989), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3993), 1, + anon_sym_STAR_STAR, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3997), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3961), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3977), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3979), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3957), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3981), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3991), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(3983), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [92762] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3985), 1, + anon_sym_in, + ACTIONS(3987), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3989), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3993), 1, + anon_sym_STAR_STAR, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3997), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3961), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3991), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3983), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [92851] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3987), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3989), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3993), 1, + anon_sym_STAR_STAR, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3961), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3991), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [92934] = 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), 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, + [93001] = 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), 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, + [93068] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3195), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3197), 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, + [93135] = 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), 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(3203), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3205), 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(3207), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3209), 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, @@ -238109,4915 +231035,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [87800] = 4, + [93403] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3052), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3054), 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, - [87867] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3048), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3050), 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, - [87934] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3044), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3046), 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, - [88001] = 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), 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, - [88068] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3034), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3036), 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, - [88135] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3026), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3028), 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, - [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(3094), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3096), 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, - [88336] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3074), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(3076), 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, - [88403] = 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), 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, - [88470] = 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), 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, - [88539] = 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), 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, - [88608] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4151), 1, - anon_sym_COMMA, - STATE(2278), 1, - aux_sym_keywords_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3219), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - 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_do, - [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, - ACTIONS(3149), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - 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_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, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [89022] = 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), 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, - [89089] = 4, - ACTIONS(5), 1, - sym_comment, - 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, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_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(3219), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3221), 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, - [89363] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2651), 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(2653), 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, - [89430] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(2647), 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(2649), 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, - [89497] = 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, - [89564] = 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, - [89631] = 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(3293), 3, - sym__newline_before_do, - sym__not_in, - 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, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_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, - [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(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), 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, - [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, - 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_DASH_GT, - anon_sym_do, - [89862] = 12, - ACTIONS(5), 1, - sym_comment, - 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(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_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, - [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, - 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_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, - [90034] = 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(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_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), 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, - 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_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - 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, - [90218] = 7, - 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(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3295), 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, - [90291] = 8, - 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(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3295), 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, - [90366] = 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(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, - [90473] = 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(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_COMMA, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_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, - [90667] = 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(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, - 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, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - 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, - [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, - 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_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(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, - [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, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - 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, - [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, - 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_do, - [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, - 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), 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, - [92230] = 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, - [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, + ACTIONS(3225), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -243071,19 +231101,19 @@ static const uint16_t ts_small_parse_table[] = { [93470] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4160), 1, + ACTIONS(4078), 1, anon_sym_COMMA, - STATE(2337), 1, + STATE(2325), 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, + ACTIONS(3028), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3459), 49, + ACTIONS(3030), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -243133,113 +231163,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [93541] = 27, + [93541] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3630), 1, - anon_sym_LBRACK2, - ACTIONS(4165), 1, - anon_sym_PIPE, - ACTIONS(4169), 1, + ACTIONS(4081), 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, + STATE(2326), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, 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, + ACTIONS(3311), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3313), 49, 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, @@ -243281,21 +231225,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, - [93723] = 4, + [93612] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3018), 5, + ACTIONS(2964), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3020), 50, + ACTIONS(2966), 50, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LT, @@ -243346,22 +231291,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [93790] = 6, + [93679] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4205), 1, + ACTIONS(4084), 1, anon_sym_COMMA, - STATE(2281), 1, + STATE(2328), 1, aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3149), 4, + ACTIONS(3311), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3313), 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, + [93750] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4087), 1, + anon_sym_COMMA, + STATE(2269), 1, + aux_sym_keywords_repeat1, + 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(3151), 49, + ACTIONS(3403), 49, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -243411,535 +231421,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [93861] = 4, + [93821] = 6, 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, + ACTIONS(4089), 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, - [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, + STATE(2330), 1, aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3457), 5, + ACTIONS(3028), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3459), 48, + ACTIONS(3030), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -243988,300 +231486,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [94484] = 4, + [93892] = 27, ACTIONS(5), 1, sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4094), 1, + anon_sym_PIPE, + ACTIONS(4098), 1, + anon_sym_COMMA, + ACTIONS(4104), 1, + anon_sym_when, + ACTIONS(4106), 1, + anon_sym_COLON_COLON, + ACTIONS(4108), 1, + anon_sym_EQ_GT, + ACTIONS(4110), 1, + anon_sym_EQ, + ACTIONS(4120), 1, + anon_sym_in, + ACTIONS(4122), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4124), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(4132), 1, + sym__not_in, + STATE(2652), 1, + aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3311), 4, + ACTIONS(3331), 2, 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, - anon_sym_PIPE, + ACTIONS(4096), 2, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, + anon_sym_STAR, + ACTIONS(4100), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4102), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_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, - [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, + ACTIONS(3333), 3, anon_sym_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_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_do, + ACTIONS(4112), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4114), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, + ACTIONS(4092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4116), 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(4126), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4118), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -244291,1391 +231572,21 @@ 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, - [94823] = 25, + [94005] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3544), 1, - sym__newline_before_do, - ACTIONS(3979), 1, - anon_sym_DOT, - ACTIONS(3981), 1, + ACTIONS(3375), 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(3026), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3028), 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, - [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, + ACTIONS(3995), 1, anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3191), 3, + ACTIONS(3227), 3, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3193), 50, + ACTIONS(3229), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -245726,21 +231637,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_do, - [96367] = 5, + [94076] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4237), 1, - aux_sym_sigil_token3, + STATE(2677), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 5, + ACTIONS(2924), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 49, + ACTIONS(2926), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -245790,486 +231701,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + [94145] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3530), 4, + ACTIONS(3059), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3532), 51, + ACTIONS(3061), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -246321,24 +231764,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [97026] = 4, + [94212] = 5, ACTIONS(5), 1, sym_comment, + STATE(2887), 1, + sym_do_block, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3480), 4, + ACTIONS(2916), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3482), 51, + ACTIONS(2918), 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, @@ -246383,14 +231828,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - anon_sym_end, - [97093] = 6, + [94281] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4205), 1, + STATE(2893), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2916), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2918), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, - STATE(2341), 1, - aux_sym_keywords_repeat1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [94350] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3112), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2940), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2942), 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, + [94419] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -246399,7 +231967,2406 @@ static const uint16_t ts_small_parse_table[] = { sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3221), 49, + ACTIONS(3221), 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, + [94486] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(2842), 1, + sym_do_block, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2916), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2918), 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, + [94555] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2952), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2954), 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, + [94622] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3071), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3073), 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, + [94689] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3075), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3077), 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, + [94756] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3079), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3081), 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, + [94823] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3083), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3085), 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, + [94890] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3087), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3089), 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, + [94957] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4076), 1, + anon_sym_COMMA, + STATE(2326), 1, + aux_sym_keywords_repeat1, + 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_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, + [95028] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3550), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3917), 1, + anon_sym_PIPE, + ACTIONS(3927), 1, + anon_sym_when, + ACTIONS(3929), 1, + anon_sym_COLON_COLON, + ACTIONS(3931), 1, + anon_sym_EQ_GT, + ACTIONS(3933), 1, + anon_sym_EQ, + ACTIONS(3943), 1, + anon_sym_in, + ACTIONS(3945), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3947), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3951), 1, + anon_sym_STAR_STAR, + ACTIONS(3953), 1, + sym__not_in, + ACTIONS(3919), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3925), 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(3935), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3937), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3915), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3552), 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(3939), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3949), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3941), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [95137] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2581), 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(2583), 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, + [95204] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2545), 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(2547), 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, + [95271] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3095), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3097), 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, + [95338] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3099), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3101), 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, + [95405] = 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, + [95472] = 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, + [95539] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4134), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [95608] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4136), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [95677] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4138), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [95746] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4140), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [95815] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4142), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [95884] = 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, + [95951] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4144), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [96020] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4146), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [96089] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4148), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [96158] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3123), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3125), 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, + [96229] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4150), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [96298] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3959), 1, + anon_sym_PIPE, + ACTIONS(3969), 1, + anon_sym_when, + ACTIONS(3971), 1, + anon_sym_COLON_COLON, + ACTIONS(3973), 1, + anon_sym_EQ_GT, + ACTIONS(3975), 1, + anon_sym_EQ, + ACTIONS(3985), 1, + anon_sym_in, + ACTIONS(3987), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3989), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3993), 1, + anon_sym_STAR_STAR, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3997), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3554), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3961), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3967), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3977), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3979), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3957), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3556), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3981), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3991), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3983), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [96407] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [96474] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4152), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [96543] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4154), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [96612] = 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(3231), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [96681] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4158), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [96750] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4160), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [96819] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4162), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [96888] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4164), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [96957] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4166), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [97026] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4087), 1, + anon_sym_COMMA, + STATE(2329), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3391), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3393), 49, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -246449,18 +234416,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, + [97097] = 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), 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, [97164] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3415), 4, + ACTIONS(3143), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3417), 51, + ACTIONS(3145), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -246512,18 +234542,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [97231] = 4, + [97231] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4168), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [97300] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4170), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [97369] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3411), 4, + ACTIONS(3147), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3413), 51, + ACTIONS(3149), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -246575,18 +234733,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [97298] = 4, + [97436] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3345), 4, + ACTIONS(3151), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3347), 51, + ACTIONS(3153), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -246638,18 +234796,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [97365] = 4, + [97503] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3315), 4, + ACTIONS(3155), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3317), 51, + ACTIONS(3157), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -246701,18 +234859,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [97432] = 4, + [97570] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3110), 4, + ACTIONS(3159), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3112), 51, + ACTIONS(3161), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -246764,18 +234922,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [97499] = 4, + [97637] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3277), 4, + ACTIONS(3163), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3279), 51, + ACTIONS(3165), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -246827,18 +234985,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [97566] = 4, + [97704] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3273), 4, + ACTIONS(3167), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3275), 51, + ACTIONS(3169), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -246890,18 +235048,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [97633] = 4, + [97771] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3259), 4, + ACTIONS(3171), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3261), 51, + ACTIONS(3173), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -246953,18 +235111,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [97700] = 4, + [97838] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3253), 4, + ACTIONS(3175), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3255), 51, + ACTIONS(3177), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -247016,18 +235174,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [97767] = 4, + [97905] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3245), 4, + ACTIONS(3179), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3247), 51, + ACTIONS(3181), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -247079,18 +235237,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [97834] = 4, + [97972] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3241), 4, + ACTIONS(3183), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3243), 51, + ACTIONS(3185), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -247142,18 +235300,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [97901] = 4, + [98039] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 4, + ACTIONS(3187), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 51, + ACTIONS(3189), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -247205,18 +235363,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [97968] = 4, + [98106] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 4, + ACTIONS(3191), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3231), 51, + ACTIONS(3193), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -247268,18 +235426,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [98035] = 4, + [98173] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3145), 4, + ACTIONS(3195), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3147), 51, + ACTIONS(3197), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -247331,18 +235489,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [98102] = 4, + [98240] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3141), 4, + ACTIONS(3199), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3143), 51, + ACTIONS(3201), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -247394,18 +235552,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [98169] = 4, + [98307] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3215), 4, + ACTIONS(3203), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3217), 51, + ACTIONS(3205), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -247457,7 +235615,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [98236] = 4, + [98374] = 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), 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, + [98441] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -247520,277 +235741,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [98303] = 4, + [98508] = 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, + ACTIONS(3225), 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, @@ -247836,20 +235804,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [98640] = 5, + [98575] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3588), 1, + ACTIONS(3456), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -247900,20 +235868,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [98709] = 5, + [98644] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(3460), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -247964,20 +235932,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [98778] = 5, + [98713] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3636), 1, + ACTIONS(3464), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -248028,20 +235996,104 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [98847] = 5, + [98782] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(3028), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(3917), 1, + anon_sym_PIPE, + ACTIONS(3927), 1, + anon_sym_when, + ACTIONS(3929), 1, + anon_sym_COLON_COLON, + ACTIONS(3931), 1, + anon_sym_EQ_GT, + ACTIONS(3933), 1, + anon_sym_EQ, + ACTIONS(3943), 1, + anon_sym_in, + ACTIONS(3945), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3947), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3951), 1, + anon_sym_STAR_STAR, + ACTIONS(3953), 1, + sym__not_in, + ACTIONS(3919), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3923), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3925), 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(3935), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3937), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3915), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3030), 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(3939), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3949), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3941), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [98891] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3466), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -248092,20 +236144,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [98916] = 5, + [98960] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3586), 1, + ACTIONS(3468), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -248156,20 +236208,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [98985] = 5, + [99029] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3584), 1, + ACTIONS(3514), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -248220,20 +236272,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [99054] = 5, + [99098] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3516), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -248284,20 +236336,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [99123] = 5, + [99167] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3576), 1, + ACTIONS(3518), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -248348,7 +236400,841 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [99192] = 5, + [99236] = 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(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [99305] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3522), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [99374] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3524), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [99443] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LPAREN, + STATE(3102), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2890), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2892), 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, + [99514] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3526), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [99583] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3528), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [99652] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LPAREN, + STATE(3103), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2890), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2892), 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, + [99723] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3530), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [99792] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LPAREN, + STATE(3105), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2890), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2892), 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, + [99863] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3532), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [99932] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [100001] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3536), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [100070] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2565), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2567), 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, + [100137] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(3538), 1, @@ -248356,12 +237242,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -248412,85 +237298,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [99261] = 6, + [100206] = 5, 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, + ACTIONS(3540), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -248541,477 +237362,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + [100275] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(3542), 1, @@ -249019,12 +237370,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -249075,273 +237426,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [99997] = 5, + [100344] = 4, 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, + ACTIONS(3255), 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), 52, + ACTIONS(3257), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -249394,17 +237489,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [100340] = 4, + [100411] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3303), 2, + ACTIONS(3251), 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), 52, + ACTIONS(3253), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -249457,17 +237552,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [100407] = 4, + [100478] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3285), 2, + ACTIONS(3107), 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), 52, + ACTIONS(3109), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -249520,17 +237615,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [100474] = 4, + [100545] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3289), 2, + ACTIONS(3103), 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, + ACTIONS(3105), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -249583,18 +237678,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [100541] = 4, + [100612] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3311), 4, + ACTIONS(3059), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3313), 51, + ACTIONS(3061), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -249646,18 +237741,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [100608] = 4, + [100679] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3331), 4, + ACTIONS(3219), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3333), 51, + ACTIONS(3221), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -249709,18 +237804,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [100675] = 4, + [100746] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3335), 4, + ACTIONS(3071), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3337), 51, + ACTIONS(3073), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -249772,18 +237867,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [100742] = 4, + [100813] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3399), 4, + ACTIONS(3075), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3401), 51, + ACTIONS(3077), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -249835,18 +237930,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [100809] = 4, + [100880] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3441), 4, + ACTIONS(3079), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3443), 51, + ACTIONS(3081), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -249898,18 +237993,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [100876] = 4, + [100947] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3445), 4, + ACTIONS(3083), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3447), 51, + ACTIONS(3085), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -249961,18 +238056,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [100943] = 4, + [101014] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3500), 4, + ACTIONS(3087), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3502), 51, + ACTIONS(3089), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -250024,18 +238119,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101010] = 4, + [101081] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3522), 4, + ACTIONS(3095), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3524), 51, + ACTIONS(3097), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -250087,18 +238182,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101077] = 4, + [101148] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3526), 4, + ACTIONS(3099), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3528), 51, + ACTIONS(3101), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -250150,18 +238245,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101144] = 4, + [101215] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3530), 4, + ACTIONS(3127), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3532), 51, + ACTIONS(3129), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -250213,18 +238308,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101211] = 4, + [101282] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3480), 4, + ACTIONS(3131), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3482), 51, + ACTIONS(3133), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -250276,81 +238371,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + [101349] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3415), 4, + ACTIONS(3135), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3417), 51, + ACTIONS(3137), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -250402,22 +238434,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101412] = 6, + [101416] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4253), 1, + ACTIONS(4174), 1, anon_sym_COMMA, - STATE(2337), 1, + STATE(2325), 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, + ACTIONS(3035), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3508), 49, + ACTIONS(3037), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -250467,18 +238499,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [101483] = 4, + [101487] = 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, + ACTIONS(3008), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3032), 51, + ACTIONS(3010), 51, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, @@ -250530,18 +238562,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [101550] = 4, + [101554] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3411), 4, + ACTIONS(3139), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3413), 51, + ACTIONS(3141), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -250593,18 +238625,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101617] = 4, + [101621] = 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(2573), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2649), 51, + ACTIONS(2575), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -250656,18 +238688,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [101684] = 4, + [101688] = 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, + ACTIONS(2581), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2613), 51, + ACTIONS(2583), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -250719,18 +238751,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [101751] = 4, + [101755] = 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, + ACTIONS(2545), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2633), 51, + ACTIONS(2547), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -250782,18 +238814,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [101818] = 4, + [101822] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2651), 4, + ACTIONS(2565), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2653), 51, + ACTIONS(2567), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -250845,18 +238877,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101885] = 4, + [101889] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 4, + ACTIONS(2573), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2649), 51, + ACTIONS(2575), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -250908,18 +238940,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [101952] = 4, + [101956] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2611), 4, + ACTIONS(2581), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2613), 51, + ACTIONS(2583), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -250971,18 +239003,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102019] = 4, + [102023] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 4, + ACTIONS(2545), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2633), 51, + ACTIONS(2547), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -251034,18 +239066,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102086] = 4, + [102090] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2651), 4, + ACTIONS(2565), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2653), 51, + ACTIONS(2567), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -251097,18 +239129,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [102153] = 4, + [102157] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 4, + ACTIONS(2573), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2649), 51, + ACTIONS(2575), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -251160,18 +239192,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [102220] = 4, + [102224] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2611), 4, + ACTIONS(2581), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2613), 51, + ACTIONS(2583), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -251223,18 +239255,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [102287] = 4, + [102291] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 4, + ACTIONS(2545), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2633), 51, + ACTIONS(2547), 51, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -251286,18 +239318,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, anon_sym_end, - [102354] = 4, + [102358] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3345), 4, + ACTIONS(3143), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3347), 51, + ACTIONS(3145), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -251349,20 +239381,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102421] = 5, + [102425] = 4, ACTIONS(5), 1, sym_comment, - STATE(3123), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3147), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3149), 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, + [102492] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3151), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3153), 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, + [102559] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3098), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2978), 3, + ACTIONS(2902), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2980), 50, + ACTIONS(2904), 50, anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, @@ -251413,18 +239571,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102490] = 4, + [102628] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3315), 4, + ACTIONS(3155), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3317), 51, + ACTIONS(3157), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -251476,18 +239634,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102557] = 4, + [102695] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3110), 4, + ACTIONS(3159), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3112), 51, + ACTIONS(3161), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -251539,18 +239697,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102624] = 4, + [102762] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3277), 4, + ACTIONS(3163), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3279), 51, + ACTIONS(3165), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -251602,18 +239760,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102691] = 4, + [102829] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3273), 4, + ACTIONS(3167), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3275), 51, + ACTIONS(3169), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -251665,20 +239823,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102758] = 5, + [102896] = 5, ACTIONS(5), 1, sym_comment, - STATE(3061), 1, + STATE(3048), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2984), 3, + ACTIONS(2896), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2986), 50, + ACTIONS(2898), 50, anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, @@ -251729,18 +239887,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102827] = 4, + [102965] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3259), 4, + ACTIONS(3171), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3261), 51, + ACTIONS(3173), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -251792,18 +239950,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102894] = 4, + [103032] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3253), 4, + ACTIONS(3175), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3255), 51, + ACTIONS(3177), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -251855,18 +240013,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [102961] = 4, + [103099] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3245), 4, + ACTIONS(3179), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3247), 51, + ACTIONS(3181), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -251918,18 +240076,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103028] = 4, + [103166] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3241), 4, + ACTIONS(3183), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3243), 51, + ACTIONS(3185), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -251981,18 +240139,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103095] = 4, + [103233] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3233), 4, + ACTIONS(3187), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3235), 51, + ACTIONS(3189), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -252044,18 +240202,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103162] = 4, + [103300] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3229), 4, + ACTIONS(3191), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3231), 51, + ACTIONS(3193), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -252107,18 +240265,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103229] = 4, + [103367] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3145), 4, + ACTIONS(3195), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3147), 51, + ACTIONS(3197), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -252170,18 +240328,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103296] = 4, + [103434] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3141), 4, + ACTIONS(3199), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3143), 51, + ACTIONS(3201), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -252233,18 +240391,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103363] = 4, + [103501] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3215), 4, + ACTIONS(3203), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3217), 51, + ACTIONS(3205), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -252296,7 +240454,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103430] = 4, + [103568] = 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), 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, + [103635] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -252359,278 +240580,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103497] = 4, + [103702] = 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, + ACTIONS(3225), 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, @@ -252675,20 +240643,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103834] = 5, + [103769] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3588), 1, + ACTIONS(3456), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -252739,20 +240707,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103903] = 5, + [103838] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3634), 1, + ACTIONS(3460), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -252803,20 +240771,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [103972] = 5, + [103907] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3636), 1, + ACTIONS(3464), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -252867,20 +240835,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104041] = 5, + [103976] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3638), 1, + ACTIONS(3466), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -252931,20 +240899,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104110] = 5, + [104045] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3586), 1, + ACTIONS(3468), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -252995,20 +240963,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104179] = 5, + [104114] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3584), 1, + ACTIONS(3514), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -253059,20 +241027,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104248] = 5, + [104183] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3578), 1, + ACTIONS(3516), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -253123,20 +241091,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104317] = 5, + [104252] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3576), 1, + ACTIONS(3518), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -253187,7 +241155,583 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104386] = 5, + [104321] = 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(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [104390] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3522), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [104459] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3524), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [104528] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3526), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [104597] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3528), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [104666] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3530), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [104735] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3532), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [104804] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3534), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [104873] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3536), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [104942] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(3538), 1, @@ -253195,12 +241739,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -253251,20 +241795,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [104455] = 5, + [105011] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3574), 1, + ACTIONS(3540), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -253315,263 +241859,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + [105080] = 5, ACTIONS(5), 1, sym_comment, ACTIONS(3542), 1, @@ -253579,12 +241867,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 4, + ACTIONS(3231), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -253635,275 +241923,19 @@ static const uint16_t ts_small_parse_table[] = { 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, + [105149] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 5, + ACTIONS(2545), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2649), 50, + ACTIONS(2547), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -253954,19 +241986,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [105212] = 4, + [105216] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2651), 5, + ACTIONS(2581), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2653), 50, + ACTIONS(2583), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -254017,18 +242049,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [105279] = 4, + [105283] = 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, + ACTIONS(2565), 3, sym__not_in, aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2653), 51, + ACTIONS(2567), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -254080,18 +242112,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [105346] = 4, + [105350] = 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(2573), 3, sym__not_in, aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2649), 51, + ACTIONS(2575), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -254143,17 +242175,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [105413] = 4, + [105417] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3078), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2573), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2575), 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, + [105484] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2565), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2567), 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, + [105551] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2952), 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, + ACTIONS(2954), 52, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -254206,25 +242364,1303 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [105480] = 4, + [105618] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2581), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2583), 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, + [105685] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2545), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2547), 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, + [105752] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4176), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [105821] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4178), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [105890] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4180), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [105959] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4182), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [106028] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4184), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [106097] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4186), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [106166] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4188), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [106235] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4190), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [106304] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4192), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [106373] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4194), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [106442] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4196), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [106511] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4198), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [106580] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4200), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [106649] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4202), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [106718] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4204), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [106787] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4206), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [106856] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4208), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [106925] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4210), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [106994] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2611), 5, + ACTIONS(2980), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2613), 50, + ACTIONS(2982), 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, @@ -254269,1365 +243705,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [105547] = 4, + [107061] = 6, 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, + ACTIONS(4212), 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, - [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, + STATE(2522), 1, aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3457), 4, + ACTIONS(3028), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3459), 49, + ACTIONS(3030), 49, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -255677,19 +243770,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [107065] = 5, + [107132] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4297), 1, + ACTIONS(4215), 1, aux_sym_sigil_token3, - ACTIONS(3223), 2, + ACTIONS(3231), 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, + ACTIONS(3233), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -255741,82 +243834,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [107134] = 5, + [107201] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4299), 1, + ACTIONS(4217), 1, aux_sym_sigil_token3, - ACTIONS(3223), 2, + ACTIONS(3231), 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, + ACTIONS(3233), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -255871,14 +243901,14 @@ static const uint16_t ts_small_parse_table[] = { [107270] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2996), 2, + ACTIONS(2992), 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, + ACTIONS(2994), 52, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -255934,14 +243964,14 @@ static const uint16_t ts_small_parse_table[] = { [107337] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2990), 2, + ACTIONS(2988), 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, + ACTIONS(2990), 52, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -255997,14 +244027,15 @@ static const uint16_t ts_small_parse_table[] = { [107404] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3237), 2, + ACTIONS(2980), 2, sym__not_in, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3239), 52, + ACTIONS(2982), 52, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -256013,7 +244044,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, @@ -256060,14 +244090,14 @@ static const uint16_t ts_small_parse_table[] = { [107471] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3496), 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(3498), 52, + ACTIONS(3225), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -256121,132 +244151,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -256309,17 +244213,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [107739] = 4, + [107605] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3215), 2, + 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(3217), 52, + 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, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_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(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), 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(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), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -256375,16 +244405,18 @@ static const uint16_t ts_small_parse_table[] = { [107806] = 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(3311), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3313), 51, + ACTIONS(3197), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -256432,9 +244464,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_do, [107873] = 4, ACTIONS(5), 1, sym_comment, @@ -256442,11 +244472,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3331), 3, + ACTIONS(3059), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3333), 51, + ACTIONS(3061), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -256505,11 +244535,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3335), 3, + ACTIONS(3219), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3337), 51, + ACTIONS(3221), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -256568,11 +244598,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3399), 3, + ACTIONS(3071), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3401), 51, + ACTIONS(3073), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -256631,11 +244661,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3441), 3, + ACTIONS(3075), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3443), 51, + ACTIONS(3077), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -256694,11 +244724,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3445), 3, + ACTIONS(3079), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3447), 51, + ACTIONS(3081), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -256757,11 +244787,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3500), 3, + ACTIONS(3083), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3502), 51, + ACTIONS(3085), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -256820,11 +244850,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3522), 3, + ACTIONS(3087), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3524), 51, + ACTIONS(3089), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -256883,11 +244913,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3526), 3, + ACTIONS(3095), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3528), 51, + ACTIONS(3097), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -256946,11 +244976,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3530), 3, + ACTIONS(3099), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3532), 51, + ACTIONS(3101), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -257009,11 +245039,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3480), 3, + ACTIONS(3127), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3482), 51, + ACTIONS(3129), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -257072,11 +245102,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3415), 3, + ACTIONS(3131), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3417), 51, + ACTIONS(3133), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -257135,11 +245165,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3411), 3, + ACTIONS(3135), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3413), 51, + ACTIONS(3137), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -257198,11 +245228,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3345), 3, + ACTIONS(3139), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3347), 51, + ACTIONS(3141), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -257261,11 +245291,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3315), 3, + ACTIONS(3143), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3317), 51, + ACTIONS(3145), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -257324,11 +245354,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3110), 3, + ACTIONS(3147), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3112), 51, + ACTIONS(3149), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -257383,18 +245413,16 @@ static const uint16_t ts_small_parse_table[] = { [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, + ACTIONS(3151), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3153), 51, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -257442,18 +245470,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, [108945] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3145), 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(3147), 52, + ACTIONS(3193), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -257509,14 +245539,14 @@ static const uint16_t ts_small_parse_table[] = { [109012] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3229), 2, + 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(3231), 52, + ACTIONS(3189), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -257572,14 +245602,14 @@ static const uint16_t ts_small_parse_table[] = { [109079] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3233), 2, + 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(3235), 52, + ACTIONS(3185), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -257635,14 +245665,14 @@ static const uint16_t ts_small_parse_table[] = { [109146] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3241), 2, + 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(3243), 52, + ACTIONS(3181), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -257698,14 +245728,14 @@ static const uint16_t ts_small_parse_table[] = { [109213] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3245), 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(3247), 52, + ACTIONS(3177), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -257761,14 +245791,14 @@ static const uint16_t ts_small_parse_table[] = { [109280] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3253), 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(3255), 52, + ACTIONS(3173), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -257824,14 +245854,14 @@ static const uint16_t ts_small_parse_table[] = { [109347] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3259), 2, + 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(3261), 52, + ACTIONS(3169), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -257887,14 +245917,14 @@ static const uint16_t ts_small_parse_table[] = { [109414] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3273), 2, + 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(3275), 52, + ACTIONS(3165), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -257950,14 +245980,14 @@ static const uint16_t ts_small_parse_table[] = { [109481] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3277), 2, + 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(3279), 52, + ACTIONS(3161), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -258013,16 +246043,18 @@ static const uint16_t ts_small_parse_table[] = { [109548] = 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(3277), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3279), 51, + ACTIONS(3157), 52, anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -258070,9 +246102,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_do, [109615] = 4, ACTIONS(5), 1, sym_comment, @@ -258080,11 +246110,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3273), 3, + ACTIONS(3155), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3275), 51, + ACTIONS(3157), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -258143,11 +246173,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3259), 3, + ACTIONS(3159), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3261), 51, + ACTIONS(3161), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -258206,11 +246236,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3253), 3, + ACTIONS(3163), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3255), 51, + ACTIONS(3165), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -258269,11 +246299,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3245), 3, + ACTIONS(3167), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3247), 51, + ACTIONS(3169), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -258332,11 +246362,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3241), 3, + ACTIONS(3171), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3243), 51, + ACTIONS(3173), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -258395,11 +246425,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3233), 3, + ACTIONS(3175), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3235), 51, + ACTIONS(3177), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -258458,11 +246488,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3229), 3, + ACTIONS(3179), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3231), 51, + ACTIONS(3181), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -258521,11 +246551,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3145), 3, + ACTIONS(3183), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3147), 51, + ACTIONS(3185), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -258584,11 +246614,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3141), 3, + ACTIONS(3187), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3143), 51, + ACTIONS(3189), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -258643,23 +246673,21 @@ static const uint16_t ts_small_parse_table[] = { [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, + ACTIONS(3191), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + 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, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -258702,18 +246730,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, [110285] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3018), 2, + ACTIONS(2930), 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, + ACTIONS(2932), 52, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -258769,14 +246799,14 @@ static const uint16_t ts_small_parse_table[] = { [110352] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3094), 2, + ACTIONS(2920), 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, + ACTIONS(2922), 52, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -258832,21 +246862,23 @@ static const uint16_t ts_small_parse_table[] = { [110419] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2968), 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), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3217), 51, + ACTIONS(2970), 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, - aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -258889,9 +246921,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_do, [110486] = 4, ACTIONS(5), 1, sym_comment, @@ -258899,11 +246929,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3211), 3, + ACTIONS(3195), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3213), 51, + ACTIONS(3197), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -258962,11 +246992,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3468), 3, + ACTIONS(3199), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3470), 51, + ACTIONS(3201), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -259025,11 +247055,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3486), 3, + ACTIONS(3203), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3488), 51, + ACTIONS(3205), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -259088,11 +247118,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3496), 3, + ACTIONS(3207), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3498), 51, + ACTIONS(3209), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -259151,11 +247181,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3237), 3, + ACTIONS(3211), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3239), 51, + ACTIONS(3213), 51, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -259210,18 +247240,16 @@ static const uint16_t ts_small_parse_table[] = { [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, + ACTIONS(3223), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3225), 51, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -259269,18 +247297,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, [110888] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3315), 2, + ACTIONS(3151), 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, + ACTIONS(3153), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -259336,14 +247366,14 @@ static const uint16_t ts_small_parse_table[] = { [110955] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3345), 2, + ACTIONS(3147), 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, + ACTIONS(3149), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -259399,14 +247429,14 @@ static const uint16_t ts_small_parse_table[] = { [111022] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3411), 2, + 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(3413), 52, + ACTIONS(3145), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -259462,14 +247492,14 @@ static const uint16_t ts_small_parse_table[] = { [111089] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3415), 2, + ACTIONS(3139), 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, + ACTIONS(3141), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -259525,14 +247555,14 @@ static const uint16_t ts_small_parse_table[] = { [111156] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3480), 2, + 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(3482), 52, + ACTIONS(3137), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -259588,14 +247618,14 @@ static const uint16_t ts_small_parse_table[] = { [111223] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3530), 2, + 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(3532), 52, + ACTIONS(3133), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -259651,14 +247681,14 @@ static const uint16_t ts_small_parse_table[] = { [111290] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3526), 2, + 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(3528), 52, + ACTIONS(3129), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -259714,14 +247744,14 @@ static const uint16_t ts_small_parse_table[] = { [111357] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3522), 2, + ACTIONS(3099), 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, + ACTIONS(3101), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -259777,14 +247807,14 @@ static const uint16_t ts_small_parse_table[] = { [111424] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3500), 2, + ACTIONS(3095), 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, + ACTIONS(3097), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -259840,14 +247870,14 @@ static const uint16_t ts_small_parse_table[] = { [111491] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3445), 2, + ACTIONS(3087), 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, + ACTIONS(3089), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -259903,14 +247933,14 @@ static const uint16_t ts_small_parse_table[] = { [111558] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3441), 2, + ACTIONS(3083), 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, + ACTIONS(3085), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -259966,14 +247996,14 @@ static const uint16_t ts_small_parse_table[] = { [111625] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3399), 2, + ACTIONS(3079), 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, + ACTIONS(3081), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -260029,14 +248059,14 @@ static const uint16_t ts_small_parse_table[] = { [111692] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3335), 2, + ACTIONS(3075), 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, + ACTIONS(3077), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -260092,14 +248122,14 @@ static const uint16_t ts_small_parse_table[] = { [111759] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3331), 2, + ACTIONS(3071), 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, + ACTIONS(3073), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -260155,14 +248185,14 @@ static const uint16_t ts_small_parse_table[] = { [111826] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3311), 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(3313), 52, + ACTIONS(3221), 52, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -260215,20 +248245,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [111893] = 5, + [111893] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4301), 1, + ACTIONS(3059), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3061), 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, + [111960] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4219), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -260279,20 +248372,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [111962] = 5, + [112029] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4303), 1, + ACTIONS(4221), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -260343,20 +248436,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [112031] = 5, + [112098] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4305), 1, + ACTIONS(4223), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -260407,20 +248500,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [112100] = 5, + [112167] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4307), 1, + ACTIONS(4225), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -260471,20 +248564,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [112169] = 5, + [112236] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4309), 1, + ACTIONS(4227), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -260535,20 +248628,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [112238] = 5, + [112305] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4311), 1, + ACTIONS(4229), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -260599,20 +248692,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [112307] = 5, + [112374] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4313), 1, + ACTIONS(4231), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -260663,20 +248756,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [112376] = 5, + [112443] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4315), 1, + ACTIONS(4233), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -260727,20 +248820,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [112445] = 5, + [112512] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4317), 1, + ACTIONS(4235), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -260791,20 +248884,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [112514] = 5, + [112581] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4319), 1, + ACTIONS(4237), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -260855,20 +248948,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [112583] = 5, + [112650] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4321), 1, + ACTIONS(4239), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -260919,20 +249012,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [112652] = 5, + [112719] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4323), 1, + ACTIONS(4241), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -260983,20 +249076,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [112721] = 5, + [112788] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4325), 1, + ACTIONS(4243), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -261047,20 +249140,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [112790] = 5, + [112857] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4327), 1, + ACTIONS(4245), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -261111,20 +249204,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [112859] = 5, + [112926] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4329), 1, + ACTIONS(4247), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -261175,20 +249268,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [112928] = 5, + [112995] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4331), 1, + ACTIONS(4249), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -261239,20 +249332,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [112997] = 5, + [113064] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4333), 1, + ACTIONS(4251), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -261303,20 +249396,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [113066] = 5, + [113133] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4335), 1, + ACTIONS(4253), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -261367,20 +249460,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [113135] = 5, + [113202] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4337), 1, + ACTIONS(4255), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -261431,20 +249524,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [113204] = 5, + [113271] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4339), 1, + ACTIONS(4257), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 50, + ACTIONS(3233), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -261495,17 +249588,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [113273] = 4, + [113340] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3098), 2, + ACTIONS(2956), 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, + ACTIONS(2958), 52, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -261558,69 +249651,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -261628,12 +249658,12 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2611), 4, + ACTIONS(2545), 4, sym__newline_before_do, sym__not_in, aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2613), 50, + ACTIONS(2547), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -261687,19 +249717,17 @@ static const uint16_t ts_small_parse_table[] = { [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, + ACTIONS(2581), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2583), 50, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_RBRACK, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -261746,18 +249774,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, [113541] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3048), 2, + ACTIONS(2964), 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, + ACTIONS(2966), 52, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -261813,14 +249843,14 @@ static const uint16_t ts_small_parse_table[] = { [113608] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3044), 2, + ACTIONS(2912), 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, + ACTIONS(2914), 52, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, @@ -261873,1526 +249903,1721 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [113675] = 7, + [113675] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(647), 1, + ACTIONS(2908), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2910), 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, + [113742] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(560), 1, anon_sym_do, + ACTIONS(4259), 1, + sym__newline_before_do, + STATE(3971), 1, + sym_do_block, + ACTIONS(2902), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2904), 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, + [113815] = 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), 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, + [113882] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3662), 1, + anon_sym_PIPE, + ACTIONS(3670), 1, + anon_sym_when, + ACTIONS(3672), 1, + anon_sym_COLON_COLON, + ACTIONS(3674), 1, + anon_sym_EQ_GT, + ACTIONS(3676), 1, + anon_sym_EQ, + ACTIONS(3686), 1, + anon_sym_in, + ACTIONS(3688), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3702), 1, + sym__not_in, + ACTIONS(4261), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3668), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3678), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3680), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3660), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3682), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4263), 6, + anon_sym_SEMI, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3684), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [113991] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(560), 1, + anon_sym_do, + ACTIONS(4265), 1, + sym__newline_before_do, + STATE(3972), 1, + sym_do_block, + ACTIONS(2896), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2898), 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, + [114064] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2573), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2575), 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, + [114131] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2565), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2567), 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, + [114198] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3375), 1, + anon_sym_LBRACK2, + ACTIONS(3959), 1, + anon_sym_PIPE, + ACTIONS(3969), 1, + anon_sym_when, + ACTIONS(3971), 1, + anon_sym_COLON_COLON, + ACTIONS(3973), 1, + anon_sym_EQ_GT, + ACTIONS(3975), 1, + anon_sym_EQ, + ACTIONS(3985), 1, + anon_sym_in, + ACTIONS(3987), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3989), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3993), 1, + anon_sym_STAR_STAR, + ACTIONS(3995), 1, + anon_sym_DOT, + ACTIONS(3997), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3028), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(3961), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3965), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3967), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3977), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3979), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3957), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3030), 5, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(3981), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3991), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3983), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [114307] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4269), 1, + anon_sym_PIPE, + ACTIONS(4273), 1, + anon_sym_COMMA, + ACTIONS(4279), 1, + anon_sym_when, + ACTIONS(4281), 1, + anon_sym_COLON_COLON, + ACTIONS(4283), 1, + anon_sym_EQ_GT, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(4295), 1, + anon_sym_in, + ACTIONS(4297), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4299), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(4307), 1, + sym__not_in, + STATE(2226), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3331), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4271), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4277), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3333), 3, + anon_sym_SEMI, + anon_sym_do, + anon_sym_end, + ACTIONS(4287), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4289), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4267), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4291), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4301), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4293), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [114420] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3662), 1, + anon_sym_PIPE, + ACTIONS(3670), 1, + anon_sym_when, + ACTIONS(3672), 1, + anon_sym_COLON_COLON, + ACTIONS(3674), 1, + anon_sym_EQ_GT, + ACTIONS(3676), 1, + anon_sym_EQ, + ACTIONS(3686), 1, + anon_sym_in, + ACTIONS(3688), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(3690), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3694), 1, + anon_sym_STAR_STAR, + ACTIONS(3696), 1, + anon_sym_DOT, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(3702), 1, + sym__not_in, + ACTIONS(4309), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3664), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3666), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3668), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3678), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(3680), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3660), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3682), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3692), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4311), 6, + anon_sym_SEMI, + anon_sym_after, + anon_sym_catch, + anon_sym_else, + anon_sym_end, + anon_sym_rescue, + ACTIONS(3684), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [114529] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3000), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2996), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2998), 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, + [114598] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2908), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2910), 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, + [114665] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2912), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2914), 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, + [114732] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2964), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2966), 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, + [114799] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2956), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2958), 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, + [114866] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2968), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2970), 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, + [114933] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2920), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2922), 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, + [115000] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2930), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2932), 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, + [115067] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2980), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2982), 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, + [115134] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2988), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2990), 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, + [115201] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2992), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2994), 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, + [115268] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3006), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3002), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3004), 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, + [115337] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3331), 1, + sym__newline_before_do, + ACTIONS(4315), 1, + anon_sym_PIPE, + ACTIONS(4319), 1, + anon_sym_COMMA, + ACTIONS(4325), 1, + anon_sym_when, + ACTIONS(4327), 1, + anon_sym_COLON_COLON, + ACTIONS(4329), 1, + anon_sym_EQ_GT, + ACTIONS(4331), 1, + anon_sym_EQ, 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, + ACTIONS(4345), 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(4349), 1, 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, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, ACTIONS(4355), 1, + sym__not_in, + STATE(2439), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(4317), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4323), 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(3333), 3, + anon_sym_RPAREN, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4333), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4335), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4313), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4337), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4347), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4339), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [115450] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(617), 1, + anon_sym_do, + ACTIONS(4357), 1, + sym__newline_before_do, + STATE(3738), 1, + sym_do_block, + ACTIONS(2924), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2926), 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, + [115523] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(617), 1, + anon_sym_do, + ACTIONS(4359), 1, + sym__newline_before_do, + STATE(3759), 1, + sym_do_block, + ACTIONS(2916), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2918), 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, + [115596] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(617), 1, + anon_sym_do, 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(2990), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - ACTIONS(2992), 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, - [114462] = 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), 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, - [114529] = 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), 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, - [114596] = 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), 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, - [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, - 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, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [114864] = 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), 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_SEMI, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [115270] = 27, - ACTIONS(5), 1, - sym_comment, - 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, - STATE(2451), 1, - aux_sym__items_with_trailing_separator_repeat1, - 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(3353), 3, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_do, - 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, - [115383] = 7, - ACTIONS(5), 1, - sym_comment, - ACTIONS(592), 1, - anon_sym_do, - ACTIONS(4439), 1, - sym__newline_before_do, - STATE(3660), 1, + STATE(3758), 1, sym_do_block, - ACTIONS(3012), 2, + ACTIONS(2916), 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), 49, + ACTIONS(2918), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -263442,201 +251667,6 @@ static const uint16_t ts_small_parse_table[] = { 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(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(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, - [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, - anon_sym_LBRACK2, - 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, - [115602] = 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, [115669] = 4, ACTIONS(5), 1, sym_comment, @@ -263644,11 +251674,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3078), 3, + ACTIONS(2952), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3080), 51, + ACTIONS(2954), 51, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, @@ -263703,20 +251733,20 @@ static const uint16_t ts_small_parse_table[] = { [115736] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(617), 1, anon_sym_do, - ACTIONS(4445), 1, + ACTIONS(4363), 1, sym__newline_before_do, - STATE(3767), 1, + STATE(3755), 1, sym_do_block, - ACTIONS(3038), 2, + ACTIONS(2916), 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), 49, + ACTIONS(2918), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -263769,20 +251799,20 @@ static const uint16_t ts_small_parse_table[] = { [115809] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(617), 1, anon_sym_do, - ACTIONS(4447), 1, + ACTIONS(4365), 1, sym__newline_before_do, - STATE(3768), 1, + STATE(3756), 1, sym_do_block, - ACTIONS(3064), 2, + ACTIONS(2940), 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, + ACTIONS(2942), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -263838,13 +251868,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2996), 5, + ACTIONS(2988), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2998), 50, + ACTIONS(2990), 50, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LT, @@ -263898,17 +251928,17 @@ static const uint16_t ts_small_parse_table[] = { [115949] = 5, ACTIONS(5), 1, sym_comment, - STATE(2752), 1, + STATE(2749), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3012), 3, + ACTIONS(2916), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3014), 50, + ACTIONS(2918), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -263965,13 +251995,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3058), 5, + ACTIONS(2992), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3060), 50, + ACTIONS(2994), 50, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LT, @@ -264025,19 +252055,19 @@ static const uint16_t ts_small_parse_table[] = { [116085] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4449), 1, + ACTIONS(4367), 1, anon_sym_COMMA, - STATE(2533), 1, + STATE(2522), 1, aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3506), 4, + ACTIONS(3035), 4, sym__newline_before_do, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3508), 49, + ACTIONS(3037), 49, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -264090,17 +252120,17 @@ static const uint16_t ts_small_parse_table[] = { [116156] = 5, ACTIONS(5), 1, sym_comment, - STATE(2760), 1, + STATE(2741), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3038), 3, + ACTIONS(2924), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3040), 50, + ACTIONS(2926), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -264154,17 +252184,17 @@ static const uint16_t ts_small_parse_table[] = { [116225] = 5, ACTIONS(5), 1, sym_comment, - STATE(2755), 1, + STATE(2748), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3038), 3, + ACTIONS(2940), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3040), 50, + ACTIONS(2942), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -264218,78 +252248,78 @@ static const uint16_t ts_small_parse_table[] = { [116294] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3395), 1, + ACTIONS(3375), 1, anon_sym_LBRACK2, - ACTIONS(4041), 1, + ACTIONS(3959), 1, anon_sym_PIPE, - ACTIONS(4051), 1, + ACTIONS(3969), 1, anon_sym_when, - ACTIONS(4053), 1, + ACTIONS(3971), 1, anon_sym_COLON_COLON, - ACTIONS(4055), 1, + ACTIONS(3973), 1, anon_sym_EQ_GT, - ACTIONS(4057), 1, + ACTIONS(3975), 1, anon_sym_EQ, - ACTIONS(4067), 1, + ACTIONS(3985), 1, anon_sym_in, - ACTIONS(4069), 1, + ACTIONS(3987), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4071), 1, + ACTIONS(3989), 1, anon_sym_SLASH_SLASH, - ACTIONS(4075), 1, + ACTIONS(3993), 1, anon_sym_STAR_STAR, - ACTIONS(4077), 1, + ACTIONS(3995), 1, anon_sym_DOT, - ACTIONS(4079), 1, + ACTIONS(3997), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3544), 2, + ACTIONS(3550), 2, sym__newline_before_do, aux_sym__terminator_token1, - ACTIONS(4043), 2, + ACTIONS(3961), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4047), 2, + ACTIONS(3965), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4049), 2, + ACTIONS(3967), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4059), 3, + ACTIONS(3977), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4061), 3, + ACTIONS(3979), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4039), 4, + ACTIONS(3957), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3546), 5, + ACTIONS(3552), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_do, - ACTIONS(4063), 5, + ACTIONS(3981), 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, + ACTIONS(3991), 6, anon_sym_PLUS_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, + ACTIONS(3983), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -264302,22 +252332,22 @@ static const uint16_t ts_small_parse_table[] = { [116403] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3245), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3159), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3247), 51, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(3161), 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, @@ -264359,27 +252389,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, [116469] = 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(3098), 3, + ACTIONS(3255), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3100), 50, - anon_sym_LPAREN, + ACTIONS(3257), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, anon_sym_COMMA, - anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -264430,11 +252460,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3265), 3, + ACTIONS(3115), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3267), 50, + ACTIONS(3117), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -264492,11 +252522,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3191), 3, + ACTIONS(3119), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3193), 50, + ACTIONS(3121), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -264547,101 +252577,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [116667] = 25, - ACTIONS(5), 1, - sym_comment, - 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(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, - 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, - [116775] = 4, + [116667] = 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, + ACTIONS(3123), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3193), 50, + ACTIONS(3125), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -264692,82 +252639,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [116841] = 6, + [116733] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(4433), 1, - anon_sym_DOT, - ACTIONS(4435), 1, - anon_sym_LBRACK2, - ACTIONS(3191), 2, + ACTIONS(3554), 1, sym__newline_before_do, + ACTIONS(4315), 1, + anon_sym_PIPE, + ACTIONS(4325), 1, + anon_sym_when, + ACTIONS(4327), 1, + anon_sym_COLON_COLON, + ACTIONS(4329), 1, + anon_sym_EQ_GT, + ACTIONS(4331), 1, + anon_sym_EQ, + ACTIONS(4341), 1, + anon_sym_in, + ACTIONS(4343), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4345), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4349), 1, + anon_sym_STAR_STAR, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(4355), 1, sym__not_in, + ACTIONS(4317), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4323), 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(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, + ACTIONS(4333), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, + ACTIONS(4335), 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, + ACTIONS(3556), 4, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_do, - [116911] = 4, + ACTIONS(4313), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4337), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4347), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4339), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [116841] = 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, + ACTIONS(3123), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3193), 50, + ACTIONS(3125), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -264818,6 +252784,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, + [116907] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(3123), 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(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_do, [116977] = 4, ACTIONS(5), 1, sym_comment, @@ -264825,11 +252855,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3249), 3, + ACTIONS(3123), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3251), 50, + ACTIONS(3125), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -264880,22 +252910,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [117043] = 6, + [117043] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4451), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2565), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2567), 50, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, anon_sym_COMMA, - STATE(2677), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + anon_sym_do, + [117109] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4369), 1, + anon_sym_COMMA, + STATE(2666), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3134), 3, + ACTIONS(3311), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3136), 48, + ACTIONS(3313), 48, anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, @@ -264944,22 +253036,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [117113] = 6, + [117179] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4454), 1, + ACTIONS(4372), 1, anon_sym_COMMA, - STATE(2677), 1, + STATE(2666), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3149), 3, + ACTIONS(3401), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3151), 48, + ACTIONS(3403), 48, anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, @@ -265008,84 +253100,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [117183] = 29, + [117249] = 29, ACTIONS(5), 1, sym_comment, ACTIONS(9), 1, aux_sym__terminator_token1, - ACTIONS(1729), 1, + ACTIONS(1639), 1, ts_builtin_sym_end, - ACTIONS(4456), 1, + ACTIONS(4374), 1, anon_sym_SEMI, - ACTIONS(4460), 1, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(4468), 1, + ACTIONS(4386), 1, anon_sym_when, - ACTIONS(4470), 1, + ACTIONS(4388), 1, anon_sym_COLON_COLON, - ACTIONS(4472), 1, + ACTIONS(4390), 1, anon_sym_EQ_GT, - ACTIONS(4474), 1, + ACTIONS(4392), 1, anon_sym_EQ, - ACTIONS(4484), 1, + ACTIONS(4402), 1, anon_sym_in, - ACTIONS(4486), 1, + ACTIONS(4404), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4488), 1, + ACTIONS(4406), 1, anon_sym_SLASH_SLASH, - ACTIONS(4492), 1, + ACTIONS(4410), 1, anon_sym_STAR_STAR, - ACTIONS(4494), 1, + ACTIONS(4412), 1, anon_sym_DOT, - ACTIONS(4496), 1, + ACTIONS(4414), 1, anon_sym_LBRACK2, - ACTIONS(4498), 1, + ACTIONS(4416), 1, sym__not_in, - STATE(360), 1, + STATE(407), 1, sym__terminator, - STATE(1029), 1, + STATE(1016), 1, aux_sym__terminator_repeat1, - STATE(5013), 1, + STATE(5001), 1, aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4462), 2, + ACTIONS(4380), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4464), 2, + ACTIONS(4382), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4466), 2, + ACTIONS(4384), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4476), 3, + ACTIONS(4394), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4478), 3, + ACTIONS(4396), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4458), 4, + ACTIONS(4376), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4480), 5, + ACTIONS(4398), 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, + ACTIONS(4408), 6, anon_sym_PLUS_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, + ACTIONS(4400), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -265095,22 +253187,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [117299] = 6, + [117365] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4454), 1, + ACTIONS(4372), 1, anon_sym_COMMA, - STATE(2678), 1, + STATE(2667), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3219), 3, + ACTIONS(3391), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3221), 48, + ACTIONS(3393), 48, anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, @@ -265159,22 +253251,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [117369] = 6, + [117435] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3995), 1, + ACTIONS(3913), 1, anon_sym_LPAREN, - STATE(2226), 1, + STATE(2215), 1, sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2972), 4, + ACTIONS(2890), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2974), 48, + ACTIONS(2892), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -265223,22 +253315,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [117439] = 6, + [117505] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3995), 1, + ACTIONS(3913), 1, anon_sym_LPAREN, - STATE(2229), 1, + STATE(2218), 1, sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2972), 4, + ACTIONS(2890), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2974), 48, + ACTIONS(2892), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -265287,83 +253379,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [117509] = 6, - ACTIONS(5), 1, - sym_comment, - 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, - 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, - [117579] = 4, + [117575] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3341), 5, + ACTIONS(3287), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3343), 49, + ACTIONS(3289), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -265413,19 +253441,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [117645] = 4, + [117641] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(3913), 1, + anon_sym_LPAREN, + STATE(2222), 1, + sym__call_arguments_with_parentheses, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3187), 5, - sym__newline_before_do, + ACTIONS(2890), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3189), 49, + ACTIONS(2892), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -265474,26 +253505,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, [117711] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3183), 5, + aux_sym__terminator_token1, + ACTIONS(2573), 3, sym__newline_before_do, sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3185), 49, - anon_sym_SEMI, + ACTIONS(2575), 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, @@ -265540,19 +253570,19 @@ static const uint16_t ts_small_parse_table[] = { [117777] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4500), 1, + ACTIONS(4418), 1, anon_sym_COMMA, - STATE(3059), 1, + STATE(3046), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3149), 3, + ACTIONS(3401), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3151), 48, + ACTIONS(3403), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -265607,13 +253637,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3195), 5, + ACTIONS(3415), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3197), 49, + ACTIONS(3417), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -265664,17 +253694,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, [117913] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3299), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3301), 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, + [117979] = 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, + ACTIONS(3215), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3157), 50, + ACTIONS(3217), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -265725,81 +253817,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [117979] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - ACTIONS(3323), 5, - sym__newline_before_do, - sym__not_in, - ts_builtin_sym_end, - aux_sym__terminator_token1, - anon_sym_LBRACK2, - 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, + ACTIONS(3409), 5, sym__newline_before_do, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3185), 49, + ACTIONS(3411), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -265852,16 +253882,17 @@ static const uint16_t ts_small_parse_table[] = { [118111] = 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(3064), 3, + ACTIONS(3279), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3066), 50, - anon_sym_RPAREN, + ACTIONS(3281), 49, + anon_sym_SEMI, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -265908,7 +253939,6 @@ 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, [118177] = 4, @@ -265918,11 +253948,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3118), 3, + ACTIONS(2940), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3120), 50, + ACTIONS(2942), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -265980,11 +254010,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3118), 3, + ACTIONS(3227), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3120), 50, + ACTIONS(3229), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -266035,21 +254065,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, - [118309] = 6, + [118309] = 4, ACTIONS(5), 1, sym_comment, - 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(3120), 49, + ACTIONS(3227), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3229), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -266098,19 +254125,23 @@ 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, - [118379] = 4, + [118375] = 6, ACTIONS(5), 1, sym_comment, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(3227), 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(3118), 3, - sym__newline_before_do, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3120), 50, + ACTIONS(3229), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -266159,7 +254190,6 @@ 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, [118445] = 4, ACTIONS(5), 1, @@ -266168,11 +254198,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3534), 3, + ACTIONS(3227), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3536), 50, + ACTIONS(3229), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -266224,414 +254254,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT, anon_sym_do, [118511] = 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, - [118577] = 29, - ACTIONS(5), 1, - sym_comment, - ACTIONS(9), 1, - aux_sym__terminator_token1, - ACTIONS(1561), 1, - ts_builtin_sym_end, - 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(4502), 1, - anon_sym_SEMI, - STATE(407), 1, - sym__terminator, - STATE(1029), 1, - aux_sym__terminator_repeat1, - STATE(4982), 1, - aux_sym_source_repeat1, - 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(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, - [118693] = 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), 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, - [118759] = 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), 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, - [118825] = 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, + ACTIONS(3245), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - 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, + ACTIONS(3247), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -266682,6 +254315,403 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_GT, anon_sym_DOT, anon_sym_do, + [118577] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2581), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2583), 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, + [118643] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3419), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3421), 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, + [118709] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2581), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2583), 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, + [118775] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2545), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2547), 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, + [118841] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9), 1, + aux_sym__terminator_token1, + ACTIONS(1629), 1, + ts_builtin_sym_end, + ACTIONS(4378), 1, + anon_sym_PIPE, + ACTIONS(4386), 1, + anon_sym_when, + ACTIONS(4388), 1, + anon_sym_COLON_COLON, + ACTIONS(4390), 1, + anon_sym_EQ_GT, + ACTIONS(4392), 1, + anon_sym_EQ, + ACTIONS(4402), 1, + anon_sym_in, + ACTIONS(4404), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4406), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4410), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(4416), 1, + sym__not_in, + ACTIONS(4420), 1, + anon_sym_SEMI, + STATE(382), 1, + sym__terminator, + STATE(1016), 1, + aux_sym__terminator_repeat1, + STATE(4970), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4380), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4384), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4394), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4396), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4376), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4398), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4408), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4400), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [118957] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2545), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2547), 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, [119023] = 4, ACTIONS(5), 1, sym_comment, @@ -266689,11 +254719,11 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3435), 3, + ACTIONS(3259), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3437), 50, + ACTIONS(3261), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -266751,18 +254781,17 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(2647), 3, + ACTIONS(3263), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(2649), 50, + ACTIONS(3265), 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_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -266804,27 +254833,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, [119155] = 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(2611), 3, + ACTIONS(3331), 5, sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2613), 50, + 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_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -266868,21 +254898,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [119221] = 6, + [119221] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4504), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3419), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3421), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, - STATE(2721), 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, + [119287] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4422), 1, + anon_sym_COMMA, + STATE(2712), 1, aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3219), 3, + ACTIONS(3391), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3221), 49, + ACTIONS(3393), 49, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -266932,28958 +255024,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - anon_sym_do, - [120451] = 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), 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, - [120517] = 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, - [120583] = 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), 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, - [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, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - 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, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_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, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - 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, - [128173] = 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, - [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_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, - [128505] = 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, - [128571] = 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, - [128637] = 4, - ACTIONS(5), 1, - sym_comment, - 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, - [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(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, - [129009] = 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, - [129075] = 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), 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, - [129141] = 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, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [129207] = 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, - [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(3265), 5, - sym__newline_before_do, - 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, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [129475] = 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, - [129541] = 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, - [129607] = 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, - [129673] = 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, - [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(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, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [133345] = 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, - [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, + [119357] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -295945,899 +255086,916 @@ static const uint16_t ts_small_parse_table[] = { 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, + [119423] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2651), 3, + ACTIONS(3419), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3421), 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, + [119489] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3430), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3432), 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, + [119555] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3698), 1, + anon_sym_RPAREN, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(4424), 1, + aux_sym__terminator_token1, + ACTIONS(4427), 1, + anon_sym_SEMI, + ACTIONS(4432), 1, + anon_sym_PIPE, + ACTIONS(4440), 1, + anon_sym_when, + ACTIONS(4442), 1, + anon_sym_COLON_COLON, + ACTIONS(4444), 1, + anon_sym_EQ_GT, + ACTIONS(4446), 1, + anon_sym_EQ, + ACTIONS(4456), 1, + anon_sym_in, + ACTIONS(4458), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4460), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4464), 1, + anon_sym_STAR_STAR, + ACTIONS(4466), 1, + anon_sym_DOT, + ACTIONS(4468), 1, + sym__not_in, + STATE(347), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4904), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4434), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4438), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4448), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4450), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4430), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4452), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4462), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4454), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [119671] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [119741] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3227), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3229), 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, + [119811] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3123), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + 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_do, + anon_sym_end, + [119881] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4470), 1, + anon_sym_COMMA, + STATE(2705), 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(3028), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3030), 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, + [119951] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4473), 1, + anon_sym_COMMA, + STATE(2705), 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(3035), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3037), 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, + [120021] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3331), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, + anon_sym_COMMA, + ACTIONS(4487), 1, + anon_sym_when, + ACTIONS(4489), 1, + anon_sym_COLON_COLON, + ACTIONS(4491), 1, + anon_sym_EQ_GT, + ACTIONS(4493), 1, + anon_sym_EQ, + ACTIONS(4503), 1, + anon_sym_in, + ACTIONS(4505), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4507), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4513), 1, + sym__not_in, + STATE(2706), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3333), 2, + anon_sym_LBRACE, + anon_sym_do, + ACTIONS(4479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4485), 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(4495), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4497), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4475), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4499), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4509), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4501), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [120133] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3091), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3093), 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, + [120199] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1267), 1, + anon_sym_RPAREN, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(4432), 1, + anon_sym_PIPE, + ACTIONS(4440), 1, + anon_sym_when, + ACTIONS(4442), 1, + anon_sym_COLON_COLON, + ACTIONS(4444), 1, + anon_sym_EQ_GT, + ACTIONS(4446), 1, + anon_sym_EQ, + ACTIONS(4456), 1, + anon_sym_in, + ACTIONS(4458), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4460), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4464), 1, + anon_sym_STAR_STAR, + ACTIONS(4466), 1, + anon_sym_DOT, + ACTIONS(4468), 1, + sym__not_in, + ACTIONS(4515), 1, + aux_sym__terminator_token1, + ACTIONS(4518), 1, + anon_sym_SEMI, + STATE(350), 1, + sym__terminator, + STATE(1021), 1, + aux_sym__terminator_repeat1, + STATE(4963), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4434), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4438), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4448), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4450), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4430), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4452), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4462), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4454), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [120315] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3434), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3436), 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, + [120381] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3438), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3440), 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, + [120447] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4422), 1, + anon_sym_COMMA, + STATE(2846), 1, + aux_sym_keywords_repeat1, + 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(2653), 51, + ACTIONS(3403), 49, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -296881,24 +256039,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [152393] = 4, + [120517] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 3, + ACTIONS(3452), 5, + sym__newline_before_do, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2649), 51, + ACTIONS(3454), 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, + [120583] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3452), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3454), 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, @@ -296943,7 +256162,1839 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [152459] = 4, + 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(3267), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3269), 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(3271), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3273), 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(3275), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3277), 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(3024), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3026), 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(3321), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3442), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3444), 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, + [121045] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3281), 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, + [121111] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3448), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3450), 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(3405), 5, + 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, + [121243] = 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, + [121309] = 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), 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, + [121375] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3281), 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, + [121441] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3002), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3004), 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, + [121507] = 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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_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(2573), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2575), 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(3024), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3026), 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, + [121705] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3051), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3053), 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, + [121771] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3055), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3057), 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, + [121837] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4418), 1, + anon_sym_COMMA, + STATE(2675), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3391), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3393), 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(2565), 4, + sym__newline_before_do, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2567), 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] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3698), 1, + anon_sym_end, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(4521), 1, + aux_sym__terminator_token1, + ACTIONS(4524), 1, + anon_sym_SEMI, + ACTIONS(4529), 1, + anon_sym_PIPE, + ACTIONS(4537), 1, + anon_sym_when, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4541), 1, + anon_sym_EQ_GT, + ACTIONS(4543), 1, + anon_sym_EQ, + ACTIONS(4553), 1, + anon_sym_in, + ACTIONS(4555), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4557), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4561), 1, + anon_sym_STAR_STAR, + ACTIONS(4563), 1, + anon_sym_DOT, + ACTIONS(4565), 1, + sym__not_in, + STATE(345), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(4986), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4531), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4535), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4527), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4559), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4551), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [122089] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3885), 1, + anon_sym_LPAREN, + STATE(2647), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2890), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2892), 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, + [122159] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 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(3281), 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, + [122229] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3287), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3289), 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, + [122295] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3387), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3389), 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, + [122361] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3002), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3004), 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, + [122427] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3299), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3301), 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, + [122493] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3281), 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, + [122559] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3885), 1, + anon_sym_LPAREN, + STATE(2645), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2890), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2892), 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, + [122629] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -296955,13 +258006,12 @@ static const uint16_t ts_small_parse_table[] = { sym__not_in, anon_sym_LBRACK2, 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_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -297003,216 +258053,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, - [152525] = 4, + [122695] = 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, + ACTIONS(3303), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 49, + ACTIONS(3305), 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, @@ -297254,507 +258115,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, - [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, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3283), 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, - [153059] = 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), 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, - [153125] = 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), 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, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - anon_sym_do, - [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, + [122761] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -297766,12 +258130,27678 @@ static const uint16_t ts_small_parse_table[] = { 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, + [122827] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3650), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [122895] = 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, + [122961] = 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, + [123027] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3317), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3319), 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, + [123093] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3885), 1, + anon_sym_LPAREN, + STATE(2644), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2890), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2892), 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, + [123163] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3646), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [123231] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3644), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [123299] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3642), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [123367] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3640), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [123435] = 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(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [123503] = 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(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [123571] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3632), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [123639] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [123705] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [123771] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [123837] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [123903] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [123969] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [124035] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [124101] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [124167] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [124233] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [124299] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3630), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [124367] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3628), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [124435] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3626), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [124503] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3648), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [124571] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3624), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [124639] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3622), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [124707] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3620), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [124775] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3618), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [124843] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3616), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [124911] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3614), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [124979] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [125045] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [125111] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [125177] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [125243] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [125309] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [125375] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [125441] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [125507] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [125573] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [125639] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3383), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3385), 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, + [125705] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3387), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3389), 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, + [125771] = 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, + [125837] = 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, + [125903] = 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, + [125969] = 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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [126035] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3091), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3093), 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, + [126101] = 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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [126167] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3383), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3385), 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, + [126233] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3419), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3421), 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, + [126299] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3419), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3421), 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, + [126365] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3091), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3093), 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, + [126431] = 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, + [126497] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3419), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3421), 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, + [126563] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3430), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3432), 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, + [126629] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [126695] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [126761] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2996), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2998), 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, + [126827] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3002), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3004), 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, + [126893] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [126959] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [127025] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [127091] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [127157] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [127223] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [127289] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [127355] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [127421] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4094), 1, + anon_sym_PIPE, + ACTIONS(4104), 1, + anon_sym_when, + ACTIONS(4106), 1, + anon_sym_COLON_COLON, + ACTIONS(4108), 1, + anon_sym_EQ_GT, + ACTIONS(4110), 1, + anon_sym_EQ, + ACTIONS(4120), 1, + anon_sym_in, + ACTIONS(4122), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4124), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(4132), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3028), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4100), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4102), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4112), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4114), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3030), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4116), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4126), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4118), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [127529] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3063), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3065), 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, + [127595] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3063), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3065), 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, + [127661] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3067), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3069), 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, + [127727] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3434), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3436), 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, + [127793] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3438), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3440), 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, + [127859] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3067), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3069), 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, + [127925] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3442), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3444), 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, + [127991] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3067), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3069), 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, + [128057] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2890), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2892), 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, + [128123] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2890), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2892), 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, + [128189] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3091), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3093), 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, + [128255] = 29, + ACTIONS(5), 1, + sym_comment, + ACTIONS(1267), 1, + anon_sym_end, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(4529), 1, + anon_sym_PIPE, + ACTIONS(4537), 1, + anon_sym_when, + ACTIONS(4539), 1, + anon_sym_COLON_COLON, + ACTIONS(4541), 1, + anon_sym_EQ_GT, + ACTIONS(4543), 1, + anon_sym_EQ, + ACTIONS(4553), 1, + anon_sym_in, + ACTIONS(4555), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4557), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4561), 1, + anon_sym_STAR_STAR, + ACTIONS(4563), 1, + anon_sym_DOT, + ACTIONS(4565), 1, + sym__not_in, + ACTIONS(4567), 1, + aux_sym__terminator_token1, + ACTIONS(4570), 1, + anon_sym_SEMI, + STATE(348), 1, + sym__terminator, + STATE(1019), 1, + aux_sym__terminator_repeat1, + STATE(4926), 1, + aux_sym_source_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4531), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4535), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4545), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4547), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4527), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4549), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4559), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4551), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [128371] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4009), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4013), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4039), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [128449] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3103), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3105), 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, + [128515] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3107), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3109), 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, + [128581] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [128647] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3016), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3018), 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, + [128713] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4037), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4009), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4013), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4039), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [128793] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4269), 1, + anon_sym_PIPE, + ACTIONS(4279), 1, + anon_sym_when, + ACTIONS(4281), 1, + anon_sym_COLON_COLON, + ACTIONS(4283), 1, + anon_sym_EQ_GT, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(4295), 1, + anon_sym_in, + ACTIONS(4297), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4299), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(4307), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3028), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4271), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4277), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4287), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4289), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3030), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(4267), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4291), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4301), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4293), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [128901] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [128967] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [129033] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [129099] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [129165] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [129231] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3067), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3069), 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, + [129297] = 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, + [129363] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [129429] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [129495] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [129561] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4573), 1, + anon_sym_COMMA, + STATE(2846), 1, + aux_sym_keywords_repeat1, + 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), 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, + [129631] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3111), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3113), 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, + [129697] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3115), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3117), 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, + [129763] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3119), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3121), 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, + [129829] = 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, + [129895] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4007), 1, + anon_sym_PIPE, + ACTIONS(4017), 1, + anon_sym_when, + ACTIONS(4019), 1, + anon_sym_COLON_COLON, + ACTIONS(4021), 1, + anon_sym_EQ_GT, + ACTIONS(4023), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_in, + ACTIONS(4035), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4037), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(4047), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4009), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4013), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4015), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3554), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3556), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4025), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4027), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4005), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4029), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4039), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4031), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [130003] = 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, + [130069] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2996), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2998), 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), 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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [130201] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4576), 1, + anon_sym_COMMA, + STATE(3045), 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(3035), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3037), 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] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3317), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3319), 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, + [130337] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3067), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3069), 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, + [130403] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [130473] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3103), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3105), 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, + [130539] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3107), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3109), 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, + [130605] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [130671] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3067), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3069), 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, + [130737] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3448), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3450), 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, + [130803] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4269), 1, + anon_sym_PIPE, + ACTIONS(4279), 1, + anon_sym_when, + ACTIONS(4281), 1, + anon_sym_COLON_COLON, + ACTIONS(4283), 1, + anon_sym_EQ_GT, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(4295), 1, + anon_sym_in, + ACTIONS(4297), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4299), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(4307), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3550), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4271), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4277), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4287), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4289), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3552), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(4267), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4291), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4301), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4293), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [130911] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4094), 1, + anon_sym_PIPE, + ACTIONS(4104), 1, + anon_sym_when, + ACTIONS(4106), 1, + anon_sym_COLON_COLON, + ACTIONS(4108), 1, + anon_sym_EQ_GT, + ACTIONS(4110), 1, + anon_sym_EQ, + ACTIONS(4120), 1, + anon_sym_in, + ACTIONS(4122), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4124), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(4132), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3554), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4100), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4102), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4112), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4114), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3556), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4116), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4126), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4118), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [131019] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4269), 1, + anon_sym_PIPE, + ACTIONS(4279), 1, + anon_sym_when, + ACTIONS(4281), 1, + anon_sym_COLON_COLON, + ACTIONS(4283), 1, + anon_sym_EQ_GT, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(4295), 1, + anon_sym_in, + ACTIONS(4297), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4299), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(4307), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3554), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4271), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4277), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4287), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4289), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3556), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + anon_sym_end, + ACTIONS(4267), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4291), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4301), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4293), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [131127] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3123), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3125), 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, + [131197] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3610), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [131265] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3612), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [131333] = 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), 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, + [131399] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3063), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3065), 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, + [131465] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3550), 1, + sym__newline_before_do, + ACTIONS(4315), 1, + anon_sym_PIPE, + ACTIONS(4325), 1, + anon_sym_when, + ACTIONS(4327), 1, + anon_sym_COLON_COLON, + ACTIONS(4329), 1, + anon_sym_EQ_GT, + ACTIONS(4331), 1, + anon_sym_EQ, + ACTIONS(4341), 1, + anon_sym_in, + ACTIONS(4343), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4345), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4349), 1, + anon_sym_STAR_STAR, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(4355), 1, + sym__not_in, + ACTIONS(4317), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4323), 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(4333), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4335), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3552), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4313), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4337), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4347), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4339), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [131573] = 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), 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, + [131639] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4007), 1, + anon_sym_PIPE, + ACTIONS(4017), 1, + anon_sym_when, + ACTIONS(4019), 1, + anon_sym_COLON_COLON, + ACTIONS(4021), 1, + anon_sym_EQ_GT, + ACTIONS(4023), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_in, + ACTIONS(4035), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4037), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(4047), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4009), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4013), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4015), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3550), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3552), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4025), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4027), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4005), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4029), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4039), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4031), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [131747] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [131813] = 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, + [131879] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3063), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3065), 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, + [131945] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(560), 1, + anon_sym_do, + ACTIONS(4578), 1, + sym__newline_before_do, + STATE(4007), 1, + sym_do_block, + ACTIONS(2916), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2918), 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, + [132017] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(560), 1, + anon_sym_do, + ACTIONS(4580), 1, + sym__newline_before_do, + STATE(4008), 1, + sym_do_block, + ACTIONS(2940), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2942), 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, + [132089] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [132155] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(560), 1, + anon_sym_do, + ACTIONS(4582), 1, + sym__newline_before_do, + STATE(4011), 1, + sym_do_block, + ACTIONS(2916), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2918), 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, + [132227] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(560), 1, + anon_sym_do, + ACTIONS(4584), 1, + sym__newline_before_do, + STATE(4012), 1, + sym_do_block, + ACTIONS(2916), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2918), 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, + [132299] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(560), 1, + anon_sym_do, + ACTIONS(4586), 1, + sym__newline_before_do, + STATE(4014), 1, + sym_do_block, + ACTIONS(2924), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2926), 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, + [132371] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2968), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2970), 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, + [132437] = 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), 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, + [132503] = 27, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3331), 1, + sym__newline_before_do, + ACTIONS(4590), 1, + anon_sym_PIPE, + ACTIONS(4594), 1, + anon_sym_COMMA, + ACTIONS(4600), 1, + anon_sym_when, + ACTIONS(4602), 1, + anon_sym_COLON_COLON, + ACTIONS(4604), 1, + anon_sym_EQ_GT, + ACTIONS(4606), 1, + anon_sym_EQ, + ACTIONS(4616), 1, + anon_sym_in, + ACTIONS(4618), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4620), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(4630), 1, + sym__not_in, + STATE(2855), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(3333), 2, + anon_sym_GT_GT, + anon_sym_do, + ACTIONS(4592), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4598), 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(4608), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4610), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4588), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4612), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4622), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4614), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [132615] = 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, + [132681] = 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), 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, + [132747] = 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), 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, + [132813] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3024), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3026), 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, + [132879] = 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), 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, + [132945] = 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), 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, + [133011] = 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, + [133077] = 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), 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, + [133143] = 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), 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, + [133209] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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, + [133275] = 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), 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, + [133341] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3002), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3004), 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, + [133407] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3227), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3229), 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, + [133477] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3002), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3004), 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, + [133543] = 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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + anon_sym_do, + [133609] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2940), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2942), 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, + [133675] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3442), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3444), 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, + [133741] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3111), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3113), 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, + [133807] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3227), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3229), 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, + [133873] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3251), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3253), 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, + [133939] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3255), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3257), 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, + [134005] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3227), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3229), 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, + [134071] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3227), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3229), 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, + [134141] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3227), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3229), 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, + [134207] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3055), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3057), 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, + [134273] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3051), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3053), 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, + [134339] = 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), 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, + [134405] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2908), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2910), 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, + [134471] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2912), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2914), 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, + [134537] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2964), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2966), 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, + [134603] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3251), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3253), 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, + [134669] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2956), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2958), 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, + [134735] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4632), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [134803] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [134869] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3059), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3061), 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, + [134935] = 4, + ACTIONS(5), 1, + sym_comment, + 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_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, + [135001] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3071), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3073), 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, + [135067] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3075), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3077), 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, + [135133] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3079), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3081), 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, + [135199] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3083), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3085), 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, + [135265] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3087), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3089), 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, + [135331] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3095), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3097), 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, + [135397] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3099), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3101), 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, + [135463] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3438), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3440), 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, + [135529] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3434), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3436), 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, + [135595] = 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, + [135661] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4343), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4345), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4349), 1, + anon_sym_STAR_STAR, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4317), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4347), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [135743] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4341), 1, + anon_sym_in, + ACTIONS(4343), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4345), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4349), 1, + anon_sym_STAR_STAR, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(4355), 1, + sym__not_in, + ACTIONS(4317), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4347), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4339), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [135831] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4315), 1, + anon_sym_PIPE, + ACTIONS(4329), 1, + anon_sym_EQ_GT, + ACTIONS(4331), 1, + anon_sym_EQ, + ACTIONS(4341), 1, + anon_sym_in, + ACTIONS(4343), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4345), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4349), 1, + anon_sym_STAR_STAR, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(4355), 1, + sym__not_in, + ACTIONS(4317), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4333), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4335), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4313), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4337), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4347), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4339), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [135933] = 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, + [135999] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4349), 1, + anon_sym_STAR_STAR, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 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(3281), 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, + [136071] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4349), 1, + anon_sym_STAR_STAR, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4317), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [136145] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4315), 1, + anon_sym_PIPE, + ACTIONS(4325), 1, + anon_sym_when, + ACTIONS(4327), 1, + anon_sym_COLON_COLON, + ACTIONS(4329), 1, + anon_sym_EQ_GT, + ACTIONS(4331), 1, + anon_sym_EQ, + ACTIONS(4341), 1, + anon_sym_in, + ACTIONS(4343), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4345), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4349), 1, + anon_sym_STAR_STAR, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(4355), 1, + sym__not_in, + ACTIONS(4317), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4333), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4335), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4313), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4337), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3281), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4347), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4339), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [136251] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4315), 1, + anon_sym_PIPE, + ACTIONS(4325), 1, + anon_sym_when, + ACTIONS(4327), 1, + anon_sym_COLON_COLON, + ACTIONS(4329), 1, + anon_sym_EQ_GT, + ACTIONS(4331), 1, + anon_sym_EQ, + ACTIONS(4341), 1, + anon_sym_in, + ACTIONS(4343), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4345), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4349), 1, + anon_sym_STAR_STAR, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(4355), 1, + sym__not_in, + ACTIONS(4317), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4333), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4335), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4313), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4337), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3281), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4347), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4339), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [136357] = 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_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, + [136423] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4315), 1, + anon_sym_PIPE, + ACTIONS(4327), 1, + anon_sym_COLON_COLON, + ACTIONS(4329), 1, + anon_sym_EQ_GT, + ACTIONS(4331), 1, + anon_sym_EQ, + ACTIONS(4341), 1, + anon_sym_in, + ACTIONS(4343), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4345), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4349), 1, + anon_sym_STAR_STAR, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(4355), 1, + sym__not_in, + ACTIONS(4317), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4333), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4335), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4313), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4337), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4347), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4339), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [136527] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4329), 1, + anon_sym_EQ_GT, + ACTIONS(4331), 1, + anon_sym_EQ, + ACTIONS(4341), 1, + anon_sym_in, + ACTIONS(4343), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4345), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4349), 1, + anon_sym_STAR_STAR, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(4355), 1, + sym__not_in, + ACTIONS(4317), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4333), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4335), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4313), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4337), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4347), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4339), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [136627] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4331), 1, + anon_sym_EQ, + ACTIONS(4341), 1, + anon_sym_in, + ACTIONS(4343), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4345), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4349), 1, + anon_sym_STAR_STAR, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(4355), 1, + sym__not_in, + ACTIONS(4317), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4333), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4335), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4313), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4337), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4347), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4339), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [136725] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4341), 1, + anon_sym_in, + ACTIONS(4343), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4345), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4349), 1, + anon_sym_STAR_STAR, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(4355), 1, + sym__not_in, + ACTIONS(4317), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4335), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4313), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4337), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4347), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4339), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [136819] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4341), 1, + anon_sym_in, + ACTIONS(4343), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4345), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4349), 1, + anon_sym_STAR_STAR, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(4355), 1, + sym__not_in, + ACTIONS(4317), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4313), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4337), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4347), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4339), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [136911] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4341), 1, + anon_sym_in, + ACTIONS(4343), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4345), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4349), 1, + anon_sym_STAR_STAR, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(4355), 1, + sym__not_in, + ACTIONS(4317), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4313), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4347), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4339), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [137001] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4341), 1, + anon_sym_in, + ACTIONS(4343), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4345), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4349), 1, + anon_sym_STAR_STAR, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(4355), 1, + sym__not_in, + ACTIONS(4317), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4347), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [137087] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4345), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4349), 1, + anon_sym_STAR_STAR, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4317), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4347), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [137167] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4345), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4349), 1, + anon_sym_STAR_STAR, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4317), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4347), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [137247] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4349), 1, + anon_sym_STAR_STAR, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4317), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4347), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [137325] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [137395] = 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, + 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, + [137461] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [137527] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3147), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3149), 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, + [137593] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3151), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3153), 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, + [137659] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3263), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3265), 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, + [137725] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4033), 1, + anon_sym_in, + ACTIONS(4035), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4037), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(4047), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4009), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4013), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4039), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [137811] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3006), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3002), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3004), 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, + [137879] = 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_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, + [137945] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3000), 1, + aux_sym_quoted_keyword_token1, + 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), 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, + [138013] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3267), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3269), 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, + [138079] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3271), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3273), 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, + [138145] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3123), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + 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_do, + [138215] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2920), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2922), 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, + [138281] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3430), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3432), 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, + [138347] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4035), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4037), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4009), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4013), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4039), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [138429] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2930), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2932), 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, + [138495] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4033), 1, + anon_sym_in, + ACTIONS(4035), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4037), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(4047), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4009), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4013), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4039), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4031), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [138583] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4007), 1, + anon_sym_PIPE, + ACTIONS(4021), 1, + anon_sym_EQ_GT, + ACTIONS(4023), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_in, + ACTIONS(4035), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4037), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(4047), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4009), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4013), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4025), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4027), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4005), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4029), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4039), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4031), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [138685] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3281), 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, + [138751] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [138823] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4009), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3279), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [138897] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3419), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3421), 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, + [138963] = 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, + [139029] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4007), 1, + anon_sym_PIPE, + ACTIONS(4017), 1, + anon_sym_when, + ACTIONS(4019), 1, + anon_sym_COLON_COLON, + ACTIONS(4021), 1, + anon_sym_EQ_GT, + ACTIONS(4023), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_in, + ACTIONS(4035), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4037), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(4047), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4009), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4013), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4025), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4027), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4005), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3281), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4029), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4039), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4031), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [139135] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3419), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3421), 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, + [139201] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3419), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3421), 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, + [139267] = 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), 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, + [139333] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4007), 1, + anon_sym_PIPE, + ACTIONS(4017), 1, + anon_sym_when, + ACTIONS(4019), 1, + anon_sym_COLON_COLON, + ACTIONS(4021), 1, + anon_sym_EQ_GT, + ACTIONS(4023), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_in, + ACTIONS(4035), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4037), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(4047), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4009), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4013), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4025), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4027), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4005), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3281), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4029), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4039), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4031), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [139439] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3281), 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, + [139505] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4007), 1, + anon_sym_PIPE, + ACTIONS(4019), 1, + anon_sym_COLON_COLON, + ACTIONS(4021), 1, + anon_sym_EQ_GT, + ACTIONS(4023), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_in, + ACTIONS(4035), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4037), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(4047), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4009), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4013), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4025), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4027), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4005), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4029), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3281), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + ACTIONS(4039), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4031), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [139609] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4021), 1, + anon_sym_EQ_GT, + ACTIONS(4023), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_in, + ACTIONS(4035), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4037), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(4047), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4009), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4013), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4025), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4027), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4005), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4029), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4039), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4031), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(4023), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_in, + ACTIONS(4035), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4037), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(4047), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4009), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4013), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4025), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4027), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4005), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4029), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4039), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4031), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(4033), 1, + anon_sym_in, + ACTIONS(4035), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4037), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(4047), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4009), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4013), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4027), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4005), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4029), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4039), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4031), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4271), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4301), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [139979] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4299), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4271), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4301), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [140059] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4299), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4271), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4301), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [140139] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4295), 1, + anon_sym_in, + ACTIONS(4297), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4299), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(4307), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4271), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4301), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [140225] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4295), 1, + anon_sym_in, + ACTIONS(4297), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4299), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(4307), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4271), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4267), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4301), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4293), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [140315] = 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_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, + [140381] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4295), 1, + anon_sym_in, + ACTIONS(4297), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4299), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(4307), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4271), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4267), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4291), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4301), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4293), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [140473] = 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_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(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, + [140605] = 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, + [140671] = 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, + [140737] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3387), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3389), 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(3383), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3385), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [141529] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4295), 1, + anon_sym_in, + ACTIONS(4297), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4299), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(4307), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4271), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4289), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4267), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4291), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4301), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4293), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [141623] = 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_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, + [141689] = 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_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, + [141755] = 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_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, + [141821] = 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_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, + [141887] = 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_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, + [141953] = 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_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, + [142019] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(4295), 1, + anon_sym_in, + ACTIONS(4297), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4299), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(4307), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4271), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4287), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4289), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4267), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4291), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4301), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4293), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [142117] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4283), 1, + anon_sym_EQ_GT, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(4295), 1, + anon_sym_in, + ACTIONS(4297), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4299), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(4307), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4271), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4287), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4289), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4267), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4291), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4301), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4293), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [142217] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4269), 1, + anon_sym_PIPE, + ACTIONS(4281), 1, + anon_sym_COLON_COLON, + ACTIONS(4283), 1, + anon_sym_EQ_GT, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(4295), 1, + anon_sym_in, + ACTIONS(4297), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4299), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(4307), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4271), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4287), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4289), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4267), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4291), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4301), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4293), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [142321] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4269), 1, + anon_sym_PIPE, + ACTIONS(4279), 1, + anon_sym_when, + ACTIONS(4281), 1, + anon_sym_COLON_COLON, + ACTIONS(4283), 1, + anon_sym_EQ_GT, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(4295), 1, + anon_sym_in, + ACTIONS(4297), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4299), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(4307), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4271), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4287), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4289), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4267), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4291), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3281), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + anon_sym_end, + ACTIONS(4301), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4293), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [142427] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4269), 1, + anon_sym_PIPE, + ACTIONS(4279), 1, + anon_sym_when, + ACTIONS(4281), 1, + anon_sym_COLON_COLON, + ACTIONS(4283), 1, + anon_sym_EQ_GT, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(4295), 1, + anon_sym_in, + ACTIONS(4297), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4299), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(4307), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4271), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4287), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4289), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4267), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4291), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3281), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + anon_sym_end, + ACTIONS(4301), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4293), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [142533] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4271), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [142607] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [142679] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4269), 1, + anon_sym_PIPE, + ACTIONS(4283), 1, + anon_sym_EQ_GT, + ACTIONS(4285), 1, + anon_sym_EQ, + ACTIONS(4295), 1, + anon_sym_in, + ACTIONS(4297), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4299), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(4307), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4271), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4287), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4289), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4267), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4291), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4301), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4293), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [142781] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4295), 1, + anon_sym_in, + ACTIONS(4297), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4299), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(4307), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4271), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4301), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4293), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [142869] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4297), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4299), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4303), 1, + anon_sym_STAR_STAR, + ACTIONS(4305), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4271), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4275), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4301), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [142951] = 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_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, + [143017] = 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_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, + [143083] = 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_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, + [143149] = 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_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, + [143215] = 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, + [143281] = 4, + ACTIONS(5), 1, + sym_comment, + 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_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, + [143347] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4037), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4009), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4013), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 4, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4039), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [143427] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4634), 1, + anon_sym_COMMA, + STATE(3033), 1, + aux_sym_keywords_repeat1, + 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_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, + [143497] = 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), 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, + [143563] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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, + [143629] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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, + [143695] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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, + [143761] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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, + [143827] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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, + [143893] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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, + [143959] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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, + [144025] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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, + [144091] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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, + [144157] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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, + [144223] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4637), 1, + anon_sym_COMMA, + STATE(3045), 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(3028), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3030), 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, + [144293] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4640), 1, + anon_sym_COMMA, + STATE(3046), 1, + aux_sym_keywords_repeat1, + 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), 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, + [144363] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4033), 1, + anon_sym_in, + ACTIONS(4035), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4037), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(4047), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4009), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4013), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4005), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4029), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4039), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4031), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [144455] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2980), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2982), 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, + [144521] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4643), 1, + anon_sym_COMMA, + STATE(3110), 1, + aux_sym_keywords_repeat1, + ACTIONS(3391), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3393), 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, + [144591] = 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), 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(3171), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3173), 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), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3107), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3109), 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, + [144789] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3103), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3105), 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(3107), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3109), 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(4007), 1, + anon_sym_PIPE, + ACTIONS(4017), 1, + anon_sym_when, + ACTIONS(4019), 1, + anon_sym_COLON_COLON, + ACTIONS(4021), 1, + anon_sym_EQ_GT, + ACTIONS(4023), 1, + anon_sym_EQ, + ACTIONS(4033), 1, + anon_sym_in, + ACTIONS(4035), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4037), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(4047), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4009), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4013), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4015), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3028), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3030), 3, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4025), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4027), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4005), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4029), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4039), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4031), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3167), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3169), 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(3317), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3319), 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(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, + [145227] = 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, + [145293] = 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), 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(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, + [145425] = 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, + [145491] = 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, + [145557] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3281), 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(3299), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3301), 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(3159), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3161), 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(3155), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3157), 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(3151), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3153), 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(3147), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3149), 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(3287), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3289), 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(3279), 1, + sym__not_in, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3281), 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(3143), 3, + 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, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_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(3139), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3141), 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(3135), 3, + 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_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(3131), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3133), 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(3127), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3129), 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(3251), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3253), 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(3255), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3257), 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(3099), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3101), 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(3095), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3097), 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(3087), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3089), 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(3083), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3085), 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, + [146815] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3079), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3081), 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(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, + [146947] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3263), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3265), 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(3071), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3073), 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(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), 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, + [147145] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3059), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3061), 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(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3075), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3077), 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, + [147277] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3281), 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(3055), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3057), 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(3002), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3004), 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(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), 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(3275), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3277), 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(3271), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3273), 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(3267), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3269), 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(3063), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3065), 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(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2988), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2990), 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, + [147871] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3063), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3065), 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, + [147937] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3067), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3069), 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, + [148003] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4033), 1, + anon_sym_in, + ACTIONS(4035), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4037), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4041), 1, + anon_sym_STAR_STAR, + ACTIONS(4043), 1, + anon_sym_DOT, + ACTIONS(4045), 1, + anon_sym_LBRACK2, + ACTIONS(4047), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4009), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4013), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4005), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4039), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4031), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [148093] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3283), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2916), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2918), 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, + [148161] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3286), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2916), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2918), 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, + [148229] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3306), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2940), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2942), 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, + [148297] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3307), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2916), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2918), 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, + [148365] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2992), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2994), 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, + [148431] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3028), 1, + sym__newline_before_do, + ACTIONS(4315), 1, + anon_sym_PIPE, + ACTIONS(4325), 1, + anon_sym_when, + ACTIONS(4327), 1, + anon_sym_COLON_COLON, + ACTIONS(4329), 1, + anon_sym_EQ_GT, + ACTIONS(4331), 1, + anon_sym_EQ, + ACTIONS(4341), 1, + anon_sym_in, + ACTIONS(4343), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4345), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4349), 1, + anon_sym_STAR_STAR, + ACTIONS(4351), 1, + anon_sym_DOT, + ACTIONS(4353), 1, + anon_sym_LBRACK2, + ACTIONS(4355), 1, + sym__not_in, + ACTIONS(4317), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4321), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4323), 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(4333), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4335), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3030), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_do, + ACTIONS(4313), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4337), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4347), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4339), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [148539] = 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, + [148605] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2952), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2954), 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, + [148671] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4643), 1, + anon_sym_COMMA, + STATE(3033), 1, + aux_sym_keywords_repeat1, + 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_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, + [148741] = 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_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, + [148807] = 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, + [148873] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3275), 5, + sym__newline_before_do, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3277), 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, + [148939] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4094), 1, + anon_sym_PIPE, + ACTIONS(4104), 1, + anon_sym_when, + ACTIONS(4106), 1, + anon_sym_COLON_COLON, + ACTIONS(4108), 1, + anon_sym_EQ_GT, + ACTIONS(4110), 1, + anon_sym_EQ, + ACTIONS(4120), 1, + anon_sym_in, + ACTIONS(4122), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4124), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(4132), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3550), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4100), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4102), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4112), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4114), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3552), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_do, + ACTIONS(4092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4116), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4126), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4118), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [149047] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4100), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4126), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [149125] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3103), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3105), 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, + [149191] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4124), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4100), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4126), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [149271] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4124), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4100), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4126), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [149351] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4120), 1, + anon_sym_in, + ACTIONS(4122), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4124), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(4132), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4100), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [149437] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4120), 1, + anon_sym_in, + ACTIONS(4122), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4124), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(4132), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4100), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4126), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4118), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [149527] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4120), 1, + anon_sym_in, + ACTIONS(4122), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4124), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(4132), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4100), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4116), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4126), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4118), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [149619] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4120), 1, + anon_sym_in, + ACTIONS(4122), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4124), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(4132), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4100), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4114), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4116), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4126), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4118), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [149713] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4110), 1, + anon_sym_EQ, + ACTIONS(4120), 1, + anon_sym_in, + ACTIONS(4122), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4124), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(4132), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4100), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4114), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4116), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4126), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4118), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [149811] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4108), 1, + anon_sym_EQ_GT, + ACTIONS(4110), 1, + anon_sym_EQ, + ACTIONS(4120), 1, + anon_sym_in, + ACTIONS(4122), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4124), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(4132), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4100), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4114), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4116), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4126), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4118), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [149911] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4094), 1, + anon_sym_PIPE, + ACTIONS(4106), 1, + anon_sym_COLON_COLON, + ACTIONS(4108), 1, + anon_sym_EQ_GT, + ACTIONS(4110), 1, + anon_sym_EQ, + ACTIONS(4120), 1, + anon_sym_in, + ACTIONS(4122), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4124), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(4132), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4100), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4114), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4116), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4126), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4118), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [150015] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4094), 1, + anon_sym_PIPE, + ACTIONS(4104), 1, + anon_sym_when, + ACTIONS(4106), 1, + anon_sym_COLON_COLON, + ACTIONS(4108), 1, + anon_sym_EQ_GT, + ACTIONS(4110), 1, + anon_sym_EQ, + ACTIONS(4120), 1, + anon_sym_in, + ACTIONS(4122), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4124), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(4132), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4100), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4114), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4116), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3281), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4126), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4118), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [150121] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4094), 1, + anon_sym_PIPE, + ACTIONS(4104), 1, + anon_sym_when, + ACTIONS(4106), 1, + anon_sym_COLON_COLON, + ACTIONS(4108), 1, + anon_sym_EQ_GT, + ACTIONS(4110), 1, + anon_sym_EQ, + ACTIONS(4120), 1, + anon_sym_in, + ACTIONS(4122), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4124), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(4132), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4100), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4114), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4116), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3281), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4126), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4118), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [150227] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [150301] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [150373] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4094), 1, + anon_sym_PIPE, + ACTIONS(4108), 1, + anon_sym_EQ_GT, + ACTIONS(4110), 1, + anon_sym_EQ, + ACTIONS(4120), 1, + anon_sym_in, + ACTIONS(4122), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4124), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(4132), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4100), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4112), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4114), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4092), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4116), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4126), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4118), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [150475] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4120), 1, + anon_sym_in, + ACTIONS(4122), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4124), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(4132), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__newline_before_do, + aux_sym__terminator_token1, + ACTIONS(4096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4100), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4126), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4118), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [150563] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3510), 1, + anon_sym_LBRACK2, + ACTIONS(4122), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4124), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4128), 1, + anon_sym_STAR_STAR, + ACTIONS(4130), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4096), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4100), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4126), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [150645] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4649), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [150713] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4651), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [150781] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4653), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [150849] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3051), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3053), 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, + [150915] = 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), 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, + [150981] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3255), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3257), 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, + [151047] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3251), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3253), 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, + [151113] = 5, + ACTIONS(5), 1, + sym_comment, + STATE(3257), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2924), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2926), 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, + [151181] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4655), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [151249] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4657), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [151317] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4659), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [151385] = 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), 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, + [151451] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3227), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3229), 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, + [151517] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3227), 1, + sym__not_in, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3229), 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, + [151587] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3227), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3229), 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, + [151653] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3227), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3229), 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, + [151719] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4661), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [151787] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4663), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [151855] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2940), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2942), 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, + [151921] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3251), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3253), 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, + [151987] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3255), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3257), 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, + [152053] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4665), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [152121] = 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), 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, + [152187] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4667), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [152255] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4669), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [152323] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2565), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2567), 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, + [152389] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2573), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2575), 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, + [152455] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4671), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [152523] = 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, + [152589] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3123), 1, + sym__not_in, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + 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_LBRACE, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + [152659] = 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, + [152725] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4673), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [152793] = 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, + [152859] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3119), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3121), 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, + [152925] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3115), 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), 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, + [152991] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3111), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3113), 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, + [153057] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3107), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3109), 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, + [153123] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3103), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3105), 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, + [153189] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4675), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [153257] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4677), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [153325] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4679), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, @@ -297819,14 +285849,14 @@ static const uint16_t ts_small_parse_table[] = { [153393] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3297), 2, + ACTIONS(3091), 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, + ACTIONS(3093), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -297881,14 +285911,14 @@ static const uint16_t ts_small_parse_table[] = { [153459] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3297), 2, + ACTIONS(3091), 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, + ACTIONS(3093), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -297943,14 +285973,14 @@ static const uint16_t ts_small_parse_table[] = { [153525] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2972), 2, + ACTIONS(2890), 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, + ACTIONS(2892), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -298005,17 +286035,17 @@ static const uint16_t ts_small_parse_table[] = { [153591] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4763), 1, + ACTIONS(4681), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3225), 49, + ACTIONS(3233), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -298065,80 +286095,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [153659] = 5, + [153659] = 4, 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, + ACTIONS(3067), 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, + ACTIONS(3069), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -298190,17 +286157,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [153793] = 4, + [153725] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2611), 3, + ACTIONS(2581), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2613), 51, + ACTIONS(2583), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -298252,17 +286219,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [153859] = 4, + [153791] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 3, + ACTIONS(2545), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2633), 51, + ACTIONS(2547), 51, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -298314,17 +286281,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [153925] = 4, + [153857] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3319), 2, + ACTIONS(3067), 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, + ACTIONS(3069), 51, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_RBRACE, @@ -298376,20 +286343,3620 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, + [153923] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4683), 1, + aux_sym_sigil_token3, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, [153991] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4767), 1, + ACTIONS(4685), 1, aux_sym_sigil_token3, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, + ACTIONS(3231), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [154059] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4687), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [154126] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3255), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3257), 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, + [154191] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3251), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3253), 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, + [154256] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2565), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2567), 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, + [154321] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_PIPE, + ACTIONS(4697), 1, + anon_sym_when, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(4693), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4705), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4707), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4689), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4709), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3281), 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4719), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4711), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [154424] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_PIPE, + ACTIONS(4697), 1, + anon_sym_when, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(4693), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4725), 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(4705), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4707), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3556), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4689), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4709), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4719), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4711), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [154529] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3107), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3109), 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, + [154594] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3103), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3105), 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, + [154659] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3267), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3269), 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, + [154724] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3271), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3273), 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, + [154789] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2545), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2547), 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, + [154854] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3275), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3277), 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, + [154919] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2581), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2583), 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, + [154984] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3781), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [155051] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4618), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4620), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4592), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4622), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [155132] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4590), 1, + anon_sym_PIPE, + ACTIONS(4604), 1, + anon_sym_EQ_GT, + ACTIONS(4606), 1, + anon_sym_EQ, + ACTIONS(4616), 1, + anon_sym_in, + ACTIONS(4618), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4620), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(4630), 1, + sym__not_in, + ACTIONS(4592), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4608), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4610), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4588), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4612), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4622), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4614), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [155233] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3281), 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, + [155298] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3263), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3265), 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, + [155363] = 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), 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, + [155428] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3255), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3257), 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, + [155493] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3251), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3253), 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, + [155558] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 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(3281), 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, + [155629] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4592), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [155702] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4590), 1, + anon_sym_PIPE, + ACTIONS(4600), 1, + anon_sym_when, + ACTIONS(4602), 1, + anon_sym_COLON_COLON, + ACTIONS(4604), 1, + anon_sym_EQ_GT, + ACTIONS(4606), 1, + anon_sym_EQ, + ACTIONS(4616), 1, + anon_sym_in, + ACTIONS(4618), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4620), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(4630), 1, + sym__not_in, + ACTIONS(4592), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4608), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4610), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4588), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3281), 5, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4612), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4622), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4614), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [155807] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4590), 1, + anon_sym_PIPE, + ACTIONS(4600), 1, + anon_sym_when, + ACTIONS(4602), 1, + anon_sym_COLON_COLON, + ACTIONS(4604), 1, + anon_sym_EQ_GT, + ACTIONS(4606), 1, + anon_sym_EQ, + ACTIONS(4616), 1, + anon_sym_in, + ACTIONS(4618), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4620), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(4630), 1, + sym__not_in, + ACTIONS(4592), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4608), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4610), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4588), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3281), 5, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4612), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4622), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4614), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [155912] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3281), 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, + [155977] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4590), 1, + anon_sym_PIPE, + ACTIONS(4602), 1, + anon_sym_COLON_COLON, + ACTIONS(4604), 1, + anon_sym_EQ_GT, + ACTIONS(4606), 1, + anon_sym_EQ, + ACTIONS(4616), 1, + anon_sym_in, + ACTIONS(4618), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4620), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(4630), 1, + sym__not_in, + ACTIONS(4592), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4608), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4610), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4588), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4612), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3281), 6, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + ACTIONS(4622), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4614), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [156080] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4604), 1, + anon_sym_EQ_GT, + ACTIONS(4606), 1, + anon_sym_EQ, + ACTIONS(4616), 1, + anon_sym_in, + ACTIONS(4618), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4620), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(4630), 1, + sym__not_in, + ACTIONS(4592), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4608), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4610), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4588), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4612), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4622), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4614), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [156179] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4606), 1, + anon_sym_EQ, + ACTIONS(4616), 1, + anon_sym_in, + ACTIONS(4618), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4620), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(4630), 1, + sym__not_in, + ACTIONS(4592), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4608), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4610), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4588), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4612), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4622), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4614), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [156276] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4616), 1, + anon_sym_in, + ACTIONS(4618), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4620), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(4630), 1, + sym__not_in, + ACTIONS(4592), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4610), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4588), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4612), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4622), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4614), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [156369] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4616), 1, + anon_sym_in, + ACTIONS(4618), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4620), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(4630), 1, + sym__not_in, + ACTIONS(4592), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4588), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4612), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4622), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4614), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [156460] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4616), 1, + anon_sym_in, + ACTIONS(4618), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4620), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(4630), 1, + sym__not_in, + ACTIONS(4592), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4588), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4622), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4614), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [156549] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4616), 1, + anon_sym_in, + ACTIONS(4618), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4620), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(4630), 1, + sym__not_in, + ACTIONS(4592), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4622), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [156634] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4620), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4592), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4622), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [156713] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4620), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4592), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4622), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [156792] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4592), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4622), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [156869] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 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(3281), 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, + [156938] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4727), 1, + anon_sym_COMMA, + STATE(3221), 1, + aux_sym_keywords_repeat1, + 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), 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, + [157007] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2545), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2547), 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, + [157072] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2581), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2583), 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, + [157137] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2573), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2575), 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, + [157202] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2565), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2567), 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, + [157267] = 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), 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, + [157332] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3227), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3229), 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, + [157397] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(3227), 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(3229), 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, + [157466] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3227), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3229), 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, + [157531] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3227), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3229), 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, + [157596] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3287), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3289), 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, + [157661] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4730), 1, + anon_sym_COMMA, + STATE(3232), 1, + aux_sym_keywords_repeat1, + 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), 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, + [157730] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2940), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2942), 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, + [157795] = 4, + ACTIONS(5), 1, + sym_comment, + 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, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [157860] = 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, + [157925] = 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), 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, + [157990] = 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(3225), 49, + ACTIONS(3217), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -298439,78 +290006,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [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(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, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DASH_GT, - anon_sym_DOT, - [154124] = 4, + [158055] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3289), 3, + ACTIONS(2573), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3291), 50, + ACTIONS(2575), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -298560,18 +290067,836 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [154189] = 4, + [158120] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4733), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [158187] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4735), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [158254] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3285), 3, + ACTIONS(3203), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3287), 50, + ACTIONS(3205), 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, + [158319] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2992), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2994), 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, + [158384] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2988), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2990), 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, + [158449] = 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, + [158514] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(3123), 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(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_do, + [158583] = 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, + [158648] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + sym__newline_before_do, + ACTIONS(4590), 1, + anon_sym_PIPE, + ACTIONS(4600), 1, + anon_sym_when, + ACTIONS(4602), 1, + anon_sym_COLON_COLON, + ACTIONS(4604), 1, + anon_sym_EQ_GT, + ACTIONS(4606), 1, + anon_sym_EQ, + ACTIONS(4616), 1, + anon_sym_in, + ACTIONS(4618), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4620), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(4630), 1, + sym__not_in, + ACTIONS(4592), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4598), 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(3556), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_do, + ACTIONS(4608), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4610), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4588), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4612), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4622), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4614), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [158755] = 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, + [158820] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3119), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3121), 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, + [158885] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3115), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3117), 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, + [158950] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3111), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3113), 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, + [159015] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3107), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3109), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -298621,77 +290946,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [154254] = 22, + [159080] = 4, 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, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3103), 4, + sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(4783), 3, + anon_sym_LBRACK2, + ACTIONS(3105), 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, - 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_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -298701,18 +290995,213 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [154355] = 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, + [159145] = 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), 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, + [159210] = 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), 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, + [159275] = 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), 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, + [159340] = 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, + ACTIONS(3299), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3433), 49, + ACTIONS(3301), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -298762,18 +291251,365 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [154420] = 4, + [159405] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__not_in, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4693), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4719), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [159486] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(4693), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4719), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4711), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [159571] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_PIPE, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(4693), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4705), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4707), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4689), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4709), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4719), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4711), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [159670] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__not_in, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [159741] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__not_in, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4693), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [159814] = 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, + ACTIONS(3307), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3429), 49, + ACTIONS(3309), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -298823,78 +291659,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [154485] = 24, + [159879] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(4773), 2, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3553), 4, + ACTIONS(4689), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4709), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3281), 6, 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_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -298904,17 +291739,2773 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [154590] = 4, + [159982] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2631), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2565), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2567), 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, + [160047] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 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, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 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(3281), 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, + [160134] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_PIPE, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(4693), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4705), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4707), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4689), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4709), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4719), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4711), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [160235] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(4693), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4705), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4707), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4689), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4709), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4719), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4711), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [160332] = 19, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(4693), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4705), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4707), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4689), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4709), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4719), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4711), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [160427] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(4693), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4707), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4689), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4709), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4719), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4711), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [160518] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(4693), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4689), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4709), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4719), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4711), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [160607] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(4693), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4689), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4719), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4711), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [160694] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(4693), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4719), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [160777] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__not_in, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4693), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4719), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [160856] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__not_in, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4693), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4719), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [160935] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4737), 1, + anon_sym_COMMA, + STATE(3221), 1, + aux_sym_keywords_repeat1, + 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), 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, + [161004] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__not_in, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4693), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4719), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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_SLASH_SLASH, + [161081] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3279), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3281), 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, + [161146] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [161211] = 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), 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, + [161276] = 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), 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, + [161341] = 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(2633), 50, + ACTIONS(2974), 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, + [161406] = 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, + [161471] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3785), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [161538] = 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), 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, + [161603] = 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, + [161668] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4737), 1, + anon_sym_COMMA, + STATE(3276), 1, + aux_sym_keywords_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3391), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3393), 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, + [161737] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3006), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3002), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3004), 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, + [161804] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3000), 1, + aux_sym_quoted_keyword_token1, + 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), 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, + [161871] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3024), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3026), 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, + [161936] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3091), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3093), 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, + [162001] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3091), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3093), 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, + [162066] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3430), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3432), 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, + [162131] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4739), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [162198] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2890), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(2892), 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, + [162263] = 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), 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, + [162328] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3067), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3069), 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, + [162393] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3067), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3069), 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, + [162458] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3067), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3069), 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, + [162523] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3063), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3065), 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, + [162588] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3063), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3065), 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, + [162653] = 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), 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, + [162718] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3002), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3004), 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, + [162783] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3002), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3004), 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, + [162848] = 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), 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, + [162913] = 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), 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, + [162978] = 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, + [163043] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -298965,17 +294556,1493 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [154655] = 4, + [163108] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2611), 2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3317), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3319), 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, + [163173] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [163238] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [163303] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [163368] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [163433] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [163498] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [163563] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [163628] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [163693] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [163758] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [163823] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(4616), 1, + anon_sym_in, + ACTIONS(4618), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4620), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(4630), 1, + sym__not_in, + ACTIONS(4592), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4622), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4614), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [163910] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2920), 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, + ACTIONS(2922), 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, + [163975] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [164040] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [164105] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [164170] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [164235] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3055), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3057), 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, + [164300] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3051), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3053), 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, + [164365] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2980), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2982), 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, + [164430] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [164495] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [164560] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [164625] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [164690] = 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), 50, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -299024,19 +296091,19 @@ 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, - [154720] = 4, + [164755] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2647), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3167), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(2649), 50, + anon_sym_LBRACK2, + ACTIONS(3169), 50, + anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -299085,9 +296152,742 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, + anon_sym_DOT, + [164820] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [164885] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3321), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3323), 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, + [164950] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3383), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3385), 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, + [165015] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3387), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3389), 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, + [165080] = 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, + [165145] = 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, + [165210] = 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, + [165275] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4741), 1, + anon_sym_COMMA, + STATE(3342), 1, + aux_sym_keywords_repeat1, + 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), 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, - [154785] = 4, + [165344] = 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), 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, + [165409] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [165474] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3419), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3421), 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, + [165539] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3419), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3421), 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, + [165604] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 3, @@ -299148,159 +296948,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + [165669] = 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, + ACTIONS(3419), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3295), 49, + ACTIONS(3421), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -299350,29 +297009,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [155083] = 7, + [165734] = 4, 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, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3131), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3295), 47, + 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_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -299413,246 +297068,20 @@ static const uint16_t ts_small_parse_table[] = { 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, + [165799] = 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, + ACTIONS(3434), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3295), 49, + ACTIONS(3436), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -299702,18 +297131,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [155502] = 4, + [165864] = 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, + ACTIONS(3438), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3437), 49, + ACTIONS(3440), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -299763,18 +297192,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [155567] = 4, + [165929] = 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(3442), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3451), 49, + ACTIONS(3444), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -299824,705 +297253,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [155632] = 23, + [165994] = 5, 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, + ACTIONS(4744), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, sym__not_in, - ACTIONS(4674), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4678), 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(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, + ACTIONS(3233), 49, + anon_sym_RPAREN, 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_COMMA, 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, @@ -300554,22 +297305,463 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - anon_sym_do, - [156524] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [166061] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4708), 1, - anon_sym_DOT, - ACTIONS(4710), 1, - anon_sym_LBRACK2, - ACTIONS(3293), 2, - sym__newline_before_do, + ACTIONS(4746), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 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, + ACTIONS(3233), 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, + [166128] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4748), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [166195] = 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), 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, + [166260] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4750), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [166327] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4752), 1, + anon_sym_COMMA, + STATE(3342), 1, + aux_sym_keywords_repeat1, + 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_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, + [166396] = 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), 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, + [166461] = 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), 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, + [166526] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LPAREN, + STATE(2882), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2890), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2892), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -300617,19 +297809,269 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_STAR_STAR, - anon_sym_do, - [156593] = 4, + anon_sym_DOT, + [166595] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LPAREN, + STATE(2881), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2890), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2892), 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, + [166664] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4172), 1, + anon_sym_LPAREN, + STATE(2878), 1, + sym__call_arguments_with_parentheses, + ACTIONS(2890), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2892), 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, + [166733] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3000), 1, + aux_sym_quoted_keyword_token1, + 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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DASH_GT, + anon_sym_DOT, + [166800] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3006), 1, + aux_sym_quoted_keyword_token1, + ACTIONS(3002), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3004), 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, + [166867] = 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, + ACTIONS(3331), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3343), 49, + ACTIONS(3333), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -300679,23 +298121,3140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [156658] = 6, + [166932] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4807), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3151), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3153), 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, - STATE(3229), 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, + [166997] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3147), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3149), 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, + [167062] = 4, + ACTIONS(5), 1, + sym_comment, + 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, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_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(3175), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3177), 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, + [167192] = 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), 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, + [167257] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3783), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [167324] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3606), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [167393] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3604), 1, + anon_sym_STAR_STAR, + ACTIONS(3606), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 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(3281), 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, + [167470] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3600), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3604), 1, + anon_sym_STAR_STAR, + ACTIONS(3606), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 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(3281), 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, + [167549] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3600), 1, + anon_sym_SLASH_SLASH, + ACTIONS(3604), 1, + anon_sym_STAR_STAR, + ACTIONS(3606), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 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(3281), 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, + [167628] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 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, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 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(3281), 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, + [167713] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 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, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3567), 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(3281), 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, + [167802] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 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, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3567), 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(3281), 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, + [167893] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 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, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3590), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3567), 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(3281), 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, + [167986] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 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, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 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(3567), 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(3281), 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, + [168083] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 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, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 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(3567), 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(3281), 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(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, + [168182] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3569), 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, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 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(3567), 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(3281), 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(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, + [168285] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3569), 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, + sym__not_in, + ACTIONS(4754), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 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(3567), 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(3281), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + 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, + [168390] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3569), 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, + sym__not_in, + ACTIONS(4754), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 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(3567), 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(3281), 6, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + 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, + [168495] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3604), 1, + anon_sym_STAR_STAR, + ACTIONS(3606), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3281), 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, + [168568] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3604), 1, + anon_sym_STAR_STAR, + ACTIONS(3606), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [168639] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3279), 1, + aux_sym__terminator_token1, + ACTIONS(3569), 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, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 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(3567), 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(3281), 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(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, + [168740] = 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, + [168805] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + 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(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 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(3281), 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, + [168886] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3139), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3141), 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, + [168951] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3801), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [169018] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3787), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [169085] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3789), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [169152] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3791), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [169219] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3793), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [169286] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3795), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [169353] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3797), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [169420] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3799), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [169487] = 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, + [169552] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3803), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [169619] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3805), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [169686] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3807), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [169753] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3809), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [169820] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3811), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [169887] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3813), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [169954] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3815), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [170021] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3817), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [170088] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3819), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [170155] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(3279), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4509), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [170232] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4752), 1, + anon_sym_COMMA, + STATE(3358), 1, + aux_sym_keywords_repeat1, + ACTIONS(3391), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3393), 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, + [170301] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(4507), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(3279), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4509), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [170380] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3550), 1, + sym__newline_before_do, + ACTIONS(4590), 1, + anon_sym_PIPE, + ACTIONS(4600), 1, + anon_sym_when, + ACTIONS(4602), 1, + anon_sym_COLON_COLON, + ACTIONS(4604), 1, + anon_sym_EQ_GT, + ACTIONS(4606), 1, + anon_sym_EQ, + ACTIONS(4616), 1, + anon_sym_in, + ACTIONS(4618), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4620), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(4630), 1, + sym__not_in, + ACTIONS(4592), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4598), 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(3552), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_do, + ACTIONS(4608), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4610), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4588), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4612), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4622), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4614), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [170487] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4756), 1, + anon_sym_COMMA, + STATE(3232), 1, aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3134), 3, + ACTIONS(3401), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3136), 48, + ACTIONS(3403), 47, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -300742,22 +301301,2183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [156727] = 6, + [170556] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4810), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2573), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2575), 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, - STATE(3230), 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, + [170621] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2581), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2583), 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, + [170686] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3028), 1, + sym__newline_before_do, + ACTIONS(4590), 1, + anon_sym_PIPE, + ACTIONS(4600), 1, + anon_sym_when, + ACTIONS(4602), 1, + anon_sym_COLON_COLON, + ACTIONS(4604), 1, + anon_sym_EQ_GT, + ACTIONS(4606), 1, + anon_sym_EQ, + ACTIONS(4616), 1, + anon_sym_in, + ACTIONS(4618), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4620), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4624), 1, + anon_sym_STAR_STAR, + ACTIONS(4626), 1, + anon_sym_DOT, + ACTIONS(4628), 1, + anon_sym_LBRACK2, + ACTIONS(4630), 1, + sym__not_in, + ACTIONS(4592), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4596), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4598), 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(3030), 3, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_do, + ACTIONS(4608), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4610), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4588), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4612), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4622), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4614), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [170793] = 14, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(4503), 1, + anon_sym_in, + ACTIONS(4505), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4507), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4513), 1, + sym__not_in, + ACTIONS(4479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4509), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [170878] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(4503), 1, + anon_sym_in, + ACTIONS(4505), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4507), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4513), 1, + sym__not_in, + ACTIONS(4479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4475), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4509), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4501), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [170967] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(4503), 1, + anon_sym_in, + ACTIONS(4505), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4507), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4513), 1, + sym__not_in, + ACTIONS(4479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4475), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4499), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4509), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4501), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [171058] = 18, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(4503), 1, + anon_sym_in, + ACTIONS(4505), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4507), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4513), 1, + sym__not_in, + ACTIONS(4479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4497), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4475), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4499), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4509), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4501), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [171151] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(4493), 1, + anon_sym_EQ, + ACTIONS(4503), 1, + anon_sym_in, + ACTIONS(4505), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4507), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4513), 1, + sym__not_in, + ACTIONS(4479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4495), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4497), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4475), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4499), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4509), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4501), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [171248] = 21, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(4491), 1, + anon_sym_EQ_GT, + ACTIONS(4493), 1, + anon_sym_EQ, + ACTIONS(4503), 1, + anon_sym_in, + ACTIONS(4505), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4507), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4513), 1, + sym__not_in, + ACTIONS(4479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4495), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4497), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4475), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4499), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4509), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4501), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [171347] = 23, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4489), 1, + anon_sym_COLON_COLON, + ACTIONS(4491), 1, + anon_sym_EQ_GT, + ACTIONS(4493), 1, + anon_sym_EQ, + ACTIONS(4503), 1, + anon_sym_in, + ACTIONS(4505), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4507), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4513), 1, + sym__not_in, + ACTIONS(4479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4495), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4497), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4475), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4499), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3281), 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_do, + ACTIONS(4509), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4501), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [171450] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4487), 1, + anon_sym_when, + ACTIONS(4489), 1, + anon_sym_COLON_COLON, + ACTIONS(4491), 1, + anon_sym_EQ_GT, + ACTIONS(4493), 1, + anon_sym_EQ, + ACTIONS(4503), 1, + anon_sym_in, + ACTIONS(4505), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4507), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4513), 1, + sym__not_in, + ACTIONS(4479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4495), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4497), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4475), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3281), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4499), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4509), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4501), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [171555] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4487), 1, + anon_sym_when, + ACTIONS(4489), 1, + anon_sym_COLON_COLON, + ACTIONS(4491), 1, + anon_sym_EQ_GT, + ACTIONS(4493), 1, + anon_sym_EQ, + ACTIONS(4503), 1, + anon_sym_in, + ACTIONS(4505), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4507), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4513), 1, + sym__not_in, + ACTIONS(4479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4495), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4497), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4475), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3281), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_do, + ACTIONS(4499), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4509), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4501), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [171660] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3099), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3101), 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, + [171725] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3095), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3097), 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, + [171790] = 8, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(3279), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [171863] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3087), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3089), 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, + [171928] = 7, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(3279), 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(3281), 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, + [171999] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(4477), 1, + anon_sym_PIPE, + ACTIONS(4491), 1, + anon_sym_EQ_GT, + ACTIONS(4493), 1, + anon_sym_EQ, + ACTIONS(4503), 1, + anon_sym_in, + ACTIONS(4505), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4507), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4513), 1, + sym__not_in, + ACTIONS(4479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4495), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4497), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4475), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4499), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4509), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4501), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [172100] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__newline_before_do, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(4503), 1, + anon_sym_in, + ACTIONS(4505), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4507), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(4513), 1, + sym__not_in, + ACTIONS(4479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4509), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4501), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [172187] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(4505), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4507), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(3279), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4509), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [172268] = 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), 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, + [172333] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3452), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3454), 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, + [172398] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3083), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3085), 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, + [172463] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3448), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3450), 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, + [172528] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3079), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3081), 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, + [172593] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4758), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [172660] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4760), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [172727] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4762), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [172794] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3059), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3061), 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, + [172859] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 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, + [172924] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3071), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3073), 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, + [172989] = 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), 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, + [173054] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4756), 1, + anon_sym_COMMA, + STATE(3414), 1, aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3134), 4, + ACTIONS(3391), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3136), 47, + ACTIONS(3393), 47, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -300805,17 +303525,871 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [156796] = 4, + [173123] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3237), 3, + ACTIONS(3075), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3239), 50, + ACTIONS(3077), 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, + [173188] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3079), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3081), 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, + [173253] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3083), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3085), 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, + [173318] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3087), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3089), 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, + [173383] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3095), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3097), 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, + [173448] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3099), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3101), 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, + [173513] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_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, + [173578] = 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_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, + [173643] = 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, + [173708] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3139), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3141), 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, + [173773] = 4, + ACTIONS(5), 1, + sym_comment, + 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_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + aux_sym_sigil_token3, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_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, + [173838] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3147), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3149), 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, + [173903] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3151), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3153), 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, + [173968] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2912), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2914), 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, + [174033] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3255), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3257), 50, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -300866,18 +304440,505 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [156861] = 4, + [174098] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3496), 3, + ACTIONS(3155), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3498), 50, + ACTIONS(3157), 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, + [174163] = 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), 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, + [174228] = 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), 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, + [174293] = 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), 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, + [174358] = 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), 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, + [174423] = 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), 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, + [174488] = 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), 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, + [174553] = 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), 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, + [174618] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3103), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3105), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -300926,19 +304987,19 @@ 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, - [156926] = 4, + [174683] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3107), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, 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, + ACTIONS(3109), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -300987,19 +305048,19 @@ 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, - [156991] = 4, + [174748] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3307), 4, + ACTIONS(3187), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3309), 49, + ACTIONS(3189), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -301049,18 +305110,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [157056] = 4, + anon_sym_end, + [174813] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3303), 4, + ACTIONS(3191), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3305), 49, + ACTIONS(3193), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -301110,18 +305171,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [157121] = 4, + anon_sym_end, + [174878] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 4, + ACTIONS(3195), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2633), 49, + ACTIONS(3197), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -301171,18 +305232,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [157186] = 4, + anon_sym_end, + [174943] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2611), 4, + ACTIONS(3199), 3, sym__not_in, - ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2613), 49, + ACTIONS(3201), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -301232,19 +305293,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [157251] = 4, + anon_sym_end, + [175008] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3468), 3, + ACTIONS(3203), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3470), 50, + ACTIONS(3205), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -301293,7 +305354,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [157316] = 4, + anon_sym_end, + [175073] = 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), 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, + [175138] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -301305,7 +305428,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK2, ACTIONS(3213), 50, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -301354,3626 +305476,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_end, + [175203] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3215), 3, + ACTIONS(3223), 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, - 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_RPAREN, - anon_sym_LT, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [158035] = 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), 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, - [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(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, - [158230] = 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, - [158295] = 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, - [158360] = 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), 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, - [158425] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4813), 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, - [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(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_do, - [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(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(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, - [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(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, - [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(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), 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, - [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, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - 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, - 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, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - [160741] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4815), 1, - anon_sym_COMMA, - STATE(3229), 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_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, - [160810] = 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(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), 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_SLASH_SLASH, - [160887] = 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), 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, - [160952] = 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, - [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, + ACTIONS(3225), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -305024,17 +305538,803 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [161472] = 4, + [175268] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3110), 2, + ACTIONS(3894), 1, + anon_sym_DOT, + ACTIONS(3896), 1, + anon_sym_LBRACK2, + ACTIONS(4507), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4511), 1, + anon_sym_STAR_STAR, + ACTIONS(3279), 2, + sym__newline_before_do, + sym__not_in, + ACTIONS(4479), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4483), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4509), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [175347] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_PIPE, + ACTIONS(4697), 1, + anon_sym_when, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(4693), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4725), 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(4705), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4707), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3552), 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(4689), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4709), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4719), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4711), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [175452] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4764), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 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), 50, + ACTIONS(3233), 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, + [175519] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3606), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3227), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3229), 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, + [175588] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4766), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [175655] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3606), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3123), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3125), 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, + [175724] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2840), 1, + anon_sym_LBRACK2, + ACTIONS(3554), 1, + aux_sym__terminator_token1, + ACTIONS(3569), 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, + sym__not_in, + ACTIONS(4754), 1, + anon_sym_when, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3571), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3575), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3577), 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(3556), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(3567), 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, + [175831] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2545), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2547), 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, + [175896] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3075), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3077), 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, + [175961] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2565), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2567), 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, + [176026] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2573), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2575), 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, + [176091] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3071), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3073), 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, + [176156] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3251), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3253), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -305085,24 +306385,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [161537] = 4, + [176221] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(3255), 2, + sym__not_in, + anon_sym_LBRACK2, 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, + ACTIONS(3257), 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, + [176286] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3103), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3105), 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_GT_GT, anon_sym_PLUS, anon_sym_DASH, anon_sym_LT_DASH, @@ -305145,19 +306507,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_do, - [161602] = 4, + [176351] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2651), 4, + ACTIONS(2908), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2653), 49, + ACTIONS(2910), 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, + [176416] = 4, + ACTIONS(5), 1, + sym_comment, + 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), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -305207,13 +306629,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [161667] = 6, + [176481] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4815), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2964), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2966), 49, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, anon_sym_COMMA, - STATE(3286), 1, - aux_sym_keywords_repeat1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [176546] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3107), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3109), 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, + [176611] = 4, + ACTIONS(5), 1, + sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -305221,13 +306761,15 @@ static const uint16_t ts_small_parse_table[] = { sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3221), 48, + ACTIONS(3221), 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, @@ -305270,21 +306812,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [161736] = 5, + [176676] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3103), 3, + sym__newline_before_do, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3105), 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, + [176741] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2908), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2910), 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, + [176806] = 4, 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, + ACTIONS(2956), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3002), 48, + ACTIONS(2958), 49, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -305332,25 +306995,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [161803] = 5, + [176871] = 4, 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, + ACTIONS(3059), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3008), 48, + ACTIONS(3061), 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, @@ -305394,200 +307056,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [161870] = 4, + [176936] = 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, + ACTIONS(2912), 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, + ACTIONS(2914), 50, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, @@ -305638,10118 +307117,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [162130] = 4, + [177001] = 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), 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, - [162195] = 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), 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, - [162260] = 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, - [162325] = 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), 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, - [162390] = 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), 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, - [162455] = 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), 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, - [162520] = 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), 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, - [162585] = 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), 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, - [162650] = 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, - [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, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3239), 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, - [163040] = 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), 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(3498), 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, - [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, @@ -315758,65 +307128,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(3221), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -315866,446 +307178,995 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [173525] = 4, + [177066] = 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, + ACTIONS(3071), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3050), 49, + ACTIONS(3073), 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, + [177131] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3075), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3077), 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, + [177196] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3079), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3081), 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, + [177261] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3083), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3085), 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, + [177326] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3087), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3089), 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, + [177391] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2964), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2966), 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, + [177456] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3095), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3097), 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, + [177521] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3099), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3101), 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, + [177586] = 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, + [177651] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3251), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3253), 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, + [177716] = 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, + [177781] = 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, + [177846] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3139), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3141), 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, + [177911] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4768), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [177978] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3147), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3149), 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, + [178043] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3151), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3153), 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, + [178108] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2968), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2970), 49, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LT, @@ -316355,24 +308216,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [174045] = 4, + [178173] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3), 2, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3480), 3, - sym__not_in, aux_sym__terminator_token1, + ACTIONS(3107), 3, + sym__newline_before_do, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(3482), 50, - anon_sym_SEMI, + ACTIONS(3109), 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, @@ -316415,506 +308276,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [174110] = 4, + anon_sym_do, + [178238] = 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, + 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(3291), 50, + ACTIONS(3205), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -316965,17 +308338,875 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [174695] = 4, + [178303] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3285), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2920), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2922), 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, + [178368] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3781), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [178435] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3783), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [178502] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3785), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [178569] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2930), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2932), 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, + [178634] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2992), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2994), 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, + [178699] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3787), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [178766] = 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), 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, + [178831] = 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), 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, + [178896] = 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), 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, + [178961] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2956), 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, + ACTIONS(2958), 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, + [179026] = 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), 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, + [179091] = 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), 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, + [179156] = 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), 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, + [179221] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3059), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3061), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -317026,17 +309257,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [174760] = 4, + [179286] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3259), 3, + ACTIONS(3179), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3261), 50, + ACTIONS(3181), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -317086,18 +309318,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [174825] = 4, + [179351] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3253), 3, + ACTIONS(3183), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3255), 50, + ACTIONS(3185), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -317147,18 +309379,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [174890] = 4, + [179416] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3245), 3, + ACTIONS(3187), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3247), 50, + ACTIONS(3189), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -317208,659 +309440,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [174955] = 4, + [179481] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3241), 3, + ACTIONS(3191), 4, 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_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, + aux_sym_sigil_token3, anon_sym_COMMA, anon_sym_PLUS, anon_sym_DASH, @@ -317903,100 +309500,19 @@ static const uint16_t ts_small_parse_table[] = { 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, + [179546] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3486), 3, + ACTIONS(3195), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3488), 50, + ACTIONS(3197), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -318046,18 +309562,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [175890] = 4, + [179611] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3496), 3, + ACTIONS(3199), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3498), 50, + ACTIONS(3201), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -318107,18 +309623,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [175955] = 4, + [179676] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3237), 3, + ACTIONS(3203), 4, sym__not_in, + ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3239), 50, + ACTIONS(3205), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -318168,142 +309684,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - anon_sym_end, - [176020] = 5, + [179741] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4844), 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), 49, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, aux_sym_sigil_token3, - ACTIONS(3223), 2, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [179806] = 4, + ACTIONS(5), 1, + sym_comment, + 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(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, + ACTIONS(3221), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -318354,3183 +309806,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + [179871] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, @@ -321591,18 +309867,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [179672] = 4, + [179936] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3468), 4, + ACTIONS(3223), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3470), 49, + ACTIONS(3225), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -321652,322 +309928,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [179737] = 4, + [180001] = 24, 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, + ACTIONS(4645), 1, anon_sym_DOT, - [179802] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3311), 2, - sym__not_in, + ACTIONS(4647), 1, 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, + ACTIONS(4691), 1, anon_sym_PIPE, - anon_sym_SLASH, - aux_sym_sigil_token3, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, + ACTIONS(4697), 1, anon_sym_when, + ACTIONS(4699), 1, anon_sym_COLON_COLON, + ACTIONS(4701), 1, anon_sym_EQ_GT, + ACTIONS(4703), 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(4713), 1, anon_sym_in, + ACTIONS(4715), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 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(4721), 1, 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, + ACTIONS(4723), 1, 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, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3459), 4, + ACTIONS(3030), 4, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_COMMA, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -321977,24 +310009,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [180102] = 5, + [180106] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3871), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3071), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, 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, + ACTIONS(3073), 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, @@ -322037,26 +310068,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, - anon_sym_end, - [180169] = 5, + [180171] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3873), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3075), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, 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, + ACTIONS(3077), 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, @@ -322099,21 +310129,21 @@ 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_end, [180236] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3875), 1, + ACTIONS(3789), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 49, + ACTIONS(3233), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -322163,24 +310193,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [180303] = 5, + [180303] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3877), 1, - aux_sym_sigil_token3, - ACTIONS(3), 2, + ACTIONS(3079), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, 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, + ACTIONS(3081), 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, @@ -322223,20 +310252,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_end, - [180370] = 4, + [180368] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2990), 4, + ACTIONS(2980), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2992), 49, + ACTIONS(2982), 49, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LT, @@ -322286,17 +310315,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [180435] = 4, + [180433] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3331), 2, + ACTIONS(3083), 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, + ACTIONS(3085), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -322347,17 +310376,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [180500] = 4, + [180498] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3335), 2, + ACTIONS(3087), 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, + ACTIONS(3089), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -322408,17 +310437,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [180565] = 4, + [180563] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3399), 2, + ACTIONS(3095), 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, + ACTIONS(3097), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -322469,18 +310498,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [180630] = 4, + [180628] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2996), 4, + ACTIONS(2988), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2998), 49, + ACTIONS(2990), 49, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LT, @@ -322530,17 +310559,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [180695] = 4, + [180693] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3441), 2, + 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(3443), 50, + ACTIONS(3201), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -322591,17 +310620,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [180760] = 4, + [180758] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3445), 2, + ACTIONS(3099), 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, + ACTIONS(3101), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -322652,18 +310681,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [180825] = 4, + [180823] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3078), 4, + ACTIONS(2952), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3080), 49, + ACTIONS(2954), 49, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LT, @@ -322713,17 +310742,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [180890] = 4, + [180888] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3500), 2, + 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(3502), 50, + ACTIONS(3129), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -322774,17 +310803,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [180955] = 4, + [180953] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3522), 2, + 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(3524), 50, + ACTIONS(3133), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -322835,17 +310864,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [181020] = 4, + [181018] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3526), 2, + 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(3528), 50, + ACTIONS(3137), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -322896,254 +310925,7 @@ static const uint16_t ts_small_parse_table[] = { 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, + [181083] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3211), 2, @@ -323204,17 +310986,203 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [181416] = 4, + [181148] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3480), 2, + ACTIONS(4770), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [181215] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4772), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [181282] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4774), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [181349] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3139), 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, + ACTIONS(3141), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -323265,17 +311233,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [181481] = 4, + [181414] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3415), 2, + 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(3417), 50, + ACTIONS(3145), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -323326,1193 +311294,17 @@ static const uint16_t ts_small_parse_table[] = { 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, + [181479] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 3, + ACTIONS(2545), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2633), 50, + ACTIONS(2547), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -324563,17 +311355,1255 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, + [181544] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2581), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2583), 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, + [181609] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4776), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [181676] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4778), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [181743] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4780), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [181810] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4782), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [181877] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4784), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [181944] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4786), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [182011] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4788), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [182078] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4790), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [182145] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4792), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [182212] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4794), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [182279] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4796), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [182346] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4798), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [182413] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4800), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [182480] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4802), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [182547] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4804), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [182614] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4806), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [182681] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4808), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [182748] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3147), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3149), 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, + [182813] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3791), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, [182880] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2611), 3, + ACTIONS(2573), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2613), 50, + ACTIONS(2575), 50, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -324627,14 +312657,75 @@ static const uint16_t ts_small_parse_table[] = { [182945] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3315), 2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(2565), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2567), 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, + [183010] = 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(3317), 50, + ACTIONS(3193), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -324685,19 +312776,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [183010] = 5, + [183075] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3879), 1, + 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), 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, + [183140] = 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), 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, + [183205] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3793), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 49, + ACTIONS(3233), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -324747,141 +312960,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [183077] = 4, + [183272] = 5, 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, + ACTIONS(3795), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 49, + ACTIONS(3233), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -324931,19 +313022,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [183274] = 5, + [183339] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3883), 1, + ACTIONS(3797), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 49, + ACTIONS(3233), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -324993,141 +313084,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [183341] = 5, + [183406] = 25, 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, + ACTIONS(3028), 1, sym__newline_before_do, - ACTIONS(3979), 1, + ACTIONS(3894), 1, anon_sym_DOT, - ACTIONS(3981), 1, + ACTIONS(3896), 1, anon_sym_LBRACK2, - ACTIONS(4559), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4569), 1, + ACTIONS(4487), 1, anon_sym_when, - ACTIONS(4571), 1, + ACTIONS(4489), 1, anon_sym_COLON_COLON, - ACTIONS(4573), 1, + ACTIONS(4491), 1, anon_sym_EQ_GT, - ACTIONS(4575), 1, + ACTIONS(4493), 1, anon_sym_EQ, - ACTIONS(4585), 1, + ACTIONS(4503), 1, anon_sym_in, - ACTIONS(4587), 1, + ACTIONS(4505), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4589), 1, + ACTIONS(4507), 1, anon_sym_SLASH_SLASH, - ACTIONS(4593), 1, + ACTIONS(4511), 1, anon_sym_STAR_STAR, - ACTIONS(4595), 1, + ACTIONS(4513), 1, sym__not_in, - ACTIONS(4561), 2, + ACTIONS(4479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4565), 2, + ACTIONS(4483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4567), 2, + ACTIONS(4485), 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, + ACTIONS(3030), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_do, - ACTIONS(4577), 3, + ACTIONS(4495), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4579), 3, + ACTIONS(4497), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4557), 4, + ACTIONS(4475), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4581), 5, + ACTIONS(4499), 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, + ACTIONS(4509), 6, anon_sym_PLUS_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, + ACTIONS(4501), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -325137,79 +313166,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [183515] = 25, + [183513] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3544), 1, + ACTIONS(3550), 1, sym__newline_before_do, - ACTIONS(3979), 1, + ACTIONS(3894), 1, anon_sym_DOT, - ACTIONS(3981), 1, + ACTIONS(3896), 1, anon_sym_LBRACK2, - ACTIONS(4559), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4569), 1, + ACTIONS(4487), 1, anon_sym_when, - ACTIONS(4571), 1, + ACTIONS(4489), 1, anon_sym_COLON_COLON, - ACTIONS(4573), 1, + ACTIONS(4491), 1, anon_sym_EQ_GT, - ACTIONS(4575), 1, + ACTIONS(4493), 1, anon_sym_EQ, - ACTIONS(4585), 1, + ACTIONS(4503), 1, anon_sym_in, - ACTIONS(4587), 1, + ACTIONS(4505), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4589), 1, + ACTIONS(4507), 1, anon_sym_SLASH_SLASH, - ACTIONS(4593), 1, + ACTIONS(4511), 1, anon_sym_STAR_STAR, - ACTIONS(4595), 1, + ACTIONS(4513), 1, sym__not_in, - ACTIONS(4561), 2, + ACTIONS(4479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4565), 2, + ACTIONS(4483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4567), 2, + ACTIONS(4485), 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, + ACTIONS(3552), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_do, - ACTIONS(4577), 3, + ACTIONS(4495), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4579), 3, + ACTIONS(4497), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4557), 4, + ACTIONS(4475), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4581), 5, + ACTIONS(4499), 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, + ACTIONS(4509), 6, anon_sym_PLUS_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, + ACTIONS(4501), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -325219,17 +313248,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [183622] = 4, + [183620] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3141), 2, + 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(3143), 50, + ACTIONS(3181), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -325280,17 +313309,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [183687] = 4, + [183685] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3145), 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(3147), 50, + ACTIONS(3177), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -325341,19 +313370,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [183752] = 4, + [183750] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2631), 5, + ACTIONS(2545), 5, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2633), 48, + ACTIONS(2547), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -325402,19 +313431,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [183817] = 4, + [183815] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2611), 5, + ACTIONS(2581), 5, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2613), 48, + ACTIONS(2583), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -325463,79 +313492,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [183882] = 25, + [183880] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3551), 1, + ACTIONS(3554), 1, sym__newline_before_do, - ACTIONS(3979), 1, + ACTIONS(3894), 1, anon_sym_DOT, - ACTIONS(3981), 1, + ACTIONS(3896), 1, anon_sym_LBRACK2, - ACTIONS(4559), 1, + ACTIONS(4477), 1, anon_sym_PIPE, - ACTIONS(4569), 1, + ACTIONS(4487), 1, anon_sym_when, - ACTIONS(4571), 1, + ACTIONS(4489), 1, anon_sym_COLON_COLON, - ACTIONS(4573), 1, + ACTIONS(4491), 1, anon_sym_EQ_GT, - ACTIONS(4575), 1, + ACTIONS(4493), 1, anon_sym_EQ, - ACTIONS(4585), 1, + ACTIONS(4503), 1, anon_sym_in, - ACTIONS(4587), 1, + ACTIONS(4505), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4589), 1, + ACTIONS(4507), 1, anon_sym_SLASH_SLASH, - ACTIONS(4593), 1, + ACTIONS(4511), 1, anon_sym_STAR_STAR, - ACTIONS(4595), 1, + ACTIONS(4513), 1, sym__not_in, - ACTIONS(4561), 2, + ACTIONS(4479), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4565), 2, + ACTIONS(4483), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4567), 2, + ACTIONS(4485), 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, + ACTIONS(3556), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_do, - ACTIONS(4577), 3, + ACTIONS(4495), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4579), 3, + ACTIONS(4497), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4557), 4, + ACTIONS(4475), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4581), 5, + ACTIONS(4499), 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, + ACTIONS(4509), 6, anon_sym_PLUS_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, + ACTIONS(4501), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -325545,19 +313574,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [183989] = 5, + [183987] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3887), 1, + ACTIONS(3799), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 49, + ACTIONS(3233), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -325607,19 +313636,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [184056] = 5, + [184054] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3889), 1, + ACTIONS(3801), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 49, + ACTIONS(3233), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -325669,19 +313698,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [184123] = 5, + [184121] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3891), 1, + ACTIONS(3803), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 49, + ACTIONS(3233), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -325731,21 +313760,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [184190] = 6, + [184188] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4890), 1, + ACTIONS(4810), 1, anon_sym_COMMA, - STATE(3626), 1, + STATE(3614), 1, aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3219), 3, + ACTIONS(3391), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3221), 48, + ACTIONS(3393), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -325794,21 +313823,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [184259] = 6, + [184257] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4890), 1, + ACTIONS(4810), 1, anon_sym_COMMA, - STATE(3627), 1, + STATE(3615), 1, aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3149), 3, + ACTIONS(3401), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3151), 48, + ACTIONS(3403), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -325857,21 +313886,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [184328] = 6, + [184326] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4892), 1, + ACTIONS(4812), 1, anon_sym_COMMA, - STATE(3627), 1, + STATE(3615), 1, aux_sym_keywords_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3134), 3, + ACTIONS(3311), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3136), 48, + ACTIONS(3313), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -325920,17 +313949,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [184397] = 4, + [184395] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3229), 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(3231), 50, + ACTIONS(3173), 50, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -325981,19 +314010,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [184462] = 5, + [184460] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3893), 1, + ACTIONS(3805), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 49, + ACTIONS(3233), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -326043,446 +314072,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [184529] = 4, + [184527] = 5, 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), 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, - [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, + ACTIONS(3807), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 49, + ACTIONS(3233), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -326532,19 +314134,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [185051] = 5, + [184594] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3897), 1, + ACTIONS(3809), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 49, + ACTIONS(3233), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -326594,19 +314196,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [185118] = 5, + [184661] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3899), 1, + 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), 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, + [184726] = 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), 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, + [184791] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3811), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 49, + ACTIONS(3233), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -326656,19 +314380,325 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, + [184858] = 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), 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, + [184923] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2968), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2970), 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, + [184988] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3151), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3153), 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, + [185053] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3813), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [185120] = 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), 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, [185185] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3901), 1, + ACTIONS(3815), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 49, + ACTIONS(3233), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -326721,16 +314751,16 @@ static const uint16_t ts_small_parse_table[] = { [185252] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3903), 1, + ACTIONS(3817), 1, aux_sym_sigil_token3, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3223), 3, + ACTIONS(3231), 3, sym__not_in, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3225), 49, + ACTIONS(3233), 49, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -326780,18 +314810,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_end, - [185319] = 4, + [185319] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3819), 1, + aux_sym_sigil_token3, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3231), 3, + sym__not_in, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3233), 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, + [185386] = 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, + ACTIONS(3255), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3309), 49, + ACTIONS(3257), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -326841,18 +314933,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [185384] = 4, + [185451] = 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, + ACTIONS(3251), 3, sym__newline_before_do, sym__not_in, anon_sym_LBRACK2, - ACTIONS(3305), 49, + ACTIONS(3253), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -326902,140 +314994,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DOT, anon_sym_do, - [185449] = 4, + [185516] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3074), 2, - sym__not_in, + ACTIONS(2840), 1, anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, + ACTIONS(3550), 1, aux_sym__terminator_token1, - ACTIONS(3076), 50, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LT, - anon_sym_GT, + ACTIONS(3569), 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(3582), 1, anon_sym_COLON_COLON, + ACTIONS(3584), 1, anon_sym_EQ_GT, + ACTIONS(3586), 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(3596), 1, anon_sym_in, + ACTIONS(3598), 1, anon_sym_CARET_CARET_CARET, + ACTIONS(3600), 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(3604), 1, anon_sym_STAR_STAR, - anon_sym_DASH_GT, + ACTIONS(3606), 1, 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, + ACTIONS(3608), 1, sym__not_in, - ACTIONS(4834), 1, + ACTIONS(4754), 1, anon_sym_when, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3648), 2, + ACTIONS(3571), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3652), 2, + ACTIONS(3575), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3654), 2, + ACTIONS(3577), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3665), 3, + ACTIONS(3588), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(3667), 3, + ACTIONS(3590), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3546), 4, + ACTIONS(3552), 4, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_GT, - ACTIONS(3644), 4, + ACTIONS(3567), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3669), 5, + 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(3679), 6, + 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(3671), 9, + ACTIONS(3594), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -327045,23 +315076,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [185621] = 4, + [185623] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3078), 2, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, + ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, + ACTIONS(3059), 3, + sym__not_in, aux_sym__terminator_token1, - ACTIONS(3080), 50, - anon_sym_LPAREN, + anon_sym_LBRACK2, + ACTIONS(3061), 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, @@ -327104,82 +315136,81 @@ 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, - [185686] = 26, + [185688] = 26, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(4897), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(4817), 1, anon_sym_COMMA, - STATE(5183), 1, + STATE(5171), 1, aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4895), 2, + ACTIONS(4815), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -327189,19 +315220,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [185795] = 4, + [185797] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2647), 5, + ACTIONS(2573), 5, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2649), 48, + ACTIONS(2575), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -327250,19 +315281,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [185860] = 4, + [185862] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2651), 5, + ACTIONS(2565), 5, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2653), 48, + ACTIONS(2567), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -327311,18 +315342,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [185925] = 4, + [185927] = 4, ACTIONS(5), 1, sym_comment, + ACTIONS(2952), 2, + sym__not_in, + anon_sym_LBRACK2, 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), 49, + ACTIONS(2954), 50, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -327372,18 +315403,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [185990] = 4, + [185992] = 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, + ACTIONS(2581), 3, sym__not_in, aux_sym_quoted_keyword_token1, anon_sym_LBRACK2, - ACTIONS(2633), 49, + ACTIONS(2583), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -327433,19 +315464,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [186055] = 5, + [186057] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(4899), 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, + ACTIONS(2545), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2547), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -327498,16 +315528,16 @@ static const uint16_t ts_small_parse_table[] = { [186122] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4901), 1, + ACTIONS(4819), 1, aux_sym_sigil_token3, - ACTIONS(3223), 2, + ACTIONS(3231), 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, + ACTIONS(3233), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -327560,16 +315590,16 @@ static const uint16_t ts_small_parse_table[] = { [186189] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4903), 1, + ACTIONS(4821), 1, aux_sym_sigil_token3, - ACTIONS(3223), 2, + ACTIONS(3231), 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, + ACTIONS(3233), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -327622,16 +315652,16 @@ static const uint16_t ts_small_parse_table[] = { [186256] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4905), 1, + ACTIONS(4823), 1, aux_sym_sigil_token3, - ACTIONS(3223), 2, + ACTIONS(3231), 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, + ACTIONS(3233), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -327684,16 +315714,16 @@ static const uint16_t ts_small_parse_table[] = { [186323] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4907), 1, + ACTIONS(4825), 1, aux_sym_sigil_token3, - ACTIONS(3223), 2, + ACTIONS(3231), 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, + ACTIONS(3233), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -327746,16 +315776,16 @@ static const uint16_t ts_small_parse_table[] = { [186390] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4909), 1, + ACTIONS(4827), 1, aux_sym_sigil_token3, - ACTIONS(3223), 2, + ACTIONS(3231), 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, + ACTIONS(3233), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -327808,16 +315838,16 @@ static const uint16_t ts_small_parse_table[] = { [186457] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(4911), 1, + ACTIONS(4829), 1, aux_sym_sigil_token3, - ACTIONS(3223), 2, + ACTIONS(3231), 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, + ACTIONS(3233), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -327870,14 +315900,14 @@ static const uint16_t ts_small_parse_table[] = { [186524] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3018), 2, + ACTIONS(2930), 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, + ACTIONS(2932), 50, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LT, @@ -327931,14 +315961,14 @@ static const uint16_t ts_small_parse_table[] = { [186589] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3323), 2, + ACTIONS(3279), 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), 49, + ACTIONS(3281), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -327991,14 +316021,14 @@ static const uint16_t ts_small_parse_table[] = { [186653] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3468), 2, + 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(3470), 49, + ACTIONS(3205), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -328054,12 +316084,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3407), 4, + ACTIONS(3051), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3409), 48, + ACTIONS(3053), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -328114,12 +316144,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3403), 4, + ACTIONS(3055), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3405), 48, + ACTIONS(3057), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -328174,12 +316204,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3006), 4, + ACTIONS(2996), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3008), 48, + ACTIONS(2998), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -328231,14 +316261,14 @@ static const uint16_t ts_small_parse_table[] = { [186909] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3289), 2, + ACTIONS(3103), 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), 49, + ACTIONS(3105), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -328291,14 +316321,14 @@ static const uint16_t ts_small_parse_table[] = { [186973] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3307), 2, + ACTIONS(3255), 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, + ACTIONS(3257), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -328351,14 +316381,14 @@ static const uint16_t ts_small_parse_table[] = { [187037] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3303), 2, + ACTIONS(3251), 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, + ACTIONS(3253), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -328411,14 +316441,14 @@ static const uint16_t ts_small_parse_table[] = { [187101] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3285), 2, + ACTIONS(3107), 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), 49, + ACTIONS(3109), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -328471,75 +316501,75 @@ static const uint16_t ts_small_parse_table[] = { [187165] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3544), 1, + ACTIONS(3550), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4611), 1, + ACTIONS(4529), 1, anon_sym_PIPE, - ACTIONS(4619), 1, + ACTIONS(4537), 1, anon_sym_when, - ACTIONS(4621), 1, + ACTIONS(4539), 1, anon_sym_COLON_COLON, - ACTIONS(4623), 1, + ACTIONS(4541), 1, anon_sym_EQ_GT, - ACTIONS(4625), 1, + ACTIONS(4543), 1, anon_sym_EQ, - ACTIONS(4635), 1, + ACTIONS(4553), 1, anon_sym_in, - ACTIONS(4637), 1, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4639), 1, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - ACTIONS(4643), 1, + ACTIONS(4561), 1, anon_sym_STAR_STAR, - ACTIONS(4645), 1, + ACTIONS(4563), 1, anon_sym_DOT, - ACTIONS(4647), 1, + ACTIONS(4565), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4613), 2, + ACTIONS(4531), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4615), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4617), 2, + ACTIONS(4535), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3546), 3, + ACTIONS(3552), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_end, - ACTIONS(4627), 3, + ACTIONS(4545), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4629), 3, + ACTIONS(4547), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4609), 4, + ACTIONS(4527), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4631), 5, + ACTIONS(4549), 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, + ACTIONS(4559), 6, anon_sym_PLUS_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, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -328552,14 +316582,14 @@ static const uint16_t ts_small_parse_table[] = { [187271] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3134), 2, + 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(3136), 49, + ACTIONS(3313), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -328612,75 +316642,75 @@ static const uint16_t ts_small_parse_table[] = { [187335] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3544), 1, + ACTIONS(3550), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4514), 1, + ACTIONS(4432), 1, anon_sym_PIPE, - ACTIONS(4522), 1, + ACTIONS(4440), 1, anon_sym_when, - ACTIONS(4524), 1, + ACTIONS(4442), 1, anon_sym_COLON_COLON, - ACTIONS(4526), 1, + ACTIONS(4444), 1, anon_sym_EQ_GT, - ACTIONS(4528), 1, + ACTIONS(4446), 1, anon_sym_EQ, - ACTIONS(4538), 1, + ACTIONS(4456), 1, anon_sym_in, - ACTIONS(4540), 1, + ACTIONS(4458), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4542), 1, + ACTIONS(4460), 1, anon_sym_SLASH_SLASH, - ACTIONS(4546), 1, + ACTIONS(4464), 1, anon_sym_STAR_STAR, - ACTIONS(4548), 1, + ACTIONS(4466), 1, anon_sym_DOT, - ACTIONS(4550), 1, + ACTIONS(4468), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4516), 2, + ACTIONS(4434), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4518), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4520), 2, + ACTIONS(4438), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3546), 3, + ACTIONS(3552), 3, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4530), 3, + ACTIONS(4448), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4532), 3, + ACTIONS(4450), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4512), 4, + ACTIONS(4430), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4534), 5, + ACTIONS(4452), 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, + ACTIONS(4462), 6, anon_sym_PLUS_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, + ACTIONS(4454), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -328690,21 +316720,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [187441] = 6, + [187441] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(4913), 1, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(4555), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4557), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4561), 1, + anon_sym_STAR_STAR, + ACTIONS(4563), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(4531), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4533), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4559), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 35, + anon_sym_SEMI, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, anon_sym_COMMA, - STATE(3673), 1, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_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, + [187521] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4831), 1, + anon_sym_COMMA, + STATE(3661), 1, aux_sym_keywords_repeat1, - ACTIONS(3149), 2, + 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(3151), 47, + ACTIONS(3313), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -328752,80 +316850,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [187509] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(4915), 1, - anon_sym_COMMA, - STATE(3673), 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_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, - [187577] = 4, + [187589] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3207), 4, + ACTIONS(3442), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3209), 48, + ACTIONS(3444), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -328874,35 +316910,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [187641] = 10, + [187653] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4643), 1, + ACTIONS(4561), 1, anon_sym_STAR_STAR, - ACTIONS(4645), 1, + ACTIONS(4563), 1, anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 2, + ACTIONS(3279), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(4613), 2, + ACTIONS(4531), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4615), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4641), 6, + ACTIONS(4559), 6, anon_sym_PLUS_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, + ACTIONS(3281), 37, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -328940,37 +316976,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, anon_sym_end, - [187717] = 11, + [187729] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4639), 1, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - ACTIONS(4643), 1, + ACTIONS(4561), 1, anon_sym_STAR_STAR, - ACTIONS(4645), 1, + ACTIONS(4563), 1, anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 2, + ACTIONS(3279), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(4613), 2, + ACTIONS(4531), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4615), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4641), 6, + ACTIONS(4559), 6, anon_sym_PLUS_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, + ACTIONS(3281), 36, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -329007,37 +317043,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_end, - [187795] = 11, + [187807] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4639), 1, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - ACTIONS(4643), 1, + ACTIONS(4561), 1, anon_sym_STAR_STAR, - ACTIONS(4645), 1, + ACTIONS(4563), 1, anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 2, + ACTIONS(3279), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(4613), 2, + ACTIONS(4531), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4615), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4641), 6, + ACTIONS(4559), 6, anon_sym_PLUS_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, + ACTIONS(3281), 36, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -329074,42 +317110,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_end, - [187873] = 14, + [187885] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4635), 1, + ACTIONS(4553), 1, anon_sym_in, - ACTIONS(4637), 1, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4639), 1, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - ACTIONS(4643), 1, + ACTIONS(4561), 1, anon_sym_STAR_STAR, - ACTIONS(4645), 1, + ACTIONS(4563), 1, anon_sym_DOT, - ACTIONS(4647), 1, + ACTIONS(4565), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4613), 2, + ACTIONS(4531), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4615), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4641), 6, + ACTIONS(4559), 6, anon_sym_PLUS_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, + ACTIONS(3281), 34, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -329144,47 +317180,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_end, - [187957] = 16, + [187969] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4635), 1, + ACTIONS(4553), 1, anon_sym_in, - ACTIONS(4637), 1, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4639), 1, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - ACTIONS(4643), 1, + ACTIONS(4561), 1, anon_sym_STAR_STAR, - ACTIONS(4645), 1, + ACTIONS(4563), 1, anon_sym_DOT, - ACTIONS(4647), 1, + ACTIONS(4565), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4613), 2, + ACTIONS(4531), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4615), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4609), 4, + ACTIONS(4527), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4641), 6, + ACTIONS(4559), 6, anon_sym_PLUS_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, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -329194,7 +317230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3295), 21, + ACTIONS(3281), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_COMMA, @@ -329216,53 +317252,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_end, - [188045] = 17, + [188057] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4635), 1, + ACTIONS(4553), 1, anon_sym_in, - ACTIONS(4637), 1, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4639), 1, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - ACTIONS(4643), 1, + ACTIONS(4561), 1, anon_sym_STAR_STAR, - ACTIONS(4645), 1, + ACTIONS(4563), 1, anon_sym_DOT, - ACTIONS(4647), 1, + ACTIONS(4565), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4613), 2, + ACTIONS(4531), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4615), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4609), 4, + ACTIONS(4527), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4631), 5, + ACTIONS(4549), 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, + ACTIONS(4559), 6, anon_sym_PLUS_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, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -329272,7 +317308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3295), 16, + ACTIONS(3281), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_COMMA, @@ -329289,57 +317325,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_AMP, anon_sym_and, anon_sym_end, - [188135] = 18, + [188147] = 18, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4635), 1, + ACTIONS(4553), 1, anon_sym_in, - ACTIONS(4637), 1, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4639), 1, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - ACTIONS(4643), 1, + ACTIONS(4561), 1, anon_sym_STAR_STAR, - ACTIONS(4645), 1, + ACTIONS(4563), 1, anon_sym_DOT, - ACTIONS(4647), 1, + ACTIONS(4565), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4613), 2, + ACTIONS(4531), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4615), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4629), 3, + ACTIONS(4547), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4609), 4, + ACTIONS(4527), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4631), 5, + ACTIONS(4549), 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, + ACTIONS(4559), 6, anon_sym_PLUS_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, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -329349,7 +317385,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3295), 13, + ACTIONS(3281), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_COMMA, @@ -329363,63 +317399,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_PIPE, anon_sym_or, anon_sym_end, - [188227] = 20, + [188239] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4625), 1, + ACTIONS(4543), 1, anon_sym_EQ, - ACTIONS(4635), 1, + ACTIONS(4553), 1, anon_sym_in, - ACTIONS(4637), 1, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4639), 1, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - ACTIONS(4643), 1, + ACTIONS(4561), 1, anon_sym_STAR_STAR, - ACTIONS(4645), 1, + ACTIONS(4563), 1, anon_sym_DOT, - ACTIONS(4647), 1, + ACTIONS(4565), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4613), 2, + ACTIONS(4531), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4615), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4627), 3, + ACTIONS(4545), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4629), 3, + ACTIONS(4547), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4609), 4, + ACTIONS(4527), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4631), 5, + ACTIONS(4549), 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, + ACTIONS(4559), 6, anon_sym_PLUS_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, + ACTIONS(3281), 9, anon_sym_SEMI, anon_sym_PIPE, anon_sym_COMMA, @@ -329429,7 +317465,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_EQ_GT, anon_sym_end, - ACTIONS(4633), 9, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -329439,65 +317475,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [188323] = 21, + [188335] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4623), 1, + ACTIONS(4541), 1, anon_sym_EQ_GT, - ACTIONS(4625), 1, + ACTIONS(4543), 1, anon_sym_EQ, - ACTIONS(4635), 1, + ACTIONS(4553), 1, anon_sym_in, - ACTIONS(4637), 1, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4639), 1, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - ACTIONS(4643), 1, + ACTIONS(4561), 1, anon_sym_STAR_STAR, - ACTIONS(4645), 1, + ACTIONS(4563), 1, anon_sym_DOT, - ACTIONS(4647), 1, + ACTIONS(4565), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4613), 2, + ACTIONS(4531), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4615), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4627), 3, + ACTIONS(4545), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4629), 3, + ACTIONS(4547), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4609), 4, + ACTIONS(4527), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4631), 5, + ACTIONS(4549), 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, + ACTIONS(4559), 6, anon_sym_PLUS_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, + ACTIONS(3281), 8, anon_sym_SEMI, anon_sym_PIPE, anon_sym_COMMA, @@ -329506,7 +317542,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_when, anon_sym_COLON_COLON, anon_sym_end, - ACTIONS(4633), 9, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -329516,76 +317552,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [188421] = 23, + [188433] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4611), 1, + ACTIONS(4529), 1, anon_sym_PIPE, - ACTIONS(4621), 1, + ACTIONS(4539), 1, anon_sym_COLON_COLON, - ACTIONS(4623), 1, + ACTIONS(4541), 1, anon_sym_EQ_GT, - ACTIONS(4625), 1, + ACTIONS(4543), 1, anon_sym_EQ, - ACTIONS(4635), 1, + ACTIONS(4553), 1, anon_sym_in, - ACTIONS(4637), 1, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4639), 1, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - ACTIONS(4643), 1, + ACTIONS(4561), 1, anon_sym_STAR_STAR, - ACTIONS(4645), 1, + ACTIONS(4563), 1, anon_sym_DOT, - ACTIONS(4647), 1, + ACTIONS(4565), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4613), 2, + ACTIONS(4531), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4615), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4627), 3, + ACTIONS(4545), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4629), 3, + ACTIONS(4547), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4609), 4, + ACTIONS(4527), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4631), 5, + ACTIONS(4549), 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, + ACTIONS(3281), 6, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_end, - ACTIONS(4641), 6, + ACTIONS(4559), 6, anon_sym_PLUS_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, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -329595,77 +317631,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [188523] = 24, + [188535] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4611), 1, + ACTIONS(4529), 1, anon_sym_PIPE, - ACTIONS(4619), 1, + ACTIONS(4537), 1, anon_sym_when, - ACTIONS(4621), 1, + ACTIONS(4539), 1, anon_sym_COLON_COLON, - ACTIONS(4623), 1, + ACTIONS(4541), 1, anon_sym_EQ_GT, - ACTIONS(4625), 1, + ACTIONS(4543), 1, anon_sym_EQ, - ACTIONS(4635), 1, + ACTIONS(4553), 1, anon_sym_in, - ACTIONS(4637), 1, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4639), 1, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - ACTIONS(4643), 1, + ACTIONS(4561), 1, anon_sym_STAR_STAR, - ACTIONS(4645), 1, + ACTIONS(4563), 1, anon_sym_DOT, - ACTIONS(4647), 1, + ACTIONS(4565), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4613), 2, + ACTIONS(4531), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4615), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4627), 3, + ACTIONS(4545), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4629), 3, + ACTIONS(4547), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4609), 4, + ACTIONS(4527), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3295), 5, + ACTIONS(3281), 5, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_end, - ACTIONS(4631), 5, + ACTIONS(4549), 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, + ACTIONS(4559), 6, anon_sym_PLUS_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, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -329675,77 +317711,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [188627] = 24, + [188639] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4611), 1, + ACTIONS(4529), 1, anon_sym_PIPE, - ACTIONS(4619), 1, + ACTIONS(4537), 1, anon_sym_when, - ACTIONS(4621), 1, + ACTIONS(4539), 1, anon_sym_COLON_COLON, - ACTIONS(4623), 1, + ACTIONS(4541), 1, anon_sym_EQ_GT, - ACTIONS(4625), 1, + ACTIONS(4543), 1, anon_sym_EQ, - ACTIONS(4635), 1, + ACTIONS(4553), 1, anon_sym_in, - ACTIONS(4637), 1, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4639), 1, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - ACTIONS(4643), 1, + ACTIONS(4561), 1, anon_sym_STAR_STAR, - ACTIONS(4645), 1, + ACTIONS(4563), 1, anon_sym_DOT, - ACTIONS(4647), 1, + ACTIONS(4565), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4613), 2, + ACTIONS(4531), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4615), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4627), 3, + ACTIONS(4545), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4629), 3, + ACTIONS(4547), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4609), 4, + ACTIONS(4527), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3295), 5, + ACTIONS(3281), 5, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_end, - ACTIONS(4631), 5, + ACTIONS(4549), 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, + ACTIONS(4559), 6, anon_sym_PLUS_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, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -329755,25 +317791,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [188731] = 8, + [188743] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4643), 1, + ACTIONS(4561), 1, anon_sym_STAR_STAR, - ACTIONS(4645), 1, + ACTIONS(4563), 1, anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 2, + ACTIONS(3279), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(4613), 2, + ACTIONS(4531), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3295), 45, + ACTIONS(3281), 45, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -329819,22 +317855,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, anon_sym_LT_GT, anon_sym_end, - [188803] = 7, + [188815] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4643), 1, + ACTIONS(4561), 1, anon_sym_STAR_STAR, - ACTIONS(4645), 1, + ACTIONS(4563), 1, anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 2, + ACTIONS(3279), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3295), 47, + ACTIONS(3281), 47, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -329882,67 +317918,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_GT, anon_sym_STAR, anon_sym_end, - [188873] = 22, + [188885] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4611), 1, + ACTIONS(4529), 1, anon_sym_PIPE, - ACTIONS(4623), 1, + ACTIONS(4541), 1, anon_sym_EQ_GT, - ACTIONS(4625), 1, + ACTIONS(4543), 1, anon_sym_EQ, - ACTIONS(4635), 1, + ACTIONS(4553), 1, anon_sym_in, - ACTIONS(4637), 1, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4639), 1, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - ACTIONS(4643), 1, + ACTIONS(4561), 1, anon_sym_STAR_STAR, - ACTIONS(4645), 1, + ACTIONS(4563), 1, anon_sym_DOT, - ACTIONS(4647), 1, + ACTIONS(4565), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4613), 2, + ACTIONS(4531), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4615), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4627), 3, + ACTIONS(4545), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4629), 3, + ACTIONS(4547), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4609), 4, + ACTIONS(4527), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4631), 5, + ACTIONS(4549), 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, + ACTIONS(4559), 6, anon_sym_PLUS_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, + ACTIONS(3281), 7, anon_sym_SEMI, anon_sym_COMMA, anon_sym_LT_DASH, @@ -329950,7 +317986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_when, anon_sym_COLON_COLON, anon_sym_end, - ACTIONS(4633), 9, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -329960,42 +317996,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [188973] = 15, + [188985] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4635), 1, + ACTIONS(4553), 1, anon_sym_in, - ACTIONS(4637), 1, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4639), 1, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - ACTIONS(4643), 1, + ACTIONS(4561), 1, anon_sym_STAR_STAR, - ACTIONS(4645), 1, + ACTIONS(4563), 1, anon_sym_DOT, - ACTIONS(4647), 1, + ACTIONS(4565), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4613), 2, + ACTIONS(4531), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4615), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4641), 6, + ACTIONS(4559), 6, anon_sym_PLUS_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, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -330005,7 +318041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3295), 25, + ACTIONS(3281), 25, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -330031,17 +318067,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_end, - [189059] = 4, + [189071] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2651), 2, + ACTIONS(2565), 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, + ACTIONS(2567), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -330091,17 +318127,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [189123] = 4, + [189135] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2647), 2, + ACTIONS(2573), 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, + ACTIONS(2575), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -330151,44 +318187,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [189187] = 12, + [189199] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(4834), 1, + anon_sym_COMMA, + STATE(3682), 1, + aux_sym_keywords_repeat1, + ACTIONS(3391), 2, + sym__not_in, 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, + ACTIONS(3), 3, 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, + ACTIONS(3393), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, - anon_sym_COMMA, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, @@ -330218,22 +318238,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - anon_sym_end, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + anon_sym_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, [189267] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(4913), 1, + ACTIONS(4834), 1, anon_sym_COMMA, - STATE(3672), 1, + STATE(3661), 1, aux_sym_keywords_repeat1, - ACTIONS(3219), 2, + 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(3221), 47, + ACTIONS(3403), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -330284,14 +318314,14 @@ static const uint16_t ts_small_parse_table[] = { [189335] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2611), 2, + ACTIONS(2581), 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), 49, + ACTIONS(2583), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -330344,14 +318374,14 @@ static const uint16_t ts_small_parse_table[] = { [189399] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2631), 2, + ACTIONS(2545), 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), 49, + ACTIONS(2547), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -330407,12 +318437,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3000), 4, + ACTIONS(3002), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3002), 48, + ACTIONS(3004), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -330467,12 +318497,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3000), 4, + ACTIONS(3002), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3002), 48, + ACTIONS(3004), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -330524,75 +318554,75 @@ static const uint16_t ts_small_parse_table[] = { [189591] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(4460), 1, + ACTIONS(4378), 1, anon_sym_PIPE, - ACTIONS(4468), 1, + ACTIONS(4386), 1, anon_sym_when, - ACTIONS(4470), 1, + ACTIONS(4388), 1, anon_sym_COLON_COLON, - ACTIONS(4472), 1, + ACTIONS(4390), 1, anon_sym_EQ_GT, - ACTIONS(4474), 1, + ACTIONS(4392), 1, anon_sym_EQ, - ACTIONS(4484), 1, + ACTIONS(4402), 1, anon_sym_in, - ACTIONS(4486), 1, + ACTIONS(4404), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4488), 1, + ACTIONS(4406), 1, anon_sym_SLASH_SLASH, - ACTIONS(4492), 1, + ACTIONS(4410), 1, anon_sym_STAR_STAR, - ACTIONS(4494), 1, + ACTIONS(4412), 1, anon_sym_DOT, - ACTIONS(4496), 1, + ACTIONS(4414), 1, anon_sym_LBRACK2, - ACTIONS(4498), 1, + ACTIONS(4416), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3544), 2, + ACTIONS(3550), 2, ts_builtin_sym_end, aux_sym__terminator_token1, - ACTIONS(3546), 2, + ACTIONS(3552), 2, anon_sym_SEMI, anon_sym_COMMA, - ACTIONS(4462), 2, + ACTIONS(4380), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4464), 2, + ACTIONS(4382), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4466), 2, + ACTIONS(4384), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4476), 3, + ACTIONS(4394), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4478), 3, + ACTIONS(4396), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4458), 4, + ACTIONS(4376), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4480), 5, + ACTIONS(4398), 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, + ACTIONS(4408), 6, anon_sym_PLUS_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, + ACTIONS(4400), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -330605,14 +318635,14 @@ static const uint16_t ts_small_parse_table[] = { [189697] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3090), 2, + 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(3092), 49, + ACTIONS(2974), 49, anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, @@ -330665,14 +318695,14 @@ static const uint16_t ts_small_parse_table[] = { [189761] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3026), 2, + 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(3028), 49, + ACTIONS(3014), 49, anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, @@ -330728,12 +318758,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3006), 4, + ACTIONS(2996), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3008), 48, + ACTIONS(2998), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -330785,14 +318815,14 @@ static const uint16_t ts_small_parse_table[] = { [189889] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3516), 2, + ACTIONS(3024), 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), 49, + ACTIONS(3026), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -330845,17 +318875,17 @@ static const uint16_t ts_small_parse_table[] = { [189953] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4548), 1, + ACTIONS(4466), 1, anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3118), 2, + ACTIONS(3227), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3120), 48, + ACTIONS(3229), 48, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -330910,12 +318940,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3327), 4, + ACTIONS(3063), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3329), 48, + ACTIONS(3065), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -330970,12 +319000,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3134), 4, + ACTIONS(3311), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3136), 48, + ACTIONS(3313), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -331027,17 +319057,17 @@ static const uint16_t ts_small_parse_table[] = { [190149] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4548), 1, + ACTIONS(4466), 1, anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 2, + ACTIONS(3279), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3295), 48, + ACTIONS(3281), 48, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -331089,32 +319119,32 @@ static const uint16_t ts_small_parse_table[] = { [190217] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4546), 1, + ACTIONS(4464), 1, anon_sym_STAR_STAR, - ACTIONS(4548), 1, + ACTIONS(4466), 1, anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 2, + ACTIONS(3279), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(4516), 2, + ACTIONS(4434), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4518), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4544), 6, + ACTIONS(4462), 6, anon_sym_PLUS_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, + ACTIONS(3281), 37, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -331155,34 +319185,34 @@ static const uint16_t ts_small_parse_table[] = { [190293] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4542), 1, + ACTIONS(4460), 1, anon_sym_SLASH_SLASH, - ACTIONS(4546), 1, + ACTIONS(4464), 1, anon_sym_STAR_STAR, - ACTIONS(4548), 1, + ACTIONS(4466), 1, anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 2, + ACTIONS(3279), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(4516), 2, + ACTIONS(4434), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4518), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4544), 6, + ACTIONS(4462), 6, anon_sym_PLUS_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, + ACTIONS(3281), 36, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -331222,34 +319252,34 @@ static const uint16_t ts_small_parse_table[] = { [190371] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4542), 1, + ACTIONS(4460), 1, anon_sym_SLASH_SLASH, - ACTIONS(4546), 1, + ACTIONS(4464), 1, anon_sym_STAR_STAR, - ACTIONS(4548), 1, + ACTIONS(4466), 1, anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 2, + ACTIONS(3279), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(4516), 2, + ACTIONS(4434), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4518), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4544), 6, + ACTIONS(4462), 6, anon_sym_PLUS_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, + ACTIONS(3281), 36, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -331289,39 +319319,39 @@ static const uint16_t ts_small_parse_table[] = { [190449] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4538), 1, + ACTIONS(4456), 1, anon_sym_in, - ACTIONS(4540), 1, + ACTIONS(4458), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4542), 1, + ACTIONS(4460), 1, anon_sym_SLASH_SLASH, - ACTIONS(4546), 1, + ACTIONS(4464), 1, anon_sym_STAR_STAR, - ACTIONS(4548), 1, + ACTIONS(4466), 1, anon_sym_DOT, - ACTIONS(4550), 1, + ACTIONS(4468), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4516), 2, + ACTIONS(4434), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4518), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4544), 6, + ACTIONS(4462), 6, anon_sym_PLUS_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, + ACTIONS(3281), 34, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -331359,44 +319389,44 @@ static const uint16_t ts_small_parse_table[] = { [190533] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4538), 1, + ACTIONS(4456), 1, anon_sym_in, - ACTIONS(4540), 1, + ACTIONS(4458), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4542), 1, + ACTIONS(4460), 1, anon_sym_SLASH_SLASH, - ACTIONS(4546), 1, + ACTIONS(4464), 1, anon_sym_STAR_STAR, - ACTIONS(4548), 1, + ACTIONS(4466), 1, anon_sym_DOT, - ACTIONS(4550), 1, + ACTIONS(4468), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4516), 2, + ACTIONS(4434), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4518), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4512), 4, + ACTIONS(4430), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4544), 6, + ACTIONS(4462), 6, anon_sym_PLUS_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, + ACTIONS(4454), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -331406,7 +319436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3295), 21, + ACTIONS(3281), 21, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -331431,50 +319461,50 @@ static const uint16_t ts_small_parse_table[] = { [190621] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4538), 1, + ACTIONS(4456), 1, anon_sym_in, - ACTIONS(4540), 1, + ACTIONS(4458), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4542), 1, + ACTIONS(4460), 1, anon_sym_SLASH_SLASH, - ACTIONS(4546), 1, + ACTIONS(4464), 1, anon_sym_STAR_STAR, - ACTIONS(4548), 1, + ACTIONS(4466), 1, anon_sym_DOT, - ACTIONS(4550), 1, + ACTIONS(4468), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4516), 2, + ACTIONS(4434), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4518), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4512), 4, + ACTIONS(4430), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4534), 5, + ACTIONS(4452), 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, + ACTIONS(4462), 6, anon_sym_PLUS_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, + ACTIONS(4454), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -331484,7 +319514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3295), 16, + ACTIONS(3281), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -331504,54 +319534,54 @@ static const uint16_t ts_small_parse_table[] = { [190711] = 18, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4538), 1, + ACTIONS(4456), 1, anon_sym_in, - ACTIONS(4540), 1, + ACTIONS(4458), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4542), 1, + ACTIONS(4460), 1, anon_sym_SLASH_SLASH, - ACTIONS(4546), 1, + ACTIONS(4464), 1, anon_sym_STAR_STAR, - ACTIONS(4548), 1, + ACTIONS(4466), 1, anon_sym_DOT, - ACTIONS(4550), 1, + ACTIONS(4468), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4516), 2, + ACTIONS(4434), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4518), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4532), 3, + ACTIONS(4450), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4512), 4, + ACTIONS(4430), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4534), 5, + ACTIONS(4452), 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, + ACTIONS(4462), 6, anon_sym_PLUS_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, + ACTIONS(4454), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -331561,7 +319591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3295), 13, + ACTIONS(3281), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -331578,60 +319608,60 @@ static const uint16_t ts_small_parse_table[] = { [190803] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4528), 1, + ACTIONS(4446), 1, anon_sym_EQ, - ACTIONS(4538), 1, + ACTIONS(4456), 1, anon_sym_in, - ACTIONS(4540), 1, + ACTIONS(4458), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4542), 1, + ACTIONS(4460), 1, anon_sym_SLASH_SLASH, - ACTIONS(4546), 1, + ACTIONS(4464), 1, anon_sym_STAR_STAR, - ACTIONS(4548), 1, + ACTIONS(4466), 1, anon_sym_DOT, - ACTIONS(4550), 1, + ACTIONS(4468), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4516), 2, + ACTIONS(4434), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4518), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4530), 3, + ACTIONS(4448), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4532), 3, + ACTIONS(4450), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4512), 4, + ACTIONS(4430), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4534), 5, + ACTIONS(4452), 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, + ACTIONS(4462), 6, anon_sym_PLUS_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, + ACTIONS(3281), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -331641,7 +319671,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, - ACTIONS(4536), 9, + ACTIONS(4454), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -331654,62 +319684,62 @@ static const uint16_t ts_small_parse_table[] = { [190899] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4526), 1, + ACTIONS(4444), 1, anon_sym_EQ_GT, - ACTIONS(4528), 1, + ACTIONS(4446), 1, anon_sym_EQ, - ACTIONS(4538), 1, + ACTIONS(4456), 1, anon_sym_in, - ACTIONS(4540), 1, + ACTIONS(4458), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4542), 1, + ACTIONS(4460), 1, anon_sym_SLASH_SLASH, - ACTIONS(4546), 1, + ACTIONS(4464), 1, anon_sym_STAR_STAR, - ACTIONS(4548), 1, + ACTIONS(4466), 1, anon_sym_DOT, - ACTIONS(4550), 1, + ACTIONS(4468), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4516), 2, + ACTIONS(4434), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4518), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4530), 3, + ACTIONS(4448), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4532), 3, + ACTIONS(4450), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4512), 4, + ACTIONS(4430), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4534), 5, + ACTIONS(4452), 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, + ACTIONS(4462), 6, anon_sym_PLUS_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, + ACTIONS(3281), 8, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_PIPE, @@ -331718,7 +319748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - ACTIONS(4536), 9, + ACTIONS(4454), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -331731,73 +319761,73 @@ static const uint16_t ts_small_parse_table[] = { [190997] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4514), 1, + ACTIONS(4432), 1, anon_sym_PIPE, - ACTIONS(4524), 1, + ACTIONS(4442), 1, anon_sym_COLON_COLON, - ACTIONS(4526), 1, + ACTIONS(4444), 1, anon_sym_EQ_GT, - ACTIONS(4528), 1, + ACTIONS(4446), 1, anon_sym_EQ, - ACTIONS(4538), 1, + ACTIONS(4456), 1, anon_sym_in, - ACTIONS(4540), 1, + ACTIONS(4458), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4542), 1, + ACTIONS(4460), 1, anon_sym_SLASH_SLASH, - ACTIONS(4546), 1, + ACTIONS(4464), 1, anon_sym_STAR_STAR, - ACTIONS(4548), 1, + ACTIONS(4466), 1, anon_sym_DOT, - ACTIONS(4550), 1, + ACTIONS(4468), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4516), 2, + ACTIONS(4434), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4518), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4530), 3, + ACTIONS(4448), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4532), 3, + ACTIONS(4450), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4512), 4, + ACTIONS(4430), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4534), 5, + ACTIONS(4452), 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, + ACTIONS(3281), 6, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(4544), 6, + ACTIONS(4462), 6, anon_sym_PLUS_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, + ACTIONS(4454), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -331810,74 +319840,74 @@ static const uint16_t ts_small_parse_table[] = { [191099] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4514), 1, + ACTIONS(4432), 1, anon_sym_PIPE, - ACTIONS(4522), 1, + ACTIONS(4440), 1, anon_sym_when, - ACTIONS(4524), 1, + ACTIONS(4442), 1, anon_sym_COLON_COLON, - ACTIONS(4526), 1, + ACTIONS(4444), 1, anon_sym_EQ_GT, - ACTIONS(4528), 1, + ACTIONS(4446), 1, anon_sym_EQ, - ACTIONS(4538), 1, + ACTIONS(4456), 1, anon_sym_in, - ACTIONS(4540), 1, + ACTIONS(4458), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4542), 1, + ACTIONS(4460), 1, anon_sym_SLASH_SLASH, - ACTIONS(4546), 1, + ACTIONS(4464), 1, anon_sym_STAR_STAR, - ACTIONS(4548), 1, + ACTIONS(4466), 1, anon_sym_DOT, - ACTIONS(4550), 1, + ACTIONS(4468), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4516), 2, + ACTIONS(4434), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4518), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4530), 3, + ACTIONS(4448), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4532), 3, + ACTIONS(4450), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4512), 4, + ACTIONS(4430), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3295), 5, + ACTIONS(3281), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4534), 5, + ACTIONS(4452), 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, + ACTIONS(4462), 6, anon_sym_PLUS_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, + ACTIONS(4454), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -331890,74 +319920,74 @@ static const uint16_t ts_small_parse_table[] = { [191203] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4514), 1, + ACTIONS(4432), 1, anon_sym_PIPE, - ACTIONS(4522), 1, + ACTIONS(4440), 1, anon_sym_when, - ACTIONS(4524), 1, + ACTIONS(4442), 1, anon_sym_COLON_COLON, - ACTIONS(4526), 1, + ACTIONS(4444), 1, anon_sym_EQ_GT, - ACTIONS(4528), 1, + ACTIONS(4446), 1, anon_sym_EQ, - ACTIONS(4538), 1, + ACTIONS(4456), 1, anon_sym_in, - ACTIONS(4540), 1, + ACTIONS(4458), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4542), 1, + ACTIONS(4460), 1, anon_sym_SLASH_SLASH, - ACTIONS(4546), 1, + ACTIONS(4464), 1, anon_sym_STAR_STAR, - ACTIONS(4548), 1, + ACTIONS(4466), 1, anon_sym_DOT, - ACTIONS(4550), 1, + ACTIONS(4468), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4516), 2, + ACTIONS(4434), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4518), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4530), 3, + ACTIONS(4448), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4532), 3, + ACTIONS(4450), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4512), 4, + ACTIONS(4430), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3295), 5, + ACTIONS(3281), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4534), 5, + ACTIONS(4452), 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, + ACTIONS(4462), 6, anon_sym_PLUS_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, + ACTIONS(4454), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -331970,22 +320000,22 @@ static const uint16_t ts_small_parse_table[] = { [191307] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4546), 1, + ACTIONS(4464), 1, anon_sym_STAR_STAR, - ACTIONS(4548), 1, + ACTIONS(4466), 1, anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 2, + ACTIONS(3279), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(4516), 2, + ACTIONS(4434), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(3295), 45, + ACTIONS(3281), 45, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -332034,19 +320064,19 @@ static const uint16_t ts_small_parse_table[] = { [191379] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4546), 1, + ACTIONS(4464), 1, anon_sym_STAR_STAR, - ACTIONS(4548), 1, + ACTIONS(4466), 1, anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 2, + ACTIONS(3279), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(3295), 47, + ACTIONS(3281), 47, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -332097,64 +320127,64 @@ static const uint16_t ts_small_parse_table[] = { [191449] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4514), 1, + ACTIONS(4432), 1, anon_sym_PIPE, - ACTIONS(4526), 1, + ACTIONS(4444), 1, anon_sym_EQ_GT, - ACTIONS(4528), 1, + ACTIONS(4446), 1, anon_sym_EQ, - ACTIONS(4538), 1, + ACTIONS(4456), 1, anon_sym_in, - ACTIONS(4540), 1, + ACTIONS(4458), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4542), 1, + ACTIONS(4460), 1, anon_sym_SLASH_SLASH, - ACTIONS(4546), 1, + ACTIONS(4464), 1, anon_sym_STAR_STAR, - ACTIONS(4548), 1, + ACTIONS(4466), 1, anon_sym_DOT, - ACTIONS(4550), 1, + ACTIONS(4468), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4516), 2, + ACTIONS(4434), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4518), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4530), 3, + ACTIONS(4448), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4532), 3, + ACTIONS(4450), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4512), 4, + ACTIONS(4430), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4534), 5, + ACTIONS(4452), 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, + ACTIONS(4462), 6, anon_sym_PLUS_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, + ACTIONS(3281), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_COMMA, @@ -332162,7 +320192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - ACTIONS(4536), 9, + ACTIONS(4454), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -332175,39 +320205,39 @@ static const uint16_t ts_small_parse_table[] = { [191549] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4538), 1, + ACTIONS(4456), 1, anon_sym_in, - ACTIONS(4540), 1, + ACTIONS(4458), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4542), 1, + ACTIONS(4460), 1, anon_sym_SLASH_SLASH, - ACTIONS(4546), 1, + ACTIONS(4464), 1, anon_sym_STAR_STAR, - ACTIONS(4548), 1, + ACTIONS(4466), 1, anon_sym_DOT, - ACTIONS(4550), 1, + ACTIONS(4468), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4516), 2, + ACTIONS(4434), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4518), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4544), 6, + ACTIONS(4462), 6, anon_sym_PLUS_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, + ACTIONS(4454), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -332217,7 +320247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3295), 25, + ACTIONS(3281), 25, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -332246,36 +320276,36 @@ static const uint16_t ts_small_parse_table[] = { [191635] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4540), 1, + ACTIONS(4458), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4542), 1, + ACTIONS(4460), 1, anon_sym_SLASH_SLASH, - ACTIONS(4546), 1, + ACTIONS(4464), 1, anon_sym_STAR_STAR, - ACTIONS(4548), 1, + ACTIONS(4466), 1, anon_sym_DOT, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3293), 2, + ACTIONS(3279), 2, sym__not_in, aux_sym__terminator_token1, - ACTIONS(4516), 2, + ACTIONS(4434), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4518), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4544), 6, + ACTIONS(4462), 6, anon_sym_PLUS_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, + ACTIONS(3281), 35, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LT, @@ -332311,18 +320341,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, anon_sym_in, - [191715] = 4, + [191715] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3554), 1, + aux_sym__terminator_token1, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(4432), 1, + anon_sym_PIPE, + ACTIONS(4440), 1, + anon_sym_when, + ACTIONS(4442), 1, + anon_sym_COLON_COLON, + ACTIONS(4444), 1, + anon_sym_EQ_GT, + ACTIONS(4446), 1, + anon_sym_EQ, + ACTIONS(4456), 1, + anon_sym_in, + ACTIONS(4458), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4460), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4464), 1, + anon_sym_STAR_STAR, + ACTIONS(4466), 1, + anon_sym_DOT, + ACTIONS(4468), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4434), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4438), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(3556), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(4448), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4450), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4430), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4452), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4462), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4454), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [191821] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(4466), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3123), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3125), 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, + [191889] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3327), 4, + ACTIONS(3063), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3329), 48, + ACTIONS(3065), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -332371,160 +320544,17 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(3321), 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, + ACTIONS(3323), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -332577,76 +320607,76 @@ static const uint16_t ts_small_parse_table[] = { [192017] = 26, ACTIONS(5), 1, sym_comment, - ACTIONS(4895), 1, + ACTIONS(4815), 1, anon_sym_GT_GT, - ACTIONS(4920), 1, + ACTIONS(4838), 1, anon_sym_PIPE, - ACTIONS(4924), 1, + ACTIONS(4842), 1, anon_sym_COMMA, - ACTIONS(4930), 1, + ACTIONS(4848), 1, anon_sym_when, - ACTIONS(4932), 1, + ACTIONS(4850), 1, anon_sym_COLON_COLON, - ACTIONS(4934), 1, + ACTIONS(4852), 1, anon_sym_EQ_GT, - ACTIONS(4936), 1, + ACTIONS(4854), 1, anon_sym_EQ, - ACTIONS(4946), 1, + ACTIONS(4864), 1, anon_sym_in, - ACTIONS(4948), 1, + ACTIONS(4866), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4950), 1, + ACTIONS(4868), 1, anon_sym_SLASH_SLASH, - ACTIONS(4954), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4956), 1, + ACTIONS(4874), 1, anon_sym_DOT, - ACTIONS(4958), 1, + ACTIONS(4876), 1, anon_sym_LBRACK2, - ACTIONS(4960), 1, + ACTIONS(4878), 1, sym__not_in, - STATE(5445), 1, + STATE(5433), 1, aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(4922), 2, + ACTIONS(4840), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4926), 2, + ACTIONS(4844), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4928), 2, + ACTIONS(4846), 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, + ACTIONS(4856), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4940), 3, + ACTIONS(4858), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4918), 4, + ACTIONS(4836), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4942), 5, + ACTIONS(4860), 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, + ACTIONS(4870), 6, anon_sym_PLUS_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, + ACTIONS(4862), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -332662,12 +320692,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3203), 4, + ACTIONS(3438), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3205), 48, + ACTIONS(3440), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -332719,14 +320749,14 @@ static const uint16_t ts_small_parse_table[] = { [192189] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3207), 2, + ACTIONS(3442), 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, + ACTIONS(3444), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -332779,14 +320809,14 @@ static const uint16_t ts_small_parse_table[] = { [192253] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3203), 2, + ACTIONS(3438), 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, + ACTIONS(3440), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -332839,14 +320869,14 @@ static const uint16_t ts_small_parse_table[] = { [192317] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3199), 2, + ACTIONS(3434), 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, + ACTIONS(3436), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -332899,14 +320929,14 @@ static const uint16_t ts_small_parse_table[] = { [192381] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3195), 2, + ACTIONS(3430), 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, + ACTIONS(3432), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -332959,14 +320989,14 @@ static const uint16_t ts_small_parse_table[] = { [192445] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3183), 2, + ACTIONS(3419), 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, + ACTIONS(3421), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -333017,3682 +321047,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -336752,17 +321106,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [196677] = 4, + [192573] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3427), 2, + ACTIONS(3419), 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, + ACTIONS(3421), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -336812,17 +321166,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [196741] = 4, + [192637] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3431), 2, + ACTIONS(3419), 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, + ACTIONS(3421), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -336872,17 +321226,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [196805] = 4, + [192701] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3435), 2, + 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(3437), 49, + ACTIONS(3417), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -336932,17 +321286,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [196869] = 4, + [192765] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3449), 2, + 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(3451), 49, + ACTIONS(3411), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -336992,17 +321346,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [196933] = 4, + [192829] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3307), 2, + 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(3309), 49, + ACTIONS(3407), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -337052,7 +321406,1507 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [196997] = 4, + [192893] = 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, + [192957] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3387), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3389), 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(3383), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3385), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3299), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3301), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3067), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3069), 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(3317), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3319), 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(3303), 2, @@ -337112,17 +322966,2193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, anon_sym_DASH_GT, anon_sym_DOT, - [197061] = 4, + [194557] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3534), 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(3536), 49, + 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, + [194621] = 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, + [194685] = 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, + [194749] = 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, + [194813] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3067), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3069), 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(3287), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3289), 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(3279), 1, + sym__not_in, + ACTIONS(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3281), 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(3279), 1, + sym__not_in, + ACTIONS(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(4890), 1, + anon_sym_STAR_STAR, + ACTIONS(4884), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4886), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4888), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(3279), 1, + sym__not_in, + ACTIONS(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(4890), 1, + anon_sym_STAR_STAR, + ACTIONS(4892), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4884), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4886), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4888), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(3279), 1, + sym__not_in, + ACTIONS(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(4890), 1, + anon_sym_STAR_STAR, + ACTIONS(4892), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4884), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4886), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4888), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(4890), 1, + anon_sym_STAR_STAR, + ACTIONS(4892), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4894), 1, + anon_sym_in, + ACTIONS(4896), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4898), 1, + sym__not_in, + ACTIONS(4884), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4886), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4888), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(4890), 1, + anon_sym_STAR_STAR, + ACTIONS(4892), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4894), 1, + anon_sym_in, + ACTIONS(4896), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4898), 1, + sym__not_in, + ACTIONS(4884), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4886), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4900), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4888), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4902), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(4890), 1, + anon_sym_STAR_STAR, + ACTIONS(4892), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4894), 1, + anon_sym_in, + ACTIONS(4896), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4898), 1, + sym__not_in, + ACTIONS(4884), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4886), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4900), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4888), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4902), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(4890), 1, + anon_sym_STAR_STAR, + ACTIONS(4892), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4894), 1, + anon_sym_in, + ACTIONS(4896), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4898), 1, + sym__not_in, + ACTIONS(4884), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4886), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4906), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4900), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4888), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4902), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(4890), 1, + anon_sym_STAR_STAR, + ACTIONS(4892), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4894), 1, + anon_sym_in, + ACTIONS(4896), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4898), 1, + sym__not_in, + ACTIONS(4908), 1, + anon_sym_EQ, + ACTIONS(4884), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4886), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4906), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4910), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4900), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4888), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4902), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(4890), 1, + anon_sym_STAR_STAR, + ACTIONS(4892), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4894), 1, + anon_sym_in, + ACTIONS(4896), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4898), 1, + sym__not_in, + ACTIONS(4908), 1, + anon_sym_EQ, + ACTIONS(4912), 1, + anon_sym_EQ_GT, + ACTIONS(4884), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4886), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4906), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4910), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4900), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4888), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4902), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(4890), 1, + anon_sym_STAR_STAR, + ACTIONS(4892), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4894), 1, + anon_sym_in, + ACTIONS(4896), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4898), 1, + sym__not_in, + ACTIONS(4908), 1, + anon_sym_EQ, + ACTIONS(4912), 1, + anon_sym_EQ_GT, + ACTIONS(4914), 1, + anon_sym_PIPE, + ACTIONS(4916), 1, + anon_sym_COLON_COLON, + ACTIONS(4884), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4886), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4906), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4910), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4900), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3281), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(4888), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4902), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3279), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3281), 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(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(4890), 1, + anon_sym_STAR_STAR, + ACTIONS(4892), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4894), 1, + anon_sym_in, + ACTIONS(4896), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4898), 1, + sym__not_in, + ACTIONS(4908), 1, + anon_sym_EQ, + ACTIONS(4912), 1, + anon_sym_EQ_GT, + ACTIONS(4914), 1, + anon_sym_PIPE, + ACTIONS(4916), 1, + anon_sym_COLON_COLON, + ACTIONS(4918), 1, + anon_sym_when, + ACTIONS(4884), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4886), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4906), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4910), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4900), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3281), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + ACTIONS(4904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4888), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4902), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(4890), 1, + anon_sym_STAR_STAR, + ACTIONS(4892), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4894), 1, + anon_sym_in, + ACTIONS(4896), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4898), 1, + sym__not_in, + ACTIONS(4908), 1, + anon_sym_EQ, + ACTIONS(4912), 1, + anon_sym_EQ_GT, + ACTIONS(4914), 1, + anon_sym_PIPE, + ACTIONS(4916), 1, + anon_sym_COLON_COLON, + ACTIONS(4918), 1, + anon_sym_when, + ACTIONS(4884), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4886), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4906), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4910), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4900), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3281), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_DASH_GT, + ACTIONS(4904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4888), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4902), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3279), 1, + sym__not_in, + ACTIONS(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(4890), 1, + anon_sym_STAR_STAR, + ACTIONS(4884), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3281), 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(3279), 1, + sym__not_in, + ACTIONS(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(4890), 1, + anon_sym_STAR_STAR, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3281), 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(3279), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3281), 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(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(4890), 1, + anon_sym_STAR_STAR, + ACTIONS(4892), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4894), 1, + anon_sym_in, + ACTIONS(4896), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4898), 1, + sym__not_in, + ACTIONS(4908), 1, + anon_sym_EQ, + ACTIONS(4912), 1, + anon_sym_EQ_GT, + ACTIONS(4914), 1, + anon_sym_PIPE, + ACTIONS(4884), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4886), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4906), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4910), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4900), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4888), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4902), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(4890), 1, + anon_sym_STAR_STAR, + ACTIONS(4892), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4894), 1, + anon_sym_in, + ACTIONS(4896), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4898), 1, + sym__not_in, + ACTIONS(4884), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4886), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4888), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4902), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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(3279), 1, + sym__not_in, + ACTIONS(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(4890), 1, + anon_sym_STAR_STAR, + ACTIONS(4892), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4896), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4884), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4886), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4888), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(3275), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3277), 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(3271), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3273), 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(3267), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3269), 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(3263), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3265), 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(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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_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(3255), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3257), 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(3251), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3253), 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(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_RPAREN, anon_sym_LT, anon_sym_GT, @@ -337175,14 +325205,14 @@ static const uint16_t ts_small_parse_table[] = { [197125] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3118), 2, + ACTIONS(3227), 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, + ACTIONS(3229), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -337235,17 +325265,17 @@ static const uint16_t ts_small_parse_table[] = { [197189] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3118), 1, + ACTIONS(3227), 1, sym__not_in, - ACTIONS(4962), 1, + ACTIONS(4880), 1, anon_sym_DOT, - ACTIONS(4964), 1, + ACTIONS(4882), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3120), 48, + ACTIONS(3229), 48, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -337297,14 +325327,14 @@ static const uint16_t ts_small_parse_table[] = { [197257] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3118), 2, + ACTIONS(3227), 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, + ACTIONS(3229), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -337357,14 +325387,14 @@ static const uint16_t ts_small_parse_table[] = { [197321] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3118), 2, + ACTIONS(3227), 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, + ACTIONS(3229), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -337417,14 +325447,14 @@ static const uint16_t ts_small_parse_table[] = { [197385] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3064), 2, + ACTIONS(2940), 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, + ACTIONS(2942), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -337480,12 +325510,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3199), 4, + ACTIONS(3434), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3201), 48, + ACTIONS(3436), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -337540,12 +325570,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3319), 4, + ACTIONS(3067), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3321), 48, + ACTIONS(3069), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -337597,14 +325627,14 @@ static const uint16_t ts_small_parse_table[] = { [197577] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3155), 2, + 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(3157), 49, + ACTIONS(3217), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -337660,12 +325690,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3319), 4, + ACTIONS(3067), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3321), 48, + ACTIONS(3069), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -337720,12 +325750,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(2972), 4, + ACTIONS(2890), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(2974), 48, + ACTIONS(2892), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -337780,12 +325810,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3297), 4, + ACTIONS(3091), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3299), 48, + ACTIONS(3093), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -337840,12 +325870,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3297), 4, + ACTIONS(3091), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3299), 48, + ACTIONS(3093), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -337897,14 +325927,14 @@ static const uint16_t ts_small_parse_table[] = { [197897] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3191), 2, + 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(3193), 49, + ACTIONS(3125), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -337957,17 +325987,17 @@ static const uint16_t ts_small_parse_table[] = { [197961] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3191), 1, + ACTIONS(3123), 1, sym__not_in, - ACTIONS(4962), 1, + ACTIONS(4880), 1, anon_sym_DOT, - ACTIONS(4964), 1, + ACTIONS(4882), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3193), 48, + ACTIONS(3125), 48, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -338019,14 +326049,14 @@ static const uint16_t ts_small_parse_table[] = { [198029] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3191), 2, + 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(3193), 49, + ACTIONS(3125), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -338082,12 +326112,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3516), 4, + ACTIONS(3024), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3518), 48, + ACTIONS(3026), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -338139,74 +326169,74 @@ static const uint16_t ts_small_parse_table[] = { [198157] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4962), 1, + ACTIONS(4880), 1, anon_sym_DOT, - ACTIONS(4964), 1, + ACTIONS(4882), 1, anon_sym_LBRACK2, - ACTIONS(4972), 1, + ACTIONS(4890), 1, anon_sym_STAR_STAR, - ACTIONS(4974), 1, + ACTIONS(4892), 1, anon_sym_SLASH_SLASH, - ACTIONS(4976), 1, + ACTIONS(4894), 1, anon_sym_in, - ACTIONS(4978), 1, + ACTIONS(4896), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4980), 1, + ACTIONS(4898), 1, sym__not_in, - ACTIONS(4990), 1, + ACTIONS(4908), 1, anon_sym_EQ, - ACTIONS(4994), 1, + ACTIONS(4912), 1, anon_sym_EQ_GT, - ACTIONS(4996), 1, + ACTIONS(4914), 1, anon_sym_PIPE, - ACTIONS(4998), 1, + ACTIONS(4916), 1, anon_sym_COLON_COLON, - ACTIONS(5000), 1, + ACTIONS(4918), 1, anon_sym_when, - ACTIONS(4966), 2, + ACTIONS(4884), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4968), 2, + ACTIONS(4886), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 2, + ACTIONS(4920), 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, + ACTIONS(3556), 3, anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_GT, - ACTIONS(4988), 3, + ACTIONS(4906), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4992), 3, + ACTIONS(4910), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4982), 4, + ACTIONS(4900), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4986), 5, + ACTIONS(4904), 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, + ACTIONS(4888), 6, anon_sym_PLUS_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, + ACTIONS(4902), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -338219,14 +326249,14 @@ static const uint16_t ts_small_parse_table[] = { [198261] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3191), 2, + 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(3193), 49, + ACTIONS(3125), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -338279,14 +326309,14 @@ static const uint16_t ts_small_parse_table[] = { [198325] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3265), 2, + ACTIONS(3119), 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), 49, + ACTIONS(3121), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -338339,14 +326369,14 @@ static const uint16_t ts_small_parse_table[] = { [198389] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3269), 2, + ACTIONS(3115), 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), 49, + ACTIONS(3117), 49, anon_sym_RPAREN, anon_sym_LT, anon_sym_GT, @@ -338402,12 +326432,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3289), 4, + ACTIONS(3103), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3291), 48, + ACTIONS(3105), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -338462,12 +326492,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3285), 4, + ACTIONS(3107), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3287), 48, + ACTIONS(3109), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -338522,12 +326552,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3281), 4, + ACTIONS(3111), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3283), 48, + ACTIONS(3113), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -338582,12 +326612,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3269), 4, + ACTIONS(3115), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3271), 48, + ACTIONS(3117), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -338639,16 +326669,16 @@ static const uint16_t ts_small_parse_table[] = { [198709] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3010), 1, + ACTIONS(3000), 1, aux_sym_quoted_keyword_token1, - ACTIONS(3006), 2, + 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(3008), 48, + ACTIONS(2998), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -338703,12 +326733,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3195), 4, + ACTIONS(3430), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3197), 48, + ACTIONS(3432), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -338763,12 +326793,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3265), 4, + ACTIONS(3119), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3267), 48, + ACTIONS(3121), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -338820,16 +326850,16 @@ static const uint16_t ts_small_parse_table[] = { [198903] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3004), 1, + ACTIONS(3006), 1, aux_sym_quoted_keyword_token1, - ACTIONS(3000), 2, + ACTIONS(3002), 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, + ACTIONS(3004), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -338881,76 +326911,76 @@ static const uint16_t ts_small_parse_table[] = { [198969] = 26, ACTIONS(5), 1, sym_comment, - ACTIONS(4962), 1, + ACTIONS(4880), 1, anon_sym_DOT, - ACTIONS(4964), 1, + ACTIONS(4882), 1, anon_sym_LBRACK2, - ACTIONS(4972), 1, + ACTIONS(4890), 1, anon_sym_STAR_STAR, - ACTIONS(4974), 1, + ACTIONS(4892), 1, anon_sym_SLASH_SLASH, - ACTIONS(4976), 1, + ACTIONS(4894), 1, anon_sym_in, - ACTIONS(4978), 1, + ACTIONS(4896), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4980), 1, + ACTIONS(4898), 1, sym__not_in, - ACTIONS(4990), 1, + ACTIONS(4908), 1, anon_sym_EQ, - ACTIONS(4994), 1, + ACTIONS(4912), 1, anon_sym_EQ_GT, - ACTIONS(4996), 1, + ACTIONS(4914), 1, anon_sym_PIPE, - ACTIONS(4998), 1, + ACTIONS(4916), 1, anon_sym_COLON_COLON, - ACTIONS(5004), 1, + ACTIONS(4922), 1, anon_sym_RPAREN, - ACTIONS(5006), 1, + ACTIONS(4924), 1, anon_sym_COMMA, - ACTIONS(5009), 1, + ACTIONS(4927), 1, anon_sym_when, - ACTIONS(5012), 1, + ACTIONS(4930), 1, anon_sym_DASH_GT, - ACTIONS(4966), 2, + ACTIONS(4884), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4968), 2, + ACTIONS(4886), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 2, + ACTIONS(4920), 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, + ACTIONS(4906), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4992), 3, + ACTIONS(4910), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4982), 4, + ACTIONS(4900), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4986), 5, + ACTIONS(4904), 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, + ACTIONS(4888), 6, anon_sym_PLUS_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, + ACTIONS(4902), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -338966,12 +326996,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(3183), 4, + ACTIONS(3419), 4, sym__not_in, ts_builtin_sym_end, aux_sym__terminator_token1, anon_sym_LBRACK2, - ACTIONS(3185), 48, + ACTIONS(3421), 48, anon_sym_SEMI, anon_sym_LT, anon_sym_GT, @@ -339021,9274 +327051,6 @@ static const uint16_t ts_small_parse_table[] = { 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(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, - anon_sym_COMMA, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_LT_DASH, - anon_sym_BSLASH_BSLASH, - anon_sym_when, - anon_sym_COLON_COLON, - anon_sym_EQ_GT, - anon_sym_EQ, - anon_sym_PIPE_PIPE, - anon_sym_PIPE_PIPE_PIPE, - anon_sym_or, - anon_sym_AMP_AMP, - anon_sym_AMP_AMP_AMP, - anon_sym_and, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_EQ_TILDE, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_PIPE_GT, - anon_sym_LT_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT_TILDE, - anon_sym_TILDE_GT_GT, - anon_sym_LT_TILDE, - anon_sym_TILDE_GT, - anon_sym_LT_TILDE_GT, - anon_sym_LT_PIPE_GT, - anon_sym_in, - anon_sym_CARET_CARET_CARET, - anon_sym_SLASH_SLASH, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PLUS_PLUS_PLUS, - anon_sym_DASH_DASH_DASH, - anon_sym_DOT_DOT, - anon_sym_LT_GT, - anon_sym_STAR, - anon_sym_STAR_STAR, - anon_sym_DOT, - [199333] = 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), 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, - [199397] = 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), 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, - 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, - [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, @@ -348348,17 +327110,9285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [209397] = 4, + [199205] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3058), 2, + ACTIONS(3111), 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, + ACTIONS(3113), 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(3419), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3421), 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, + [199333] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3107), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3109), 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, + [199397] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3103), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3105), 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(3091), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3093), 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(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, + [199589] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3091), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3093), 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(4378), 1, + anon_sym_PIPE, + ACTIONS(4386), 1, + anon_sym_when, + ACTIONS(4388), 1, + anon_sym_COLON_COLON, + ACTIONS(4390), 1, + anon_sym_EQ_GT, + ACTIONS(4392), 1, + anon_sym_EQ, + ACTIONS(4402), 1, + anon_sym_in, + ACTIONS(4404), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4406), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4410), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(4416), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3554), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3556), 2, + anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(4380), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4384), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4394), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4396), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4376), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4398), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4408), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4400), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(2890), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2892), 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(3067), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3069), 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(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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_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(3067), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3069), 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(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, + [200079] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3063), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3065), 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(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3123), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3125), 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(3419), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3421), 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(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, + [200339] = 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), 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(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, + [200467] = 26, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2803), 1, + anon_sym_COMMA, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + ACTIONS(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(4890), 1, + anon_sym_STAR_STAR, + ACTIONS(4892), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4894), 1, + anon_sym_in, + ACTIONS(4896), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4898), 1, + sym__not_in, + ACTIONS(4908), 1, + anon_sym_EQ, + ACTIONS(4912), 1, + anon_sym_EQ_GT, + ACTIONS(4914), 1, + anon_sym_PIPE, + ACTIONS(4916), 1, + anon_sym_COLON_COLON, + ACTIONS(4932), 1, + anon_sym_when, + STATE(5149), 1, + aux_sym__stab_clause_arguments_without_parentheses_repeat1, + ACTIONS(4884), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4886), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4920), 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(4906), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4910), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4900), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4888), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4902), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3215), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3217), 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(3321), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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(2940), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(2942), 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(3227), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3229), 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(3227), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3229), 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(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3227), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3229), 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(3227), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3229), 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(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, + [201091] = 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), 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(3397), 4, + sym__not_in, + 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, + [201219] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2565), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2567), 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(2573), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2575), 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(3387), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3389), 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(3383), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3385), 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(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(4890), 1, + anon_sym_STAR_STAR, + ACTIONS(4892), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4894), 1, + anon_sym_in, + ACTIONS(4896), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4898), 1, + sym__not_in, + ACTIONS(4908), 1, + anon_sym_EQ, + ACTIONS(4912), 1, + anon_sym_EQ_GT, + ACTIONS(4914), 1, + anon_sym_PIPE, + ACTIONS(4916), 1, + anon_sym_COLON_COLON, + ACTIONS(4918), 1, + anon_sym_when, + ACTIONS(4884), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4886), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4920), 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(3552), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(4906), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4910), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4900), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4888), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4902), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3321), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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(4935), 1, + anon_sym_COMMA, + STATE(3857), 1, + aux_sym_keywords_repeat1, + 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), 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(3063), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3065), 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(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_RPAREN, + anon_sym_LT, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_COMMA, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + anon_sym_EQ_GT, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + anon_sym_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_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(4938), 1, + anon_sym_COMMA, + STATE(3857), 1, + aux_sym_keywords_repeat1, + 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), 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(4938), 1, + anon_sym_COMMA, + STATE(3860), 1, + aux_sym_keywords_repeat1, + ACTIONS(3391), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3393), 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(3321), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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(3002), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3004), 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(3002), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3004), 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(3321), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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(3321), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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(3251), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3253), 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(3321), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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(3255), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3257), 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(3700), 1, + anon_sym_LBRACK2, + ACTIONS(4563), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3281), 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(3700), 1, + anon_sym_LBRACK2, + ACTIONS(4563), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3227), 2, + sym__not_in, + aux_sym__terminator_token1, + ACTIONS(3229), 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(3700), 1, + anon_sym_LBRACK2, + ACTIONS(4563), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3123), 2, + sym__not_in, + aux_sym__terminator_token1, + 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_end, + [202691] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3321), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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(3259), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3261), 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(3263), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3265), 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(3321), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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(3055), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3057), 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(3321), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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(3051), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3053), 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(3321), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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(3321), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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(2908), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2910), 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(3321), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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(3321), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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(3321), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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(3321), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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(2952), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2954), 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(3321), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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(3321), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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(3321), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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(3321), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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(3321), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3323), 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(2581), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2583), 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(2545), 3, + sym__not_in, + aux_sym_quoted_keyword_token1, + anon_sym_LBRACK2, + ACTIONS(2547), 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(4940), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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(4942), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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(4944), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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(3267), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3269), 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(4946), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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(3317), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3319), 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(3271), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3273), 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(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, + [204619] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2912), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2914), 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(4948), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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(4950), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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(2964), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2966), 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(4952), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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(4954), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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(4956), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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(4958), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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(2956), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2958), 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(4960), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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(4962), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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(3059), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3061), 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, + [205403] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4964), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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(4966), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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(4968), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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(4970), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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(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_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(4972), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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(3071), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3073), 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(3075), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3077), 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(3079), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3081), 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(4974), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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(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, + [206119] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3083), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3085), 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(3087), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3089), 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(3095), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3097), 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(3099), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3101), 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(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, + [206439] = 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, + [206503] = 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, + [206567] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3139), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3141), 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(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_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(3147), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3149), 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(3151), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3153), 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(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, + [206887] = 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, + [206951] = 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, + [207015] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2968), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2970), 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(3279), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3281), 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(3299), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3301), 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(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_PIPE, + ACTIONS(4697), 1, + anon_sym_when, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(4976), 1, + anon_sym_RPAREN, + ACTIONS(4978), 1, + anon_sym_COMMA, + STATE(5426), 1, + aux_sym__items_with_trailing_separator_repeat1, + ACTIONS(4693), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4725), 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(4705), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4707), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4689), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4709), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4719), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4711), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(2920), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2922), 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(2930), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2932), 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(4980), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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(4406), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4410), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4380), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4408), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(3287), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3289), 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(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3281), 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(4410), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4380), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4408), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4406), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4410), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4380), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4408), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4402), 1, + anon_sym_in, + ACTIONS(4404), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4406), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4410), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(4416), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4380), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4408), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4402), 1, + anon_sym_in, + ACTIONS(4404), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4406), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4410), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(4416), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4380), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4376), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4408), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4400), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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(4402), 1, + anon_sym_in, + ACTIONS(4404), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4406), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4410), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(4416), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4380), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4376), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4398), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4408), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4400), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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(4402), 1, + anon_sym_in, + ACTIONS(4404), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4406), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4410), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(4416), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4380), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4396), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4376), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4398), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4408), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4400), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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(4392), 1, + anon_sym_EQ, + ACTIONS(4402), 1, + anon_sym_in, + ACTIONS(4404), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4406), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4410), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(4416), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4380), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4394), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4396), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4376), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4398), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4408), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4400), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(4390), 1, + anon_sym_EQ_GT, + ACTIONS(4392), 1, + anon_sym_EQ, + ACTIONS(4402), 1, + anon_sym_in, + ACTIONS(4404), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4406), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4410), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(4416), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4380), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4394), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4396), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4376), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4398), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4408), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4400), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(4378), 1, + anon_sym_PIPE, + ACTIONS(4388), 1, + anon_sym_COLON_COLON, + ACTIONS(4390), 1, + anon_sym_EQ_GT, + ACTIONS(4392), 1, + anon_sym_EQ, + ACTIONS(4402), 1, + anon_sym_in, + ACTIONS(4404), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4406), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4410), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(4416), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4380), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4394), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4396), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4376), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(3281), 5, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + ACTIONS(4398), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4408), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4400), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3279), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3281), 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(4378), 1, + anon_sym_PIPE, + ACTIONS(4386), 1, + anon_sym_when, + ACTIONS(4388), 1, + anon_sym_COLON_COLON, + ACTIONS(4390), 1, + anon_sym_EQ_GT, + ACTIONS(4392), 1, + anon_sym_EQ, + ACTIONS(4402), 1, + anon_sym_in, + ACTIONS(4404), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4406), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4410), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(4416), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4380), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4394), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4396), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3281), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4376), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4398), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4408), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4400), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(4378), 1, + anon_sym_PIPE, + ACTIONS(4386), 1, + anon_sym_when, + ACTIONS(4388), 1, + anon_sym_COLON_COLON, + ACTIONS(4390), 1, + anon_sym_EQ_GT, + ACTIONS(4392), 1, + anon_sym_EQ, + ACTIONS(4402), 1, + anon_sym_in, + ACTIONS(4404), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4406), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4410), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(4416), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4380), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4394), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4396), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(3281), 4, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4376), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4398), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4408), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4400), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(4410), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4380), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(3279), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3281), 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(4410), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(3281), 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(3279), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3281), 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] = 22, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4378), 1, + anon_sym_PIPE, + ACTIONS(4390), 1, + anon_sym_EQ_GT, + ACTIONS(4392), 1, + anon_sym_EQ, + ACTIONS(4402), 1, + anon_sym_in, + ACTIONS(4404), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4406), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4410), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(4416), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4380), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4394), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4396), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4376), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4398), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(3281), 6, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + anon_sym_when, + anon_sym_COLON_COLON, + ACTIONS(4408), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4400), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [209101] = 15, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4402), 1, + anon_sym_in, + ACTIONS(4404), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4406), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4410), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(4416), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3279), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4380), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4408), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4400), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [209187] = 12, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4406), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4410), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4380), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3279), 3, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4408), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [209267] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4982), 1, + aux_sym_sigil_token3, + ACTIONS(3231), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3233), 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, + [209333] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(3275), 4, + sym__not_in, + ts_builtin_sym_end, + aux_sym__terminator_token1, + anon_sym_LBRACK2, + ACTIONS(3277), 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(2992), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2994), 49, anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, @@ -348411,14 +336441,14 @@ static const uint16_t ts_small_parse_table[] = { [209461] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2996), 2, + ACTIONS(2988), 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, + ACTIONS(2990), 49, anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, @@ -348471,14 +336501,14 @@ static const uint16_t ts_small_parse_table[] = { [209525] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(2990), 2, + ACTIONS(2980), 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, + ACTIONS(2982), 49, anon_sym_LPAREN, anon_sym_LT, anon_sym_GT, @@ -348531,75 +336561,75 @@ static const uint16_t ts_small_parse_table[] = { [209589] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3551), 1, + ACTIONS(3554), 1, aux_sym__terminator_token1, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4611), 1, + ACTIONS(4529), 1, anon_sym_PIPE, - ACTIONS(4619), 1, + ACTIONS(4537), 1, anon_sym_when, - ACTIONS(4621), 1, + ACTIONS(4539), 1, anon_sym_COLON_COLON, - ACTIONS(4623), 1, + ACTIONS(4541), 1, anon_sym_EQ_GT, - ACTIONS(4625), 1, + ACTIONS(4543), 1, anon_sym_EQ, - ACTIONS(4635), 1, + ACTIONS(4553), 1, anon_sym_in, - ACTIONS(4637), 1, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4639), 1, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - ACTIONS(4643), 1, + ACTIONS(4561), 1, anon_sym_STAR_STAR, - ACTIONS(4645), 1, + ACTIONS(4563), 1, anon_sym_DOT, - ACTIONS(4647), 1, + ACTIONS(4565), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4613), 2, + ACTIONS(4531), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4615), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4617), 2, + ACTIONS(4535), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(3553), 3, + ACTIONS(3556), 3, anon_sym_SEMI, anon_sym_COMMA, anon_sym_end, - ACTIONS(4627), 3, + ACTIONS(4545), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4629), 3, + ACTIONS(4547), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4609), 4, + ACTIONS(4527), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4631), 5, + ACTIONS(4549), 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, + ACTIONS(4559), 6, anon_sym_PLUS_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, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -348612,14 +336642,14 @@ static const uint16_t ts_small_parse_table[] = { [209695] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3486), 2, + 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(3488), 49, + ACTIONS(3209), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -348670,186 +336700,6 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__not_in, - anon_sym_LBRACK2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - ACTIONS(3239), 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, - [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, @@ -348909,17 +336759,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [210015] = 4, + [209823] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3277), 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(3279), 49, + ACTIONS(3225), 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, + [209887] = 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_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(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_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(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_LT, anon_sym_GT, anon_sym_PIPE, @@ -348972,14 +337002,14 @@ static const uint16_t ts_small_parse_table[] = { [210079] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3273), 2, + 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(3275), 49, + ACTIONS(3161), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -349032,14 +337062,14 @@ static const uint16_t ts_small_parse_table[] = { [210143] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3259), 2, + 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(3261), 49, + ACTIONS(3165), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -349092,14 +337122,14 @@ static const uint16_t ts_small_parse_table[] = { [210207] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3253), 2, + 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(3255), 49, + ACTIONS(3169), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -349152,14 +337182,14 @@ static const uint16_t ts_small_parse_table[] = { [210271] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3245), 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(3247), 49, + ACTIONS(3173), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -349212,14 +337242,14 @@ static const uint16_t ts_small_parse_table[] = { [210335] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3241), 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(3243), 49, + ACTIONS(3177), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -349272,14 +337302,14 @@ static const uint16_t ts_small_parse_table[] = { [210399] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3233), 2, + 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(3235), 49, + ACTIONS(3181), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -349332,14 +337362,14 @@ static const uint16_t ts_small_parse_table[] = { [210463] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3229), 2, + 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(3231), 49, + ACTIONS(3185), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -349392,14 +337422,14 @@ static const uint16_t ts_small_parse_table[] = { [210527] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3145), 2, + 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(3147), 49, + ACTIONS(3189), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -349452,14 +337482,14 @@ static const uint16_t ts_small_parse_table[] = { [210591] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3141), 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(3143), 49, + ACTIONS(3193), 49, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -349512,14 +337542,14 @@ static const uint16_t ts_small_parse_table[] = { [210655] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3155), 2, + 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(3157), 48, + ACTIONS(3217), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -349571,61 +337601,61 @@ static const uint16_t ts_small_parse_table[] = { [210718] = 20, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(5072), 1, + ACTIONS(4990), 1, anon_sym_EQ_GT, - ACTIONS(5074), 1, + ACTIONS(4992), 1, anon_sym_EQ, - ACTIONS(5084), 1, + ACTIONS(5002), 1, anon_sym_in, - ACTIONS(5086), 1, + ACTIONS(5004), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5088), 1, + ACTIONS(5006), 1, anon_sym_SLASH_SLASH, - ACTIONS(5092), 1, + ACTIONS(5010), 1, anon_sym_STAR_STAR, - ACTIONS(5094), 1, + ACTIONS(5012), 1, sym__not_in, - ACTIONS(5068), 2, + ACTIONS(4986), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5070), 2, + ACTIONS(4988), 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, + ACTIONS(4994), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5078), 3, + ACTIONS(4996), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5066), 4, + ACTIONS(4984), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5080), 5, + ACTIONS(4998), 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, + ACTIONS(5008), 6, anon_sym_PLUS_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, + ACTIONS(3281), 7, anon_sym_LBRACE, anon_sym_PIPE, anon_sym_COMMA, @@ -349633,7 +337663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, - ACTIONS(5082), 9, + ACTIONS(5000), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -349646,14 +337676,14 @@ static const uint16_t ts_small_parse_table[] = { [210813] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3106), 2, + ACTIONS(3321), 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, + ACTIONS(3323), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -349705,14 +337735,14 @@ static const uint16_t ts_small_parse_table[] = { [210876] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3106), 2, + ACTIONS(3321), 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, + ACTIONS(3323), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -349764,14 +337794,14 @@ static const uint16_t ts_small_parse_table[] = { [210939] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3106), 2, + ACTIONS(3321), 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, + ACTIONS(3323), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -349823,14 +337853,14 @@ static const uint16_t ts_small_parse_table[] = { [211002] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3106), 2, + ACTIONS(3321), 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, + ACTIONS(3323), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -349882,14 +337912,14 @@ static const uint16_t ts_small_parse_table[] = { [211065] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3106), 2, + ACTIONS(3321), 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, + ACTIONS(3323), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -349941,14 +337971,14 @@ static const uint16_t ts_small_parse_table[] = { [211128] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3106), 2, + ACTIONS(3321), 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, + ACTIONS(3323), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -350000,14 +338030,14 @@ static const uint16_t ts_small_parse_table[] = { [211191] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3106), 2, + ACTIONS(3321), 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, + ACTIONS(3323), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -350059,14 +338089,14 @@ static const uint16_t ts_small_parse_table[] = { [211254] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3106), 2, + ACTIONS(3321), 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, + ACTIONS(3323), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -350118,14 +338148,14 @@ static const uint16_t ts_small_parse_table[] = { [211317] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3106), 2, + ACTIONS(3321), 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, + ACTIONS(3323), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -350174,72 +338204,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [211380] = 20, + [211380] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(4934), 1, - anon_sym_EQ_GT, - ACTIONS(4936), 1, - anon_sym_EQ, - ACTIONS(4946), 1, + ACTIONS(4864), 1, anon_sym_in, - ACTIONS(4948), 1, + ACTIONS(4866), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4950), 1, + ACTIONS(4868), 1, anon_sym_SLASH_SLASH, - ACTIONS(4954), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4956), 1, + ACTIONS(4874), 1, anon_sym_DOT, - ACTIONS(4958), 1, + ACTIONS(4876), 1, anon_sym_LBRACK2, - ACTIONS(4960), 1, + ACTIONS(4878), 1, sym__not_in, - ACTIONS(4922), 2, + ACTIONS(4840), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4926), 2, + ACTIONS(4844), 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, + ACTIONS(4836), 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, + ACTIONS(4870), 6, anon_sym_PLUS_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, + ACTIONS(4862), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -350249,17 +338253,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [211475] = 4, + ACTIONS(3281), 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, + [211465] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3106), 2, + ACTIONS(3321), 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, + ACTIONS(3323), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -350308,17 +338333,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [211538] = 4, + [211528] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3106), 2, + ACTIONS(3321), 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, + ACTIONS(3323), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -350367,17 +338392,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [211601] = 4, + [211591] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3106), 2, + ACTIONS(3321), 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, + ACTIONS(3323), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -350426,17 +338451,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [211664] = 4, + [211654] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3106), 2, + ACTIONS(3321), 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, + ACTIONS(3323), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -350485,17 +338510,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [211727] = 4, + [211717] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3534), 2, + 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(3536), 48, + ACTIONS(3247), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -350544,17 +338569,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [211790] = 4, + [211780] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3130), 2, + ACTIONS(3317), 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, + ACTIONS(3319), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -350603,796 +338628,7 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, - [212294] = 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), 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, - [212357] = 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, - [212420] = 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, - [212483] = 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), 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, - [212546] = 6, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3293), 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(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_STAR_STAR, - [212613] = 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(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(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, - [212716] = 4, + [211843] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3303), 2, @@ -351451,941 +338687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [212779] = 10, - 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(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(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, - [212917] = 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, - [212980] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3516), 2, - sym__not_in, - anon_sym_LBRACK2, - 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(3518), 46, - anon_sym_LT, - anon_sym_GT, - anon_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, - [213045] = 5, - ACTIONS(5), 1, - sym_comment, - ACTIONS(3534), 2, - sym__not_in, - anon_sym_LBRACK2, - 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, - ACTIONS(3536), 46, - anon_sym_LT, - anon_sym_GT, - anon_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, - [213110] = 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, - [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(3136), 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, - [213772] = 25, - ACTIONS(5), 1, - sym_comment, - 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, + [211906] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(3307), 2, @@ -352444,17 +338746,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [213940] = 4, + [211969] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3106), 2, + ACTIONS(3002), 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, + ACTIONS(3004), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -352503,77 +338805,1591 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [214003] = 25, + [212032] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(3307), 2, + sym__not_in, anon_sym_LBRACK2, - ACTIONS(4391), 1, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4514), 1, + ACTIONS(3309), 48, + anon_sym_LT, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(4522), 1, + anon_sym_SLASH, + 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(4524), 1, anon_sym_COLON_COLON, - ACTIONS(4526), 1, anon_sym_EQ_GT, - ACTIONS(4528), 1, anon_sym_EQ, - ACTIONS(4538), 1, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_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(4540), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4542), 1, anon_sym_SLASH_SLASH, - ACTIONS(4546), 1, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_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(4548), 1, anon_sym_DOT, - ACTIONS(4550), 1, + [212095] = 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), 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, + [212158] = 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), 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, + [212221] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [212284] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3299), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3301), 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, + [212347] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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, + [212410] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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, + [212473] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3287), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3289), 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, + [212536] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__not_in, + ACTIONS(4874), 1, + anon_sym_DOT, + ACTIONS(4876), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3281), 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, + [212603] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(4691), 1, + anon_sym_PIPE, + ACTIONS(4697), 1, + anon_sym_when, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(4693), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4695), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4725), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4922), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4705), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4707), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4689), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4709), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4719), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4711), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [212706] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3251), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3253), 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, + [212769] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__not_in, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_DOT, + ACTIONS(4876), 1, + anon_sym_LBRACK2, + ACTIONS(4840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4870), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [212844] = 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), 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, + [212907] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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, + [212970] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3024), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3718), 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(3026), 46, + anon_sym_LT, + anon_sym_GT, + anon_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, + [213035] = 5, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3245), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3652), 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(3247), 46, + anon_sym_LT, + anon_sym_GT, + anon_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, + [213100] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__not_in, + ACTIONS(4868), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_DOT, + ACTIONS(4876), 1, + anon_sym_LBRACK2, + ACTIONS(4840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4870), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [213177] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__not_in, + ACTIONS(4868), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_DOT, + ACTIONS(4876), 1, + anon_sym_LBRACK2, + ACTIONS(4840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4870), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [213254] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4864), 1, + anon_sym_in, + ACTIONS(4866), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4868), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_DOT, + ACTIONS(4876), 1, + anon_sym_LBRACK2, + ACTIONS(4878), 1, + sym__not_in, + ACTIONS(4840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4870), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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, + [213335] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4838), 1, + anon_sym_PIPE, + ACTIONS(4848), 1, + anon_sym_when, + ACTIONS(4850), 1, + anon_sym_COLON_COLON, + ACTIONS(4852), 1, + anon_sym_EQ_GT, + ACTIONS(4854), 1, + anon_sym_EQ, + ACTIONS(4864), 1, + anon_sym_in, + ACTIONS(4866), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4868), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_DOT, + ACTIONS(4876), 1, + anon_sym_LBRACK2, + ACTIONS(4878), 1, + sym__not_in, + ACTIONS(3030), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(4840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4846), 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(4856), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4858), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4836), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4860), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4870), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4862), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [213438] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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, + [213501] = 16, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4864), 1, + anon_sym_in, + ACTIONS(4866), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4868), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_DOT, + ACTIONS(4876), 1, + anon_sym_LBRACK2, + ACTIONS(4878), 1, + sym__not_in, + ACTIONS(4840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4836), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4860), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4870), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4862), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [213588] = 17, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4864), 1, + anon_sym_in, + ACTIONS(4866), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4868), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_DOT, + ACTIONS(4876), 1, + anon_sym_LBRACK2, + ACTIONS(4878), 1, + sym__not_in, + ACTIONS(4840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4858), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4836), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4860), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4870), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4862), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(3281), 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, + [213677] = 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), 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, + [213740] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(4261), 1, + aux_sym__terminator_token1, + ACTIONS(4432), 1, + anon_sym_PIPE, + ACTIONS(4440), 1, + anon_sym_when, + ACTIONS(4442), 1, + anon_sym_COLON_COLON, + ACTIONS(4444), 1, + anon_sym_EQ_GT, + ACTIONS(4446), 1, + anon_sym_EQ, + ACTIONS(4456), 1, + anon_sym_in, + ACTIONS(4458), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4460), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4464), 1, + anon_sym_STAR_STAR, + ACTIONS(4466), 1, + anon_sym_DOT, + ACTIONS(4468), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4393), 2, + ACTIONS(4263), 2, anon_sym_SEMI, anon_sym_RPAREN, - ACTIONS(4516), 2, + ACTIONS(4434), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4518), 2, + ACTIONS(4436), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4520), 2, + ACTIONS(4438), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4530), 3, + ACTIONS(4448), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4532), 3, + ACTIONS(4450), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4512), 4, + ACTIONS(4430), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4534), 5, + ACTIONS(4452), 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, + ACTIONS(4462), 6, anon_sym_PLUS_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, + ACTIONS(4454), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -352583,17 +340399,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - [214108] = 4, + [213845] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3449), 2, + ACTIONS(3255), 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), 48, + ACTIONS(3257), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -352642,96 +340458,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [214171] = 24, + [213908] = 4, 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(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, + ACTIONS(3321), 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), 48, + ACTIONS(3323), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -352780,17 +340517,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [214337] = 4, + [213971] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3516), 2, + ACTIONS(3700), 1, + anon_sym_LBRACK2, + ACTIONS(4309), 1, + aux_sym__terminator_token1, + ACTIONS(4432), 1, + anon_sym_PIPE, + ACTIONS(4440), 1, + anon_sym_when, + ACTIONS(4442), 1, + anon_sym_COLON_COLON, + ACTIONS(4444), 1, + anon_sym_EQ_GT, + ACTIONS(4446), 1, + anon_sym_EQ, + ACTIONS(4456), 1, + anon_sym_in, + ACTIONS(4458), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4460), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4464), 1, + anon_sym_STAR_STAR, + ACTIONS(4466), 1, + anon_sym_DOT, + ACTIONS(4468), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4311), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(4434), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4436), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4438), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4448), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4450), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4430), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4452), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4462), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4454), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [214076] = 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(3518), 48, + ACTIONS(3261), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -352839,17 +340656,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [214400] = 4, + [214139] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(3207), 2, + ACTIONS(4838), 1, + anon_sym_PIPE, + ACTIONS(4848), 1, + anon_sym_when, + ACTIONS(4850), 1, + anon_sym_COLON_COLON, + ACTIONS(4852), 1, + anon_sym_EQ_GT, + ACTIONS(4854), 1, + anon_sym_EQ, + ACTIONS(4864), 1, + anon_sym_in, + ACTIONS(4866), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4868), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_DOT, + ACTIONS(4876), 1, + anon_sym_LBRACK2, + ACTIONS(4878), 1, + sym__not_in, + ACTIONS(3552), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(4840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4846), 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(4856), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4858), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4836), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4860), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4870), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4862), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [214242] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3263), 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), 48, + ACTIONS(3265), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -352898,17 +340794,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [214463] = 4, + [214305] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3106), 2, + ACTIONS(3024), 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, + ACTIONS(3026), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -352957,71 +340853,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_STAR, anon_sym_STAR_STAR, anon_sym_DOT, - [214526] = 19, + [214368] = 4, 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, + ACTIONS(3442), 2, sym__not_in, - ACTIONS(4922), 2, - anon_sym_SLASH, - anon_sym_STAR, - ACTIONS(4926), 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(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, + ACTIONS(3444), 48, 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_SLASH, anon_sym_COMMA, anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, - ACTIONS(4944), 9, + anon_sym_EQ, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -353031,35 +340900,47 @@ static const uint16_t ts_small_parse_table[] = { 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_in, + anon_sym_CARET_CARET_CARET, + anon_sym_SLASH_SLASH, anon_sym_PLUS_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_STAR, + anon_sym_STAR_STAR, + anon_sym_DOT, + [214431] = 10, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__not_in, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(5010), 1, + anon_sym_STAR_STAR, + ACTIONS(4986), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4988), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5008), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 36, anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, @@ -353096,37 +340977,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in, anon_sym_CARET_CARET_CARET, anon_sym_SLASH_SLASH, - [214694] = 11, + [214506] = 19, 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, + ACTIONS(4854), 1, + anon_sym_EQ, + ACTIONS(4864), 1, + anon_sym_in, + ACTIONS(4866), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4868), 1, anon_sym_SLASH_SLASH, - ACTIONS(5092), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(5068), 2, + ACTIONS(4874), 1, + anon_sym_DOT, + ACTIONS(4876), 1, + anon_sym_LBRACK2, + ACTIONS(4878), 1, + sym__not_in, + ACTIONS(4840), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5070), 2, + ACTIONS(4844), 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, + ACTIONS(4856), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4858), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4836), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4860), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4870), 6, anon_sym_PLUS_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, + ACTIONS(3281), 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(4862), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [214599] = 11, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3279), 1, + sym__not_in, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(5006), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5010), 1, + anon_sym_STAR_STAR, + ACTIONS(4986), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4988), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5008), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 35, anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, @@ -353162,74 +341117,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, anon_sym_CARET_CARET_CARET, + [214676] = 20, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4852), 1, + anon_sym_EQ_GT, + ACTIONS(4854), 1, + anon_sym_EQ, + ACTIONS(4864), 1, + anon_sym_in, + ACTIONS(4866), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4868), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_DOT, + ACTIONS(4876), 1, + anon_sym_LBRACK2, + ACTIONS(4878), 1, + sym__not_in, + ACTIONS(4840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(4856), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4858), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4836), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4860), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4870), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(4862), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, [214771] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(4920), 1, + ACTIONS(4838), 1, anon_sym_PIPE, - ACTIONS(4932), 1, + ACTIONS(4850), 1, anon_sym_COLON_COLON, - ACTIONS(4934), 1, + ACTIONS(4852), 1, anon_sym_EQ_GT, - ACTIONS(4936), 1, + ACTIONS(4854), 1, anon_sym_EQ, - ACTIONS(4946), 1, + ACTIONS(4864), 1, anon_sym_in, - ACTIONS(4948), 1, + ACTIONS(4866), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4950), 1, + ACTIONS(4868), 1, anon_sym_SLASH_SLASH, - ACTIONS(4954), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4956), 1, + ACTIONS(4874), 1, anon_sym_DOT, - ACTIONS(4958), 1, + ACTIONS(4876), 1, anon_sym_LBRACK2, - ACTIONS(4960), 1, + ACTIONS(4878), 1, sym__not_in, - ACTIONS(4922), 2, + ACTIONS(4840), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4926), 2, + ACTIONS(4844), 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, + ACTIONS(4856), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4940), 3, + ACTIONS(4858), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4918), 4, + ACTIONS(4836), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3295), 5, + ACTIONS(3281), 5, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(4942), 5, + ACTIONS(4860), 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, + ACTIONS(4870), 6, anon_sym_PLUS_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, + ACTIONS(4862), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -353242,14 +341272,14 @@ static const uint16_t ts_small_parse_table[] = { [214870] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 2, + ACTIONS(3279), 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, + ACTIONS(3281), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -353301,34 +341331,34 @@ static const uint16_t ts_small_parse_table[] = { [214933] = 11, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, sym__not_in, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(5088), 1, + ACTIONS(5006), 1, anon_sym_SLASH_SLASH, - ACTIONS(5092), 1, + ACTIONS(5010), 1, anon_sym_STAR_STAR, - ACTIONS(5068), 2, + ACTIONS(4986), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5070), 2, + ACTIONS(4988), 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, + ACTIONS(5008), 6, anon_sym_PLUS_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, + ACTIONS(3281), 35, anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, @@ -353367,72 +341397,72 @@ static const uint16_t ts_small_parse_table[] = { [215010] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(4920), 1, + ACTIONS(4838), 1, anon_sym_PIPE, - ACTIONS(4930), 1, + ACTIONS(4848), 1, anon_sym_when, - ACTIONS(4932), 1, + ACTIONS(4850), 1, anon_sym_COLON_COLON, - ACTIONS(4934), 1, + ACTIONS(4852), 1, anon_sym_EQ_GT, - ACTIONS(4936), 1, + ACTIONS(4854), 1, anon_sym_EQ, - ACTIONS(4946), 1, + ACTIONS(4864), 1, anon_sym_in, - ACTIONS(4948), 1, + ACTIONS(4866), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4950), 1, + ACTIONS(4868), 1, anon_sym_SLASH_SLASH, - ACTIONS(4954), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4956), 1, + ACTIONS(4874), 1, anon_sym_DOT, - ACTIONS(4958), 1, + ACTIONS(4876), 1, anon_sym_LBRACK2, - ACTIONS(4960), 1, + ACTIONS(4878), 1, sym__not_in, - ACTIONS(4922), 2, + ACTIONS(4840), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4926), 2, + ACTIONS(4844), 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, + ACTIONS(4856), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4940), 3, + ACTIONS(4858), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3295), 4, + ACTIONS(3281), 4, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4918), 4, + ACTIONS(4836), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4942), 5, + ACTIONS(4860), 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, + ACTIONS(4870), 6, anon_sym_PLUS_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, + ACTIONS(4862), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -353445,14 +341475,14 @@ static const uint16_t ts_small_parse_table[] = { [215111] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3203), 2, + ACTIONS(3438), 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, + ACTIONS(3440), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -353504,72 +341534,72 @@ static const uint16_t ts_small_parse_table[] = { [215174] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(4920), 1, + ACTIONS(4838), 1, anon_sym_PIPE, - ACTIONS(4930), 1, + ACTIONS(4848), 1, anon_sym_when, - ACTIONS(4932), 1, + ACTIONS(4850), 1, anon_sym_COLON_COLON, - ACTIONS(4934), 1, + ACTIONS(4852), 1, anon_sym_EQ_GT, - ACTIONS(4936), 1, + ACTIONS(4854), 1, anon_sym_EQ, - ACTIONS(4946), 1, + ACTIONS(4864), 1, anon_sym_in, - ACTIONS(4948), 1, + ACTIONS(4866), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4950), 1, + ACTIONS(4868), 1, anon_sym_SLASH_SLASH, - ACTIONS(4954), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4956), 1, + ACTIONS(4874), 1, anon_sym_DOT, - ACTIONS(4958), 1, + ACTIONS(4876), 1, anon_sym_LBRACK2, - ACTIONS(4960), 1, + ACTIONS(4878), 1, sym__not_in, - ACTIONS(4922), 2, + ACTIONS(4840), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4926), 2, + ACTIONS(4844), 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, + ACTIONS(4856), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4940), 3, + ACTIONS(4858), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3295), 4, + ACTIONS(3281), 4, anon_sym_COMMA, anon_sym_GT_GT, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4918), 4, + ACTIONS(4836), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4942), 5, + ACTIONS(4860), 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, + ACTIONS(4870), 6, anon_sym_PLUS_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, + ACTIONS(4862), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -353582,22 +341612,22 @@ static const uint16_t ts_small_parse_table[] = { [215275] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, sym__not_in, - ACTIONS(4954), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4956), 1, + ACTIONS(4874), 1, anon_sym_DOT, - ACTIONS(4958), 1, + ACTIONS(4876), 1, anon_sym_LBRACK2, - ACTIONS(4922), 2, + ACTIONS(4840), 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, + ACTIONS(3281), 44, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -353645,19 +341675,19 @@ static const uint16_t ts_small_parse_table[] = { [215346] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, sym__not_in, - ACTIONS(4954), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4956), 1, + ACTIONS(4874), 1, anon_sym_DOT, - ACTIONS(4958), 1, + ACTIONS(4876), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3295), 46, + ACTIONS(3281), 46, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -353707,14 +341737,14 @@ static const uint16_t ts_small_parse_table[] = { [215415] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3199), 2, + ACTIONS(3434), 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, + ACTIONS(3436), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -353766,14 +341796,14 @@ static const uint16_t ts_small_parse_table[] = { [215478] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 2, + ACTIONS(3279), 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, + ACTIONS(3281), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -353825,38 +341855,38 @@ static const uint16_t ts_small_parse_table[] = { [215541] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(5084), 1, + ACTIONS(5002), 1, anon_sym_in, - ACTIONS(5086), 1, + ACTIONS(5004), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5088), 1, + ACTIONS(5006), 1, anon_sym_SLASH_SLASH, - ACTIONS(5092), 1, + ACTIONS(5010), 1, anon_sym_STAR_STAR, - ACTIONS(5094), 1, + ACTIONS(5012), 1, sym__not_in, - ACTIONS(5068), 2, + ACTIONS(4986), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5070), 2, + ACTIONS(4988), 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, + ACTIONS(5008), 6, anon_sym_PLUS_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, + ACTIONS(3281), 33, anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, @@ -353893,17 +341923,17 @@ static const uint16_t ts_small_parse_table[] = { [215622] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(3118), 1, + ACTIONS(3227), 1, sym__not_in, - ACTIONS(4956), 1, + ACTIONS(4874), 1, anon_sym_DOT, - ACTIONS(4958), 1, + ACTIONS(4876), 1, anon_sym_LBRACK2, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3120), 47, + ACTIONS(3229), 47, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -353954,14 +341984,14 @@ static const uint16_t ts_small_parse_table[] = { [215689] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3106), 2, + ACTIONS(3321), 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, + ACTIONS(3323), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -354013,14 +342043,14 @@ static const uint16_t ts_small_parse_table[] = { [215752] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3118), 2, + ACTIONS(3227), 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, + ACTIONS(3229), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -354072,14 +342102,14 @@ static const uint16_t ts_small_parse_table[] = { [215815] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3403), 2, + ACTIONS(3055), 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, + ACTIONS(3057), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -354131,43 +342161,43 @@ static const uint16_t ts_small_parse_table[] = { [215878] = 15, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(5084), 1, + ACTIONS(5002), 1, anon_sym_in, - ACTIONS(5086), 1, + ACTIONS(5004), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5088), 1, + ACTIONS(5006), 1, anon_sym_SLASH_SLASH, - ACTIONS(5092), 1, + ACTIONS(5010), 1, anon_sym_STAR_STAR, - ACTIONS(5094), 1, + ACTIONS(5012), 1, sym__not_in, - ACTIONS(5068), 2, + ACTIONS(4986), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5070), 2, + ACTIONS(4988), 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, + ACTIONS(4984), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5090), 6, + ACTIONS(5008), 6, anon_sym_PLUS_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, + ACTIONS(5000), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -354177,7 +342207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3295), 20, + ACTIONS(3281), 20, anon_sym_LBRACE, anon_sym_PIPE, anon_sym_COMMA, @@ -354201,49 +342231,49 @@ static const uint16_t ts_small_parse_table[] = { [215963] = 16, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(5084), 1, + ACTIONS(5002), 1, anon_sym_in, - ACTIONS(5086), 1, + ACTIONS(5004), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5088), 1, + ACTIONS(5006), 1, anon_sym_SLASH_SLASH, - ACTIONS(5092), 1, + ACTIONS(5010), 1, anon_sym_STAR_STAR, - ACTIONS(5094), 1, + ACTIONS(5012), 1, sym__not_in, - ACTIONS(5068), 2, + ACTIONS(4986), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5070), 2, + ACTIONS(4988), 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, + ACTIONS(4984), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5080), 5, + ACTIONS(4998), 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, + ACTIONS(5008), 6, anon_sym_PLUS_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, + ACTIONS(5000), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -354253,7 +342283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3295), 15, + ACTIONS(3281), 15, anon_sym_LBRACE, anon_sym_PIPE, anon_sym_COMMA, @@ -354272,14 +342302,14 @@ static const uint16_t ts_small_parse_table[] = { [216050] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3118), 2, + ACTIONS(3227), 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, + ACTIONS(3229), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -354331,14 +342361,14 @@ static const uint16_t ts_small_parse_table[] = { [216113] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3000), 2, + ACTIONS(3002), 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, + ACTIONS(3004), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -354390,53 +342420,53 @@ static const uint16_t ts_small_parse_table[] = { [216176] = 17, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(5084), 1, + ACTIONS(5002), 1, anon_sym_in, - ACTIONS(5086), 1, + ACTIONS(5004), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5088), 1, + ACTIONS(5006), 1, anon_sym_SLASH_SLASH, - ACTIONS(5092), 1, + ACTIONS(5010), 1, anon_sym_STAR_STAR, - ACTIONS(5094), 1, + ACTIONS(5012), 1, sym__not_in, - ACTIONS(5068), 2, + ACTIONS(4986), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5070), 2, + ACTIONS(4988), 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, + ACTIONS(4996), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5066), 4, + ACTIONS(4984), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5080), 5, + ACTIONS(4998), 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, + ACTIONS(5008), 6, anon_sym_PLUS_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, + ACTIONS(5000), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -354446,7 +342476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3295), 12, + ACTIONS(3281), 12, anon_sym_LBRACE, anon_sym_PIPE, anon_sym_COMMA, @@ -354462,59 +342492,59 @@ static const uint16_t ts_small_parse_table[] = { [216265] = 19, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(5074), 1, + ACTIONS(4992), 1, anon_sym_EQ, - ACTIONS(5084), 1, + ACTIONS(5002), 1, anon_sym_in, - ACTIONS(5086), 1, + ACTIONS(5004), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5088), 1, + ACTIONS(5006), 1, anon_sym_SLASH_SLASH, - ACTIONS(5092), 1, + ACTIONS(5010), 1, anon_sym_STAR_STAR, - ACTIONS(5094), 1, + ACTIONS(5012), 1, sym__not_in, - ACTIONS(5068), 2, + ACTIONS(4986), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5070), 2, + ACTIONS(4988), 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, + ACTIONS(4994), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5078), 3, + ACTIONS(4996), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5066), 4, + ACTIONS(4984), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5080), 5, + ACTIONS(4998), 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, + ACTIONS(5008), 6, anon_sym_PLUS_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, + ACTIONS(3281), 8, anon_sym_LBRACE, anon_sym_PIPE, anon_sym_COMMA, @@ -354523,7 +342553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_when, anon_sym_COLON_COLON, anon_sym_EQ_GT, - ACTIONS(5082), 9, + ACTIONS(5000), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -354536,14 +342566,14 @@ static const uint16_t ts_small_parse_table[] = { [216358] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3064), 2, + ACTIONS(2940), 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, + ACTIONS(2942), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -354595,14 +342625,14 @@ static const uint16_t ts_small_parse_table[] = { [216421] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3118), 2, + ACTIONS(3227), 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, + ACTIONS(3229), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -354654,71 +342684,71 @@ static const uint16_t ts_small_parse_table[] = { [216484] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(5072), 1, + ACTIONS(4990), 1, anon_sym_EQ_GT, - ACTIONS(5074), 1, + ACTIONS(4992), 1, anon_sym_EQ, - ACTIONS(5084), 1, + ACTIONS(5002), 1, anon_sym_in, - ACTIONS(5086), 1, + ACTIONS(5004), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5088), 1, + ACTIONS(5006), 1, anon_sym_SLASH_SLASH, - ACTIONS(5092), 1, + ACTIONS(5010), 1, anon_sym_STAR_STAR, - ACTIONS(5094), 1, + ACTIONS(5012), 1, sym__not_in, - ACTIONS(5096), 1, + ACTIONS(5014), 1, anon_sym_PIPE, - ACTIONS(5098), 1, + ACTIONS(5016), 1, anon_sym_COLON_COLON, - ACTIONS(5068), 2, + ACTIONS(4986), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5070), 2, + ACTIONS(4988), 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, + ACTIONS(4994), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5078), 3, + ACTIONS(4996), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5066), 4, + ACTIONS(4984), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(3295), 5, + ACTIONS(3281), 5, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, anon_sym_when, - ACTIONS(5080), 5, + ACTIONS(4998), 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, + ACTIONS(5008), 6, anon_sym_PLUS_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, + ACTIONS(5000), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -354731,14 +342761,14 @@ static const uint16_t ts_small_parse_table[] = { [216583] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3006), 2, + 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(3008), 48, + ACTIONS(2998), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -354790,72 +342820,72 @@ static const uint16_t ts_small_parse_table[] = { [216646] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(5072), 1, + ACTIONS(4990), 1, anon_sym_EQ_GT, - ACTIONS(5074), 1, + ACTIONS(4992), 1, anon_sym_EQ, - ACTIONS(5084), 1, + ACTIONS(5002), 1, anon_sym_in, - ACTIONS(5086), 1, + ACTIONS(5004), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5088), 1, + ACTIONS(5006), 1, anon_sym_SLASH_SLASH, - ACTIONS(5092), 1, + ACTIONS(5010), 1, anon_sym_STAR_STAR, - ACTIONS(5094), 1, + ACTIONS(5012), 1, sym__not_in, - ACTIONS(5096), 1, + ACTIONS(5014), 1, anon_sym_PIPE, - ACTIONS(5098), 1, + ACTIONS(5016), 1, anon_sym_COLON_COLON, - ACTIONS(5100), 1, + ACTIONS(5018), 1, anon_sym_when, - ACTIONS(5068), 2, + ACTIONS(4986), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5070), 2, + ACTIONS(4988), 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, + ACTIONS(4994), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5078), 3, + ACTIONS(4996), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3295), 4, + ACTIONS(3281), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(5066), 4, + ACTIONS(4984), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5080), 5, + ACTIONS(4998), 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, + ACTIONS(5008), 6, anon_sym_PLUS_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, + ACTIONS(5000), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -354868,72 +342898,72 @@ static const uint16_t ts_small_parse_table[] = { [216747] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(5072), 1, + ACTIONS(4990), 1, anon_sym_EQ_GT, - ACTIONS(5074), 1, + ACTIONS(4992), 1, anon_sym_EQ, - ACTIONS(5084), 1, + ACTIONS(5002), 1, anon_sym_in, - ACTIONS(5086), 1, + ACTIONS(5004), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5088), 1, + ACTIONS(5006), 1, anon_sym_SLASH_SLASH, - ACTIONS(5092), 1, + ACTIONS(5010), 1, anon_sym_STAR_STAR, - ACTIONS(5094), 1, + ACTIONS(5012), 1, sym__not_in, - ACTIONS(5096), 1, + ACTIONS(5014), 1, anon_sym_PIPE, - ACTIONS(5098), 1, + ACTIONS(5016), 1, anon_sym_COLON_COLON, - ACTIONS(5100), 1, + ACTIONS(5018), 1, anon_sym_when, - ACTIONS(5068), 2, + ACTIONS(4986), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5070), 2, + ACTIONS(4988), 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, + ACTIONS(4994), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5078), 3, + ACTIONS(4996), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(3295), 4, + ACTIONS(3281), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(5066), 4, + ACTIONS(4984), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5080), 5, + ACTIONS(4998), 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, + ACTIONS(5008), 6, anon_sym_PLUS_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, + ACTIONS(5000), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -354946,22 +342976,22 @@ static const uint16_t ts_small_parse_table[] = { [216848] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, sym__not_in, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(5092), 1, + ACTIONS(5010), 1, anon_sym_STAR_STAR, - ACTIONS(5068), 2, + ACTIONS(4986), 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, + ACTIONS(3281), 44, anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, @@ -355009,19 +343039,19 @@ static const uint16_t ts_small_parse_table[] = { [216919] = 7, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, sym__not_in, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(5092), 1, + ACTIONS(5010), 1, anon_sym_STAR_STAR, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3295), 46, + ACTIONS(3281), 46, anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, @@ -355071,70 +343101,70 @@ static const uint16_t ts_small_parse_table[] = { [216988] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(5072), 1, + ACTIONS(4990), 1, anon_sym_EQ_GT, - ACTIONS(5074), 1, + ACTIONS(4992), 1, anon_sym_EQ, - ACTIONS(5084), 1, + ACTIONS(5002), 1, anon_sym_in, - ACTIONS(5086), 1, + ACTIONS(5004), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5088), 1, + ACTIONS(5006), 1, anon_sym_SLASH_SLASH, - ACTIONS(5092), 1, + ACTIONS(5010), 1, anon_sym_STAR_STAR, - ACTIONS(5094), 1, + ACTIONS(5012), 1, sym__not_in, - ACTIONS(5096), 1, + ACTIONS(5014), 1, anon_sym_PIPE, - ACTIONS(5068), 2, + ACTIONS(4986), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5070), 2, + ACTIONS(4988), 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, + ACTIONS(4994), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5078), 3, + ACTIONS(4996), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5066), 4, + ACTIONS(4984), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5080), 5, + ACTIONS(4998), 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, + ACTIONS(3281), 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, + ACTIONS(5008), 6, anon_sym_PLUS_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, + ACTIONS(5000), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -355147,14 +343177,14 @@ static const uint16_t ts_small_parse_table[] = { [217085] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3327), 2, + ACTIONS(3063), 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, + ACTIONS(3065), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -355206,70 +343236,70 @@ static const uint16_t ts_small_parse_table[] = { [217148] = 21, ACTIONS(5), 1, sym_comment, - ACTIONS(4920), 1, + ACTIONS(4838), 1, anon_sym_PIPE, - ACTIONS(4934), 1, + ACTIONS(4852), 1, anon_sym_EQ_GT, - ACTIONS(4936), 1, + ACTIONS(4854), 1, anon_sym_EQ, - ACTIONS(4946), 1, + ACTIONS(4864), 1, anon_sym_in, - ACTIONS(4948), 1, + ACTIONS(4866), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4950), 1, + ACTIONS(4868), 1, anon_sym_SLASH_SLASH, - ACTIONS(4954), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4956), 1, + ACTIONS(4874), 1, anon_sym_DOT, - ACTIONS(4958), 1, + ACTIONS(4876), 1, anon_sym_LBRACK2, - ACTIONS(4960), 1, + ACTIONS(4878), 1, sym__not_in, - ACTIONS(4922), 2, + ACTIONS(4840), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4926), 2, + ACTIONS(4844), 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, + ACTIONS(4856), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4940), 3, + ACTIONS(4858), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4918), 4, + ACTIONS(4836), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4942), 5, + ACTIONS(4860), 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, + ACTIONS(3281), 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, + ACTIONS(4870), 6, anon_sym_PLUS_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, + ACTIONS(4862), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -355282,38 +343312,38 @@ static const uint16_t ts_small_parse_table[] = { [217245] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(4946), 1, + ACTIONS(4864), 1, anon_sym_in, - ACTIONS(4948), 1, + ACTIONS(4866), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4950), 1, + ACTIONS(4868), 1, anon_sym_SLASH_SLASH, - ACTIONS(4954), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4956), 1, + ACTIONS(4874), 1, anon_sym_DOT, - ACTIONS(4958), 1, + ACTIONS(4876), 1, anon_sym_LBRACK2, - ACTIONS(4960), 1, + ACTIONS(4878), 1, sym__not_in, - ACTIONS(4922), 2, + ACTIONS(4840), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4926), 2, + ACTIONS(4844), 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, + ACTIONS(4870), 6, anon_sym_PLUS_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, + ACTIONS(4862), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -355323,7 +343353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3295), 24, + ACTIONS(3281), 24, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -355351,14 +343381,14 @@ static const uint16_t ts_small_parse_table[] = { [217328] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3327), 2, + ACTIONS(3063), 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, + ACTIONS(3065), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -355410,38 +343440,38 @@ static const uint16_t ts_small_parse_table[] = { [217391] = 14, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(5084), 1, + ACTIONS(5002), 1, anon_sym_in, - ACTIONS(5086), 1, + ACTIONS(5004), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5088), 1, + ACTIONS(5006), 1, anon_sym_SLASH_SLASH, - ACTIONS(5092), 1, + ACTIONS(5010), 1, anon_sym_STAR_STAR, - ACTIONS(5094), 1, + ACTIONS(5012), 1, sym__not_in, - ACTIONS(5068), 2, + ACTIONS(4986), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5070), 2, + ACTIONS(4988), 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, + ACTIONS(5008), 6, anon_sym_PLUS_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, + ACTIONS(5000), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -355451,7 +343481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_TILDE_GT, anon_sym_LT_TILDE_GT, anon_sym_LT_PIPE_GT, - ACTIONS(3295), 24, + ACTIONS(3281), 24, anon_sym_LBRACE, anon_sym_LT, anon_sym_GT, @@ -355479,74 +343509,74 @@ static const uint16_t ts_small_parse_table[] = { [217474] = 25, ACTIONS(5), 1, sym_comment, - ACTIONS(3731), 1, + ACTIONS(3700), 1, anon_sym_LBRACK2, - ACTIONS(4343), 1, + ACTIONS(4261), 1, aux_sym__terminator_token1, - ACTIONS(4611), 1, + ACTIONS(4529), 1, anon_sym_PIPE, - ACTIONS(4619), 1, + ACTIONS(4537), 1, anon_sym_when, - ACTIONS(4621), 1, + ACTIONS(4539), 1, anon_sym_COLON_COLON, - ACTIONS(4623), 1, + ACTIONS(4541), 1, anon_sym_EQ_GT, - ACTIONS(4625), 1, + ACTIONS(4543), 1, anon_sym_EQ, - ACTIONS(4635), 1, + ACTIONS(4553), 1, anon_sym_in, - ACTIONS(4637), 1, + ACTIONS(4555), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4639), 1, + ACTIONS(4557), 1, anon_sym_SLASH_SLASH, - ACTIONS(4643), 1, + ACTIONS(4561), 1, anon_sym_STAR_STAR, - ACTIONS(4645), 1, + ACTIONS(4563), 1, anon_sym_DOT, - ACTIONS(4647), 1, + ACTIONS(4565), 1, sym__not_in, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4345), 2, + ACTIONS(4263), 2, anon_sym_SEMI, anon_sym_end, - ACTIONS(4613), 2, + ACTIONS(4531), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4615), 2, + ACTIONS(4533), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4617), 2, + ACTIONS(4535), 2, anon_sym_LT_DASH, anon_sym_BSLASH_BSLASH, - ACTIONS(4627), 3, + ACTIONS(4545), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4629), 3, + ACTIONS(4547), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4609), 4, + ACTIONS(4527), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4631), 5, + ACTIONS(4549), 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, + ACTIONS(4559), 6, anon_sym_PLUS_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, + ACTIONS(4551), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -355559,36 +343589,36 @@ static const uint16_t ts_small_parse_table[] = { [217579] = 12, ACTIONS(5), 1, sym_comment, - ACTIONS(3293), 1, + ACTIONS(3279), 1, sym__not_in, - ACTIONS(4948), 1, + ACTIONS(4866), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4950), 1, + ACTIONS(4868), 1, anon_sym_SLASH_SLASH, - ACTIONS(4954), 1, + ACTIONS(4872), 1, anon_sym_STAR_STAR, - ACTIONS(4956), 1, + ACTIONS(4874), 1, anon_sym_DOT, - ACTIONS(4958), 1, + ACTIONS(4876), 1, anon_sym_LBRACK2, - ACTIONS(4922), 2, + ACTIONS(4840), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4926), 2, + ACTIONS(4844), 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, + ACTIONS(4870), 6, anon_sym_PLUS_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, + ACTIONS(3281), 34, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -355624,6 +343654,1965 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_PIPE_GT, anon_sym_in, [217658] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3275), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3277), 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(3067), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3069), 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(3067), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3069), 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(3279), 1, + sym__not_in, + ACTIONS(4645), 1, + anon_sym_DOT, + ACTIONS(4647), 1, + anon_sym_LBRACK2, + ACTIONS(5004), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(5006), 1, + anon_sym_SLASH_SLASH, + ACTIONS(5010), 1, + anon_sym_STAR_STAR, + ACTIONS(4986), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4988), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(5008), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(3281), 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(3271), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3273), 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(3383), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3385), 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(3387), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3389), 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(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, + [218178] = 25, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4263), 1, + anon_sym_SEMI, + ACTIONS(4378), 1, + anon_sym_PIPE, + ACTIONS(4386), 1, + anon_sym_when, + ACTIONS(4388), 1, + anon_sym_COLON_COLON, + ACTIONS(4390), 1, + anon_sym_EQ_GT, + ACTIONS(4392), 1, + anon_sym_EQ, + ACTIONS(4402), 1, + anon_sym_in, + ACTIONS(4404), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4406), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4410), 1, + anon_sym_STAR_STAR, + ACTIONS(4412), 1, + anon_sym_DOT, + ACTIONS(4414), 1, + anon_sym_LBRACK2, + ACTIONS(4416), 1, + sym__not_in, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(4261), 2, + ts_builtin_sym_end, + aux_sym__terminator_token1, + ACTIONS(4380), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4382), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4384), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4394), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4396), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4376), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4398), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4408), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4400), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_TILDE, + anon_sym_TILDE_GT_GT, + anon_sym_LT_TILDE, + anon_sym_TILDE_GT, + anon_sym_LT_TILDE_GT, + anon_sym_LT_PIPE_GT, + [218283] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3067), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3069), 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, + [218346] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(2890), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(2892), 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, + [218409] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3091), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3093), 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, + [218472] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3091), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3093), 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, + [218535] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3267), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3269), 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, + [218598] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3103), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3105), 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, + [218661] = 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), 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, + [218724] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3107), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3109), 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, + [218787] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3111), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3113), 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, + [218850] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3051), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3053), 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, + [218913] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3119), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3121), 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, + [218976] = 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), 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, + [219039] = 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, + [219102] = 24, + ACTIONS(5), 1, + sym_comment, + ACTIONS(4838), 1, + anon_sym_PIPE, + ACTIONS(4848), 1, + anon_sym_when, + ACTIONS(4850), 1, + anon_sym_COLON_COLON, + ACTIONS(4852), 1, + anon_sym_EQ_GT, + ACTIONS(4854), 1, + anon_sym_EQ, + ACTIONS(4864), 1, + anon_sym_in, + ACTIONS(4866), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4868), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4872), 1, + anon_sym_STAR_STAR, + ACTIONS(4874), 1, + anon_sym_DOT, + ACTIONS(4876), 1, + anon_sym_LBRACK2, + ACTIONS(4878), 1, + sym__not_in, + ACTIONS(3556), 2, + anon_sym_COMMA, + anon_sym_GT_GT, + ACTIONS(4840), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4844), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4846), 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(4856), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4858), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4836), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4860), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4870), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4862), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(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, + [219268] = 6, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3123), 1, + sym__not_in, + ACTIONS(4874), 1, + anon_sym_DOT, + ACTIONS(4876), 1, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3125), 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(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), 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(4880), 1, + anon_sym_DOT, + ACTIONS(4882), 1, + anon_sym_LBRACK2, + ACTIONS(4890), 1, + anon_sym_STAR_STAR, + ACTIONS(4892), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4894), 1, + anon_sym_in, + ACTIONS(4896), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4898), 1, + sym__not_in, + ACTIONS(4908), 1, + anon_sym_EQ, + ACTIONS(4912), 1, + anon_sym_EQ_GT, + ACTIONS(4914), 1, + anon_sym_PIPE, + ACTIONS(4916), 1, + anon_sym_COLON_COLON, + ACTIONS(4927), 1, + anon_sym_when, + ACTIONS(4884), 2, + anon_sym_SLASH, + anon_sym_STAR, + ACTIONS(4886), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4920), 2, + anon_sym_LT_DASH, + anon_sym_BSLASH_BSLASH, + ACTIONS(4930), 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(4906), 3, + anon_sym_AMP_AMP, + anon_sym_AMP_AMP_AMP, + anon_sym_and, + ACTIONS(4910), 3, + anon_sym_PIPE_PIPE, + anon_sym_PIPE_PIPE_PIPE, + anon_sym_or, + ACTIONS(4900), 4, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(4904), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_EQ_TILDE, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4888), 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PLUS_PLUS_PLUS, + anon_sym_DASH_DASH_DASH, + anon_sym_DOT_DOT, + anon_sym_LT_GT, + ACTIONS(4902), 9, + anon_sym_PIPE_GT, + anon_sym_LT_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT_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(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, + [219564] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(3419), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3421), 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(3115), 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), 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(3419), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3421), 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(3321), 2, + sym__not_in, + anon_sym_LBRACK2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + ACTIONS(3323), 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(3423), 2, @@ -355682,1976 +345671,17 @@ static const uint16_t ts_small_parse_table[] = { 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(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, - [218283] = 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, - [218346] = 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), 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, - [218409] = 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), 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, - [218472] = 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), 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, - [218535] = 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), 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, - [218598] = 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), 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, - [218661] = 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), 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, - [218724] = 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), 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, - [218787] = 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, - [218850] = 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), 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, - [218913] = 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), 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, - [218976] = 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), 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, - [219039] = 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, - [219102] = 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(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_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(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, - 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(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, - [219564] = 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, - [219627] = 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), 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, + ACTIONS(3419), 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, + ACTIONS(3421), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -357703,14 +345733,14 @@ static const uint16_t ts_small_parse_table[] = { [219942] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3195), 2, + ACTIONS(3430), 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, + ACTIONS(3432), 48, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -357762,73 +345792,73 @@ static const uint16_t ts_small_parse_table[] = { [220005] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(5072), 1, + ACTIONS(4990), 1, anon_sym_EQ_GT, - ACTIONS(5074), 1, + ACTIONS(4992), 1, anon_sym_EQ, - ACTIONS(5084), 1, + ACTIONS(5002), 1, anon_sym_in, - ACTIONS(5086), 1, + ACTIONS(5004), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5088), 1, + ACTIONS(5006), 1, anon_sym_SLASH_SLASH, - ACTIONS(5092), 1, + ACTIONS(5010), 1, anon_sym_STAR_STAR, - ACTIONS(5094), 1, + ACTIONS(5012), 1, sym__not_in, - ACTIONS(5096), 1, + ACTIONS(5014), 1, anon_sym_PIPE, - ACTIONS(5098), 1, + ACTIONS(5016), 1, anon_sym_COLON_COLON, - ACTIONS(5100), 1, + ACTIONS(5018), 1, anon_sym_when, - ACTIONS(3553), 2, + ACTIONS(3556), 2, anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5068), 2, + ACTIONS(4986), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5070), 2, + ACTIONS(4988), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5102), 2, + ACTIONS(5020), 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, + ACTIONS(4994), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5078), 3, + ACTIONS(4996), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5066), 4, + ACTIONS(4984), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5080), 5, + ACTIONS(4998), 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, + ACTIONS(5008), 6, anon_sym_PLUS_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, + ACTIONS(5000), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -357841,73 +345871,73 @@ static const uint16_t ts_small_parse_table[] = { [220108] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(5072), 1, + ACTIONS(4990), 1, anon_sym_EQ_GT, - ACTIONS(5074), 1, + ACTIONS(4992), 1, anon_sym_EQ, - ACTIONS(5084), 1, + ACTIONS(5002), 1, anon_sym_in, - ACTIONS(5086), 1, + ACTIONS(5004), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(5088), 1, + ACTIONS(5006), 1, anon_sym_SLASH_SLASH, - ACTIONS(5092), 1, + ACTIONS(5010), 1, anon_sym_STAR_STAR, - ACTIONS(5094), 1, + ACTIONS(5012), 1, sym__not_in, - ACTIONS(5096), 1, + ACTIONS(5014), 1, anon_sym_PIPE, - ACTIONS(5098), 1, + ACTIONS(5016), 1, anon_sym_COLON_COLON, - ACTIONS(5100), 1, + ACTIONS(5018), 1, anon_sym_when, - ACTIONS(3546), 2, + ACTIONS(3552), 2, anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5068), 2, + ACTIONS(4986), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(5070), 2, + ACTIONS(4988), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5102), 2, + ACTIONS(5020), 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, + ACTIONS(4994), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(5078), 3, + ACTIONS(4996), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(5066), 4, + ACTIONS(4984), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(5080), 5, + ACTIONS(4998), 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, + ACTIONS(5008), 6, anon_sym_PLUS_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, + ACTIONS(5000), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -357920,72 +345950,72 @@ static const uint16_t ts_small_parse_table[] = { [220211] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5104), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5022), 1, anon_sym_RBRACE, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -357998,72 +346028,72 @@ static const uint16_t ts_small_parse_table[] = { [220313] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5106), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5024), 1, anon_sym_RBRACK, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -358076,72 +346106,72 @@ static const uint16_t ts_small_parse_table[] = { [220415] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5108), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5026), 1, anon_sym_RBRACK, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -358154,72 +346184,72 @@ static const uint16_t ts_small_parse_table[] = { [220517] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5110), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5028), 1, anon_sym_RBRACK, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -358232,72 +346262,72 @@ static const uint16_t ts_small_parse_table[] = { [220619] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5112), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5030), 1, anon_sym_RBRACE, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -358310,72 +346340,72 @@ static const uint16_t ts_small_parse_table[] = { [220721] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5114), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5032), 1, anon_sym_RBRACK, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -358388,72 +346418,72 @@ static const uint16_t ts_small_parse_table[] = { [220823] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5116), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5034), 1, anon_sym_RBRACK, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -358466,72 +346496,72 @@ static const uint16_t ts_small_parse_table[] = { [220925] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4962), 1, + ACTIONS(4880), 1, anon_sym_DOT, - ACTIONS(4964), 1, + ACTIONS(4882), 1, anon_sym_LBRACK2, - ACTIONS(4972), 1, + ACTIONS(4890), 1, anon_sym_STAR_STAR, - ACTIONS(4974), 1, + ACTIONS(4892), 1, anon_sym_SLASH_SLASH, - ACTIONS(4976), 1, + ACTIONS(4894), 1, anon_sym_in, - ACTIONS(4978), 1, + ACTIONS(4896), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4980), 1, + ACTIONS(4898), 1, sym__not_in, - ACTIONS(4990), 1, + ACTIONS(4908), 1, anon_sym_EQ, - ACTIONS(4994), 1, + ACTIONS(4912), 1, anon_sym_EQ_GT, - ACTIONS(4996), 1, + ACTIONS(4914), 1, anon_sym_PIPE, - ACTIONS(4998), 1, + ACTIONS(4916), 1, anon_sym_COLON_COLON, - ACTIONS(5000), 1, + ACTIONS(4918), 1, anon_sym_when, - ACTIONS(5118), 1, + ACTIONS(5036), 1, anon_sym_DASH_GT, - ACTIONS(4966), 2, + ACTIONS(4884), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4968), 2, + ACTIONS(4886), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 2, + ACTIONS(4920), 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, + ACTIONS(4906), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4992), 3, + ACTIONS(4910), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4982), 4, + ACTIONS(4900), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4986), 5, + ACTIONS(4904), 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, + ACTIONS(4888), 6, anon_sym_PLUS_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, + ACTIONS(4902), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -358544,72 +346574,72 @@ static const uint16_t ts_small_parse_table[] = { [221027] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5120), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5038), 1, anon_sym_RBRACK, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -358622,72 +346652,72 @@ static const uint16_t ts_small_parse_table[] = { [221129] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5122), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5040), 1, anon_sym_RBRACE, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -358700,72 +346730,72 @@ static const uint16_t ts_small_parse_table[] = { [221231] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5124), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5042), 1, anon_sym_RBRACE, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -358778,72 +346808,72 @@ static const uint16_t ts_small_parse_table[] = { [221333] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4962), 1, + ACTIONS(4880), 1, anon_sym_DOT, - ACTIONS(4964), 1, + ACTIONS(4882), 1, anon_sym_LBRACK2, - ACTIONS(4972), 1, + ACTIONS(4890), 1, anon_sym_STAR_STAR, - ACTIONS(4974), 1, + ACTIONS(4892), 1, anon_sym_SLASH_SLASH, - ACTIONS(4976), 1, + ACTIONS(4894), 1, anon_sym_in, - ACTIONS(4978), 1, + ACTIONS(4896), 1, anon_sym_CARET_CARET_CARET, - ACTIONS(4980), 1, + ACTIONS(4898), 1, sym__not_in, - ACTIONS(4990), 1, + ACTIONS(4908), 1, anon_sym_EQ, - ACTIONS(4994), 1, + ACTIONS(4912), 1, anon_sym_EQ_GT, - ACTIONS(4996), 1, + ACTIONS(4914), 1, anon_sym_PIPE, - ACTIONS(4998), 1, + ACTIONS(4916), 1, anon_sym_COLON_COLON, - ACTIONS(5000), 1, + ACTIONS(4918), 1, anon_sym_when, - ACTIONS(5126), 1, + ACTIONS(5044), 1, anon_sym_DASH_GT, - ACTIONS(4966), 2, + ACTIONS(4884), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4968), 2, + ACTIONS(4886), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5002), 2, + ACTIONS(4920), 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, + ACTIONS(4906), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4992), 3, + ACTIONS(4910), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4982), 4, + ACTIONS(4900), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4986), 5, + ACTIONS(4904), 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, + ACTIONS(4888), 6, anon_sym_PLUS_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, + ACTIONS(4902), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -358856,72 +346886,72 @@ static const uint16_t ts_small_parse_table[] = { [221435] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5128), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5046), 1, anon_sym_RBRACE, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -358934,72 +346964,72 @@ static const uint16_t ts_small_parse_table[] = { [221537] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5130), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5048), 1, anon_sym_RBRACK, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359012,72 +347042,72 @@ static const uint16_t ts_small_parse_table[] = { [221639] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5132), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5050), 1, anon_sym_RBRACE, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359090,72 +347120,72 @@ static const uint16_t ts_small_parse_table[] = { [221741] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5134), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5052), 1, anon_sym_RBRACK, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359168,72 +347198,72 @@ static const uint16_t ts_small_parse_table[] = { [221843] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5136), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5054), 1, anon_sym_RBRACE, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359246,72 +347276,72 @@ static const uint16_t ts_small_parse_table[] = { [221945] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5138), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5056), 1, anon_sym_RBRACE, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359324,16 +347354,16 @@ static const uint16_t ts_small_parse_table[] = { [222047] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5140), 1, + ACTIONS(5058), 1, anon_sym_LBRACE, - ACTIONS(3327), 2, + ACTIONS(3063), 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, + ACTIONS(3065), 46, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -359383,72 +347413,72 @@ static const uint16_t ts_small_parse_table[] = { [222111] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5142), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5060), 1, anon_sym_RBRACE, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359461,72 +347491,72 @@ static const uint16_t ts_small_parse_table[] = { [222213] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5144), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5062), 1, anon_sym_RBRACK, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359539,72 +347569,72 @@ static const uint16_t ts_small_parse_table[] = { [222315] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5146), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5064), 1, anon_sym_RBRACK, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359617,16 +347647,16 @@ static const uint16_t ts_small_parse_table[] = { [222417] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(874), 1, + ACTIONS(832), 1, anon_sym_LBRACE, - ACTIONS(245), 2, + ACTIONS(181), 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, + ACTIONS(183), 46, anon_sym_LT, anon_sym_GT, anon_sym_PIPE, @@ -359676,72 +347706,72 @@ static const uint16_t ts_small_parse_table[] = { [222481] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5148), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5066), 1, anon_sym_RBRACK, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359754,72 +347784,72 @@ static const uint16_t ts_small_parse_table[] = { [222583] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5150), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5068), 1, anon_sym_RBRACE, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359832,72 +347862,72 @@ static const uint16_t ts_small_parse_table[] = { [222685] = 24, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(5152), 1, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(5070), 1, anon_sym_RBRACK, - ACTIONS(4773), 2, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359910,70 +347940,70 @@ static const uint16_t ts_small_parse_table[] = { [222787] = 23, ACTIONS(5), 1, sym_comment, - ACTIONS(4727), 1, + ACTIONS(4645), 1, anon_sym_DOT, - ACTIONS(4729), 1, + ACTIONS(4647), 1, anon_sym_LBRACK2, - ACTIONS(4771), 1, + ACTIONS(4691), 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, + ACTIONS(4697), 1, anon_sym_when, - ACTIONS(4773), 2, + ACTIONS(4699), 1, + anon_sym_COLON_COLON, + ACTIONS(4701), 1, + anon_sym_EQ_GT, + ACTIONS(4703), 1, + anon_sym_EQ, + ACTIONS(4713), 1, + anon_sym_in, + ACTIONS(4715), 1, + anon_sym_CARET_CARET_CARET, + ACTIONS(4717), 1, + anon_sym_SLASH_SLASH, + ACTIONS(4721), 1, + anon_sym_STAR_STAR, + ACTIONS(4723), 1, + sym__not_in, + ACTIONS(4693), 2, anon_sym_SLASH, anon_sym_STAR, - ACTIONS(4775), 2, + ACTIONS(4695), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4803), 2, + ACTIONS(4725), 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, + ACTIONS(4705), 3, anon_sym_PIPE_PIPE, anon_sym_PIPE_PIPE_PIPE, anon_sym_or, - ACTIONS(4785), 3, + ACTIONS(4707), 3, anon_sym_AMP_AMP, anon_sym_AMP_AMP_AMP, anon_sym_and, - ACTIONS(4769), 4, + ACTIONS(4689), 4, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(4787), 5, + ACTIONS(4709), 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, + ACTIONS(4719), 6, anon_sym_PLUS_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, + ACTIONS(4711), 9, anon_sym_PIPE_GT, anon_sym_LT_LT_LT, anon_sym_GT_GT_GT, @@ -359986,46 +348016,46 @@ static const uint16_t ts_small_parse_table[] = { [222886] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5154), 1, + ACTIONS(5072), 1, anon_sym_LPAREN, - ACTIONS(5156), 1, + ACTIONS(5074), 1, anon_sym_DQUOTE, - ACTIONS(5158), 1, + ACTIONS(5076), 1, anon_sym_SQUOTE, - ACTIONS(5160), 1, + ACTIONS(5078), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5162), 1, + ACTIONS(5080), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5164), 1, + ACTIONS(5082), 1, anon_sym_LBRACE, - ACTIONS(5166), 1, + ACTIONS(5084), 1, anon_sym_LBRACK, - ACTIONS(5168), 1, + ACTIONS(5086), 1, anon_sym_LT, - ACTIONS(5170), 1, + ACTIONS(5088), 1, anon_sym_PIPE, - ACTIONS(5172), 1, + ACTIONS(5090), 1, 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, + STATE(1229), 1, sym__quoted_i_slash, - STATE(1317), 1, + STATE(1230), 1, + sym__quoted_i_bar, + STATE(1241), 1, + sym__quoted_i_angle, + STATE(1248), 1, + sym__quoted_i_square, + STATE(1249), 1, + sym__quoted_i_curly, + STATE(1250), 1, sym__quoted_i_parenthesis, + STATE(1254), 1, + sym__quoted_i_heredoc_double, + STATE(1255), 1, + sym__quoted_i_heredoc_single, + STATE(1279), 1, + sym__quoted_i_single, + STATE(1293), 1, + sym__quoted_i_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -360033,45 +348063,45 @@ static const uint16_t ts_small_parse_table[] = { [222955] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5174), 1, + ACTIONS(5092), 1, anon_sym_LPAREN, - ACTIONS(5176), 1, + ACTIONS(5094), 1, anon_sym_DQUOTE, - ACTIONS(5178), 1, + ACTIONS(5096), 1, anon_sym_SQUOTE, - ACTIONS(5180), 1, + ACTIONS(5098), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5182), 1, + ACTIONS(5100), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5184), 1, + ACTIONS(5102), 1, anon_sym_LBRACE, - ACTIONS(5186), 1, + ACTIONS(5104), 1, anon_sym_LBRACK, - ACTIONS(5188), 1, + ACTIONS(5106), 1, anon_sym_LT, - ACTIONS(5190), 1, + ACTIONS(5108), 1, anon_sym_PIPE, - ACTIONS(5192), 1, + ACTIONS(5110), 1, anon_sym_SLASH, - STATE(1827), 1, + STATE(1813), 1, sym__quoted_i_double, - STATE(1828), 1, + STATE(1816), 1, sym__quoted_i_single, - STATE(1829), 1, + STATE(1819), 1, sym__quoted_i_heredoc_single, - STATE(1830), 1, + STATE(1820), 1, sym__quoted_i_heredoc_double, - STATE(1835), 1, + STATE(1844), 1, sym__quoted_i_parenthesis, - STATE(1859), 1, + STATE(1846), 1, sym__quoted_i_curly, - STATE(1861), 1, + STATE(1851), 1, sym__quoted_i_square, - STATE(1862), 1, + STATE(1852), 1, sym__quoted_i_angle, - STATE(1866), 1, + STATE(1854), 1, sym__quoted_i_bar, - STATE(1867), 1, + STATE(1855), 1, sym__quoted_i_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -360080,45 +348110,45 @@ static const uint16_t ts_small_parse_table[] = { [223024] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5194), 1, + ACTIONS(5112), 1, anon_sym_LPAREN, - ACTIONS(5196), 1, + ACTIONS(5114), 1, anon_sym_DQUOTE, - ACTIONS(5198), 1, + ACTIONS(5116), 1, anon_sym_SQUOTE, - ACTIONS(5200), 1, + ACTIONS(5118), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5202), 1, + ACTIONS(5120), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5204), 1, + ACTIONS(5122), 1, anon_sym_LBRACE, - ACTIONS(5206), 1, + ACTIONS(5124), 1, anon_sym_LBRACK, - ACTIONS(5208), 1, + ACTIONS(5126), 1, anon_sym_LT, - ACTIONS(5210), 1, + ACTIONS(5128), 1, anon_sym_PIPE, - ACTIONS(5212), 1, + ACTIONS(5130), 1, anon_sym_SLASH, - STATE(3581), 1, + STATE(3569), 1, sym__quoted_slash, - STATE(3582), 1, + STATE(3570), 1, sym__quoted_bar, - STATE(3583), 1, + STATE(3571), 1, sym__quoted_angle, - STATE(3588), 1, + STATE(3576), 1, sym__quoted_square, - STATE(3589), 1, + STATE(3577), 1, sym__quoted_curly, - STATE(3590), 1, + STATE(3578), 1, sym__quoted_parenthesis, - STATE(3591), 1, + STATE(3579), 1, sym__quoted_heredoc_double, - STATE(3592), 1, + STATE(3580), 1, sym__quoted_heredoc_single, - STATE(3593), 1, + STATE(3581), 1, sym__quoted_single, - STATE(3594), 1, + STATE(3582), 1, sym__quoted_double, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -360127,45 +348157,45 @@ static const uint16_t ts_small_parse_table[] = { [223093] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5214), 1, + ACTIONS(5132), 1, anon_sym_LPAREN, - ACTIONS(5216), 1, + ACTIONS(5134), 1, anon_sym_DQUOTE, - ACTIONS(5218), 1, + ACTIONS(5136), 1, anon_sym_SQUOTE, - ACTIONS(5220), 1, + ACTIONS(5138), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5222), 1, + ACTIONS(5140), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5224), 1, + ACTIONS(5142), 1, anon_sym_LBRACE, - ACTIONS(5226), 1, + ACTIONS(5144), 1, anon_sym_LBRACK, - ACTIONS(5228), 1, + ACTIONS(5146), 1, anon_sym_LT, - ACTIONS(5230), 1, + ACTIONS(5148), 1, anon_sym_PIPE, - ACTIONS(5232), 1, + ACTIONS(5150), 1, anon_sym_SLASH, - STATE(2768), 1, + STATE(2747), 1, sym__quoted_i_double, - STATE(2769), 1, + STATE(2752), 1, sym__quoted_i_single, - STATE(2780), 1, + STATE(2753), 1, sym__quoted_i_heredoc_single, - STATE(2781), 1, + STATE(2754), 1, sym__quoted_i_heredoc_double, - STATE(2782), 1, + STATE(2755), 1, sym__quoted_i_parenthesis, - STATE(2783), 1, + STATE(2756), 1, sym__quoted_i_curly, - STATE(2784), 1, + STATE(2757), 1, sym__quoted_i_square, - STATE(2785), 1, + STATE(2758), 1, sym__quoted_i_angle, - STATE(2786), 1, + STATE(2769), 1, sym__quoted_i_bar, - STATE(2787), 1, + STATE(2770), 1, sym__quoted_i_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -360174,45 +348204,45 @@ static const uint16_t ts_small_parse_table[] = { [223162] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5234), 1, + ACTIONS(5152), 1, anon_sym_LPAREN, - ACTIONS(5236), 1, + ACTIONS(5154), 1, anon_sym_DQUOTE, - ACTIONS(5238), 1, + ACTIONS(5156), 1, anon_sym_SQUOTE, - ACTIONS(5240), 1, + ACTIONS(5158), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5242), 1, + ACTIONS(5160), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5244), 1, + ACTIONS(5162), 1, anon_sym_LBRACE, - ACTIONS(5246), 1, + ACTIONS(5164), 1, anon_sym_LBRACK, - ACTIONS(5248), 1, + ACTIONS(5166), 1, anon_sym_LT, - ACTIONS(5250), 1, + ACTIONS(5168), 1, anon_sym_PIPE, - ACTIONS(5252), 1, + ACTIONS(5170), 1, anon_sym_SLASH, - STATE(2373), 1, + STATE(2367), 1, sym__quoted_double, - STATE(2374), 1, + STATE(2368), 1, sym__quoted_single, - STATE(2376), 1, + STATE(2369), 1, sym__quoted_heredoc_single, - STATE(2378), 1, + STATE(2370), 1, sym__quoted_heredoc_double, - STATE(2380), 1, + STATE(2371), 1, sym__quoted_parenthesis, - STATE(2381), 1, + STATE(2372), 1, sym__quoted_curly, - STATE(2382), 1, + STATE(2373), 1, sym__quoted_square, - STATE(2383), 1, + STATE(2374), 1, sym__quoted_angle, - STATE(2384), 1, + STATE(2378), 1, sym__quoted_bar, - STATE(2385), 1, + STATE(2379), 1, sym__quoted_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -360221,45 +348251,45 @@ static const uint16_t ts_small_parse_table[] = { [223231] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5254), 1, + ACTIONS(5172), 1, anon_sym_LPAREN, - ACTIONS(5256), 1, + ACTIONS(5174), 1, anon_sym_DQUOTE, - ACTIONS(5258), 1, + ACTIONS(5176), 1, anon_sym_SQUOTE, - ACTIONS(5260), 1, + ACTIONS(5178), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5262), 1, + ACTIONS(5180), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5264), 1, + ACTIONS(5182), 1, anon_sym_LBRACE, - ACTIONS(5266), 1, + ACTIONS(5184), 1, anon_sym_LBRACK, - ACTIONS(5268), 1, + ACTIONS(5186), 1, anon_sym_LT, - ACTIONS(5270), 1, + ACTIONS(5188), 1, anon_sym_PIPE, - ACTIONS(5272), 1, + ACTIONS(5190), 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, + STATE(2276), 1, sym__quoted_i_curly, - STATE(2369), 1, + STATE(2354), 1, + sym__quoted_i_double, + STATE(2355), 1, + sym__quoted_i_single, + STATE(2356), 1, + sym__quoted_i_heredoc_single, + STATE(2357), 1, + sym__quoted_i_heredoc_double, + STATE(2358), 1, + sym__quoted_i_parenthesis, + STATE(2360), 1, sym__quoted_i_square, - STATE(2370), 1, + STATE(2361), 1, sym__quoted_i_angle, - STATE(2372), 1, + STATE(2362), 1, + sym__quoted_i_bar, + STATE(2364), 1, sym__quoted_i_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -360268,45 +348298,45 @@ static const uint16_t ts_small_parse_table[] = { [223300] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5274), 1, + ACTIONS(5192), 1, anon_sym_LPAREN, - ACTIONS(5276), 1, + ACTIONS(5194), 1, anon_sym_DQUOTE, - ACTIONS(5278), 1, + ACTIONS(5196), 1, anon_sym_SQUOTE, - ACTIONS(5280), 1, + ACTIONS(5198), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5282), 1, + ACTIONS(5200), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5284), 1, + ACTIONS(5202), 1, anon_sym_LBRACE, - ACTIONS(5286), 1, + ACTIONS(5204), 1, anon_sym_LBRACK, - ACTIONS(5288), 1, + ACTIONS(5206), 1, anon_sym_LT, - ACTIONS(5290), 1, + ACTIONS(5208), 1, anon_sym_PIPE, - ACTIONS(5292), 1, + ACTIONS(5210), 1, anon_sym_SLASH, - STATE(1846), 1, + STATE(1834), 1, sym__quoted_i_slash, - STATE(1847), 1, + STATE(1835), 1, sym__quoted_i_bar, - STATE(1848), 1, + STATE(1836), 1, sym__quoted_i_angle, - STATE(1849), 1, + STATE(1837), 1, sym__quoted_i_square, - STATE(1850), 1, + STATE(1838), 1, sym__quoted_i_curly, - STATE(1851), 1, + STATE(1839), 1, sym__quoted_i_parenthesis, - STATE(1852), 1, + STATE(1840), 1, sym__quoted_i_heredoc_double, - STATE(1853), 1, + STATE(1841), 1, sym__quoted_i_heredoc_single, - STATE(1857), 1, + STATE(1842), 1, sym__quoted_i_single, - STATE(1858), 1, + STATE(1843), 1, sym__quoted_i_double, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -360315,45 +348345,45 @@ static const uint16_t ts_small_parse_table[] = { [223369] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5294), 1, + ACTIONS(5212), 1, anon_sym_LPAREN, - ACTIONS(5296), 1, + ACTIONS(5214), 1, anon_sym_DQUOTE, - ACTIONS(5298), 1, + ACTIONS(5216), 1, anon_sym_SQUOTE, - ACTIONS(5300), 1, + ACTIONS(5218), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5302), 1, + ACTIONS(5220), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5304), 1, + ACTIONS(5222), 1, anon_sym_LBRACE, - ACTIONS(5306), 1, + ACTIONS(5224), 1, anon_sym_LBRACK, - ACTIONS(5308), 1, + ACTIONS(5226), 1, anon_sym_LT, - ACTIONS(5310), 1, + ACTIONS(5228), 1, anon_sym_PIPE, - ACTIONS(5312), 1, + ACTIONS(5230), 1, anon_sym_SLASH, - STATE(2421), 1, + STATE(2409), 1, sym__quoted_i_slash, - STATE(2422), 1, + STATE(2411), 1, sym__quoted_i_bar, - STATE(2426), 1, + STATE(2412), 1, sym__quoted_i_angle, - STATE(2427), 1, + STATE(2414), 1, sym__quoted_i_square, - STATE(2428), 1, + STATE(2416), 1, sym__quoted_i_curly, - STATE(2429), 1, + STATE(2417), 1, sym__quoted_i_parenthesis, - STATE(2430), 1, + STATE(2418), 1, sym__quoted_i_heredoc_double, - STATE(2431), 1, + STATE(2420), 1, sym__quoted_i_heredoc_single, - STATE(2432), 1, + STATE(2421), 1, sym__quoted_i_single, - STATE(2433), 1, + STATE(2422), 1, sym__quoted_i_double, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -360362,45 +348392,45 @@ static const uint16_t ts_small_parse_table[] = { [223438] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5314), 1, + ACTIONS(5232), 1, anon_sym_LPAREN, - ACTIONS(5316), 1, + ACTIONS(5234), 1, anon_sym_DQUOTE, - ACTIONS(5318), 1, + ACTIONS(5236), 1, anon_sym_SQUOTE, - ACTIONS(5320), 1, + ACTIONS(5238), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5322), 1, + ACTIONS(5240), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5324), 1, + ACTIONS(5242), 1, anon_sym_LBRACE, - ACTIONS(5326), 1, + ACTIONS(5244), 1, anon_sym_LBRACK, - ACTIONS(5328), 1, + ACTIONS(5246), 1, anon_sym_LT, - ACTIONS(5330), 1, + ACTIONS(5248), 1, anon_sym_PIPE, - ACTIONS(5332), 1, + ACTIONS(5250), 1, anon_sym_SLASH, - STATE(1836), 1, + STATE(1821), 1, sym__quoted_slash, - STATE(1837), 1, + STATE(1822), 1, sym__quoted_bar, - STATE(1838), 1, + STATE(1824), 1, sym__quoted_angle, - STATE(1839), 1, + STATE(1827), 1, sym__quoted_square, - STATE(1840), 1, + STATE(1828), 1, sym__quoted_curly, - STATE(1841), 1, + STATE(1829), 1, sym__quoted_parenthesis, - STATE(1842), 1, + STATE(1830), 1, sym__quoted_heredoc_double, - STATE(1843), 1, + STATE(1831), 1, sym__quoted_heredoc_single, - STATE(1844), 1, + STATE(1832), 1, sym__quoted_single, - STATE(1845), 1, + STATE(1833), 1, sym__quoted_double, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -360409,45 +348439,45 @@ static const uint16_t ts_small_parse_table[] = { [223507] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5334), 1, + ACTIONS(5252), 1, anon_sym_LPAREN, - ACTIONS(5336), 1, + ACTIONS(5254), 1, anon_sym_DQUOTE, - ACTIONS(5338), 1, + ACTIONS(5256), 1, anon_sym_SQUOTE, - ACTIONS(5340), 1, + ACTIONS(5258), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5342), 1, + ACTIONS(5260), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5344), 1, + ACTIONS(5262), 1, anon_sym_LBRACE, - ACTIONS(5346), 1, + ACTIONS(5264), 1, anon_sym_LBRACK, - ACTIONS(5348), 1, + ACTIONS(5266), 1, anon_sym_LT, - ACTIONS(5350), 1, + ACTIONS(5268), 1, anon_sym_PIPE, - ACTIONS(5352), 1, + ACTIONS(5270), 1, anon_sym_SLASH, - STATE(2486), 1, + STATE(2474), 1, sym__quoted_slash, - STATE(2487), 1, + STATE(2475), 1, sym__quoted_bar, - STATE(2488), 1, + STATE(2476), 1, sym__quoted_angle, - STATE(2489), 1, + STATE(2477), 1, sym__quoted_square, - STATE(2490), 1, + STATE(2478), 1, sym__quoted_curly, - STATE(2491), 1, + STATE(2479), 1, sym__quoted_parenthesis, - STATE(2492), 1, + STATE(2480), 1, sym__quoted_heredoc_double, - STATE(2493), 1, + STATE(2481), 1, sym__quoted_heredoc_single, - STATE(2494), 1, + STATE(2482), 1, sym__quoted_single, - STATE(2495), 1, + STATE(2483), 1, sym__quoted_double, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -360456,45 +348486,45 @@ static const uint16_t ts_small_parse_table[] = { [223576] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5354), 1, + ACTIONS(5272), 1, anon_sym_LPAREN, - ACTIONS(5356), 1, + ACTIONS(5274), 1, anon_sym_DQUOTE, - ACTIONS(5358), 1, + ACTIONS(5276), 1, anon_sym_SQUOTE, - ACTIONS(5360), 1, + ACTIONS(5278), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5362), 1, + ACTIONS(5280), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5364), 1, + ACTIONS(5282), 1, anon_sym_LBRACE, - ACTIONS(5366), 1, + ACTIONS(5284), 1, anon_sym_LBRACK, - ACTIONS(5368), 1, + ACTIONS(5286), 1, anon_sym_LT, - ACTIONS(5370), 1, + ACTIONS(5288), 1, anon_sym_PIPE, - ACTIONS(5372), 1, + ACTIONS(5290), 1, anon_sym_SLASH, - STATE(2514), 1, + STATE(2503), 1, sym__quoted_i_double, - STATE(2515), 1, + STATE(2504), 1, sym__quoted_i_single, - STATE(2516), 1, + STATE(2505), 1, sym__quoted_i_heredoc_single, - STATE(2517), 1, + STATE(2506), 1, sym__quoted_i_heredoc_double, - STATE(2518), 1, + STATE(2507), 1, sym__quoted_i_parenthesis, - STATE(2519), 1, + STATE(2508), 1, sym__quoted_i_curly, - STATE(2520), 1, + STATE(2509), 1, sym__quoted_i_square, - STATE(2521), 1, + STATE(2510), 1, sym__quoted_i_angle, - STATE(2522), 1, + STATE(2511), 1, sym__quoted_i_bar, - STATE(2523), 1, + STATE(2512), 1, sym__quoted_i_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -360503,45 +348533,45 @@ static const uint16_t ts_small_parse_table[] = { [223645] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5374), 1, + ACTIONS(5292), 1, anon_sym_LPAREN, - ACTIONS(5376), 1, + ACTIONS(5294), 1, anon_sym_DQUOTE, - ACTIONS(5378), 1, + ACTIONS(5296), 1, anon_sym_SQUOTE, - ACTIONS(5380), 1, + ACTIONS(5298), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5382), 1, + ACTIONS(5300), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5384), 1, + ACTIONS(5302), 1, anon_sym_LBRACE, - ACTIONS(5386), 1, + ACTIONS(5304), 1, anon_sym_LBRACK, - ACTIONS(5388), 1, + ACTIONS(5306), 1, anon_sym_LT, - ACTIONS(5390), 1, + ACTIONS(5308), 1, anon_sym_PIPE, - ACTIONS(5392), 1, + ACTIONS(5310), 1, anon_sym_SLASH, - STATE(2524), 1, + STATE(2513), 1, sym__quoted_double, - STATE(2525), 1, + STATE(2514), 1, sym__quoted_single, - STATE(2526), 1, + STATE(2515), 1, sym__quoted_heredoc_single, - STATE(2527), 1, + STATE(2516), 1, sym__quoted_heredoc_double, - STATE(2528), 1, + STATE(2517), 1, sym__quoted_parenthesis, - STATE(2529), 1, + STATE(2518), 1, sym__quoted_curly, - STATE(2530), 1, + STATE(2519), 1, sym__quoted_square, - STATE(2531), 1, + STATE(2520), 1, sym__quoted_angle, - STATE(2534), 1, + STATE(2523), 1, sym__quoted_bar, - STATE(2535), 1, + STATE(2524), 1, sym__quoted_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -360550,45 +348580,45 @@ static const uint16_t ts_small_parse_table[] = { [223714] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5394), 1, + ACTIONS(5312), 1, anon_sym_LPAREN, - ACTIONS(5396), 1, + ACTIONS(5314), 1, anon_sym_DQUOTE, - ACTIONS(5398), 1, + ACTIONS(5316), 1, anon_sym_SQUOTE, - ACTIONS(5400), 1, + ACTIONS(5318), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5402), 1, + ACTIONS(5320), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5404), 1, + ACTIONS(5322), 1, anon_sym_LBRACE, - ACTIONS(5406), 1, + ACTIONS(5324), 1, anon_sym_LBRACK, - ACTIONS(5408), 1, + ACTIONS(5326), 1, anon_sym_LT, - ACTIONS(5410), 1, + ACTIONS(5328), 1, anon_sym_PIPE, - ACTIONS(5412), 1, + ACTIONS(5330), 1, anon_sym_SLASH, - STATE(2788), 1, + STATE(2771), 1, sym__quoted_double, - STATE(2789), 1, + STATE(2772), 1, sym__quoted_single, - STATE(2811), 1, + STATE(2773), 1, sym__quoted_heredoc_single, - STATE(2815), 1, + STATE(2774), 1, sym__quoted_heredoc_double, - STATE(2816), 1, + STATE(2775), 1, sym__quoted_parenthesis, - STATE(2817), 1, + STATE(2776), 1, sym__quoted_curly, - STATE(2818), 1, + STATE(2777), 1, sym__quoted_square, - STATE(2819), 1, + STATE(2778), 1, sym__quoted_angle, - STATE(2884), 1, + STATE(2868), 1, sym__quoted_slash, - STATE(2885), 1, + STATE(2869), 1, sym__quoted_bar, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -360597,45 +348627,45 @@ static const uint16_t ts_small_parse_table[] = { [223783] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5414), 1, + ACTIONS(5332), 1, anon_sym_LPAREN, - ACTIONS(5416), 1, + ACTIONS(5334), 1, anon_sym_DQUOTE, - ACTIONS(5418), 1, + ACTIONS(5336), 1, anon_sym_SQUOTE, - ACTIONS(5420), 1, + ACTIONS(5338), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5422), 1, + ACTIONS(5340), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5424), 1, + ACTIONS(5342), 1, anon_sym_LBRACE, - ACTIONS(5426), 1, + ACTIONS(5344), 1, anon_sym_LBRACK, - ACTIONS(5428), 1, + ACTIONS(5346), 1, anon_sym_LT, - ACTIONS(5430), 1, + ACTIONS(5348), 1, anon_sym_PIPE, - ACTIONS(5432), 1, + ACTIONS(5350), 1, anon_sym_SLASH, - STATE(2054), 1, + STATE(2046), 1, sym__quoted_i_double, - STATE(2055), 1, + STATE(2047), 1, sym__quoted_i_single, - STATE(2056), 1, + STATE(2048), 1, sym__quoted_i_heredoc_single, - STATE(2057), 1, + STATE(2049), 1, sym__quoted_i_heredoc_double, - STATE(2058), 1, + STATE(2050), 1, sym__quoted_i_parenthesis, - STATE(2059), 1, + STATE(2051), 1, sym__quoted_i_curly, - STATE(2060), 1, + STATE(2052), 1, sym__quoted_i_square, - STATE(2061), 1, + STATE(2053), 1, sym__quoted_i_angle, - STATE(2062), 1, + STATE(2054), 1, sym__quoted_i_bar, - STATE(2063), 1, + STATE(2055), 1, sym__quoted_i_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -360644,45 +348674,45 @@ static const uint16_t ts_small_parse_table[] = { [223852] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5434), 1, + ACTIONS(5352), 1, anon_sym_LPAREN, - ACTIONS(5436), 1, + ACTIONS(5354), 1, anon_sym_DQUOTE, - ACTIONS(5438), 1, + ACTIONS(5356), 1, anon_sym_SQUOTE, - ACTIONS(5440), 1, + ACTIONS(5358), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5442), 1, + ACTIONS(5360), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5444), 1, + ACTIONS(5362), 1, anon_sym_LBRACE, - ACTIONS(5446), 1, + ACTIONS(5364), 1, anon_sym_LBRACK, - ACTIONS(5448), 1, + ACTIONS(5366), 1, anon_sym_LT, - ACTIONS(5450), 1, + ACTIONS(5368), 1, anon_sym_PIPE, - ACTIONS(5452), 1, + ACTIONS(5370), 1, anon_sym_SLASH, - STATE(2064), 1, + STATE(2056), 1, sym__quoted_double, - STATE(2065), 1, + STATE(2057), 1, sym__quoted_single, - STATE(2066), 1, + STATE(2058), 1, sym__quoted_heredoc_single, - STATE(2067), 1, + STATE(2059), 1, sym__quoted_heredoc_double, - STATE(2068), 1, + STATE(2060), 1, sym__quoted_parenthesis, - STATE(2069), 1, + STATE(2061), 1, sym__quoted_curly, - STATE(2070), 1, + STATE(2062), 1, sym__quoted_square, - STATE(2071), 1, + STATE(2063), 1, sym__quoted_angle, - STATE(2072), 1, + STATE(2064), 1, sym__quoted_bar, - STATE(2073), 1, + STATE(2065), 1, sym__quoted_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -360691,45 +348721,45 @@ static const uint16_t ts_small_parse_table[] = { [223921] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5454), 1, + ACTIONS(5372), 1, anon_sym_LPAREN, - ACTIONS(5456), 1, + ACTIONS(5374), 1, anon_sym_DQUOTE, - ACTIONS(5458), 1, + ACTIONS(5376), 1, anon_sym_SQUOTE, - ACTIONS(5460), 1, + ACTIONS(5378), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5462), 1, + ACTIONS(5380), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5464), 1, + ACTIONS(5382), 1, anon_sym_LBRACE, - ACTIONS(5466), 1, + ACTIONS(5384), 1, anon_sym_LBRACK, - ACTIONS(5468), 1, + ACTIONS(5386), 1, anon_sym_LT, - ACTIONS(5470), 1, + ACTIONS(5388), 1, anon_sym_PIPE, - ACTIONS(5472), 1, + ACTIONS(5390), 1, anon_sym_SLASH, - STATE(2606), 1, + STATE(2595), 1, sym__quoted_slash, - STATE(2607), 1, + STATE(2596), 1, sym__quoted_bar, - STATE(2608), 1, + STATE(2597), 1, sym__quoted_angle, - STATE(2609), 1, + STATE(2598), 1, sym__quoted_square, - STATE(2610), 1, + STATE(2599), 1, sym__quoted_curly, - STATE(2611), 1, + STATE(2600), 1, sym__quoted_parenthesis, - STATE(2612), 1, + STATE(2601), 1, sym__quoted_heredoc_double, - STATE(2613), 1, + STATE(2602), 1, sym__quoted_heredoc_single, - STATE(2614), 1, + STATE(2603), 1, sym__quoted_single, - STATE(2615), 1, + STATE(2604), 1, sym__quoted_double, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -360738,45 +348768,45 @@ static const uint16_t ts_small_parse_table[] = { [223990] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5474), 1, + ACTIONS(5392), 1, anon_sym_LPAREN, - ACTIONS(5476), 1, + ACTIONS(5394), 1, anon_sym_DQUOTE, - ACTIONS(5478), 1, + ACTIONS(5396), 1, anon_sym_SQUOTE, - ACTIONS(5480), 1, + ACTIONS(5398), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5482), 1, + ACTIONS(5400), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5484), 1, + ACTIONS(5402), 1, anon_sym_LBRACE, - ACTIONS(5486), 1, + ACTIONS(5404), 1, anon_sym_LBRACK, - ACTIONS(5488), 1, + ACTIONS(5406), 1, anon_sym_LT, - ACTIONS(5490), 1, + ACTIONS(5408), 1, anon_sym_PIPE, - ACTIONS(5492), 1, + ACTIONS(5410), 1, anon_sym_SLASH, - STATE(2616), 1, + STATE(2605), 1, sym__quoted_i_slash, - STATE(2617), 1, + STATE(2606), 1, sym__quoted_i_bar, - STATE(2618), 1, + STATE(2607), 1, sym__quoted_i_angle, - STATE(2619), 1, + STATE(2608), 1, sym__quoted_i_square, - STATE(2620), 1, + STATE(2609), 1, sym__quoted_i_curly, - STATE(2621), 1, + STATE(2610), 1, sym__quoted_i_parenthesis, - STATE(2622), 1, + STATE(2611), 1, sym__quoted_i_heredoc_double, - STATE(2623), 1, + STATE(2612), 1, sym__quoted_i_heredoc_single, - STATE(2624), 1, + STATE(2613), 1, sym__quoted_i_single, - STATE(2625), 1, + STATE(2614), 1, sym__quoted_i_double, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -360785,46 +348815,46 @@ static const uint16_t ts_small_parse_table[] = { [224059] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5494), 1, + ACTIONS(5412), 1, anon_sym_LPAREN, - ACTIONS(5496), 1, + ACTIONS(5414), 1, anon_sym_DQUOTE, - ACTIONS(5498), 1, + ACTIONS(5416), 1, anon_sym_SQUOTE, - ACTIONS(5500), 1, + ACTIONS(5418), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5502), 1, + ACTIONS(5420), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5504), 1, + ACTIONS(5422), 1, anon_sym_LBRACE, - ACTIONS(5506), 1, + ACTIONS(5424), 1, anon_sym_LBRACK, - ACTIONS(5508), 1, + ACTIONS(5426), 1, anon_sym_LT, - ACTIONS(5510), 1, + ACTIONS(5428), 1, anon_sym_PIPE, - ACTIONS(5512), 1, + ACTIONS(5430), 1, anon_sym_SLASH, - STATE(3256), 1, - sym__quoted_slash, - STATE(3364), 1, + STATE(3184), 1, sym__quoted_heredoc_double, - STATE(3365), 1, + STATE(3239), 1, sym__quoted_bar, - STATE(3366), 1, + STATE(3240), 1, + sym__quoted_slash, + STATE(3294), 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, + STATE(3353), 1, sym__quoted_heredoc_single, - STATE(3461), 1, + STATE(3354), 1, + sym__quoted_square, + STATE(3355), 1, + sym__quoted_curly, + STATE(3357), 1, + sym__quoted_parenthesis, + STATE(3440), 1, sym__quoted_single, + STATE(3441), 1, + sym__quoted_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -360832,45 +348862,45 @@ static const uint16_t ts_small_parse_table[] = { [224128] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5514), 1, + ACTIONS(5432), 1, anon_sym_LPAREN, - ACTIONS(5516), 1, + ACTIONS(5434), 1, anon_sym_DQUOTE, - ACTIONS(5518), 1, + ACTIONS(5436), 1, anon_sym_SQUOTE, - ACTIONS(5520), 1, + ACTIONS(5438), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5522), 1, + ACTIONS(5440), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5524), 1, + ACTIONS(5442), 1, anon_sym_LBRACE, - ACTIONS(5526), 1, + ACTIONS(5444), 1, anon_sym_LBRACK, - ACTIONS(5528), 1, + ACTIONS(5446), 1, anon_sym_LT, - ACTIONS(5530), 1, + ACTIONS(5448), 1, anon_sym_PIPE, - ACTIONS(5532), 1, + ACTIONS(5450), 1, anon_sym_SLASH, - STATE(3907), 1, + STATE(3895), 1, sym__quoted_i_double, - STATE(3908), 1, + STATE(3896), 1, sym__quoted_i_single, - STATE(3909), 1, + STATE(3897), 1, sym__quoted_i_heredoc_single, - STATE(3911), 1, + STATE(3899), 1, sym__quoted_i_heredoc_double, - STATE(3916), 1, + STATE(3904), 1, sym__quoted_i_parenthesis, - STATE(3917), 1, + STATE(3905), 1, sym__quoted_i_curly, - STATE(3919), 1, + STATE(3907), 1, sym__quoted_i_square, - STATE(3920), 1, + STATE(3908), 1, sym__quoted_i_angle, - STATE(3921), 1, + STATE(3909), 1, sym__quoted_i_bar, - STATE(3922), 1, + STATE(3910), 1, sym__quoted_i_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -360879,45 +348909,45 @@ static const uint16_t ts_small_parse_table[] = { [224197] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5534), 1, + ACTIONS(5452), 1, anon_sym_LPAREN, - ACTIONS(5536), 1, + ACTIONS(5454), 1, anon_sym_DQUOTE, - ACTIONS(5538), 1, + ACTIONS(5456), 1, anon_sym_SQUOTE, - ACTIONS(5540), 1, + ACTIONS(5458), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5542), 1, + ACTIONS(5460), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5544), 1, + ACTIONS(5462), 1, anon_sym_LBRACE, - ACTIONS(5546), 1, + ACTIONS(5464), 1, anon_sym_LBRACK, - ACTIONS(5548), 1, + ACTIONS(5466), 1, anon_sym_LT, - ACTIONS(5550), 1, + ACTIONS(5468), 1, anon_sym_PIPE, - ACTIONS(5552), 1, + ACTIONS(5470), 1, anon_sym_SLASH, - STATE(3924), 1, + STATE(3912), 1, sym__quoted_double, - STATE(3925), 1, + STATE(3913), 1, sym__quoted_single, - STATE(3927), 1, + STATE(3915), 1, sym__quoted_heredoc_single, - STATE(3928), 1, + STATE(3916), 1, sym__quoted_heredoc_double, - STATE(3929), 1, + STATE(3917), 1, sym__quoted_parenthesis, - STATE(3930), 1, + STATE(3918), 1, sym__quoted_curly, - STATE(3932), 1, + STATE(3920), 1, sym__quoted_square, - STATE(3936), 1, + STATE(3924), 1, sym__quoted_bar, - STATE(3958), 1, + STATE(3946), 1, sym__quoted_slash, - STATE(3977), 1, + STATE(3968), 1, sym__quoted_angle, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -360926,46 +348956,46 @@ static const uint16_t ts_small_parse_table[] = { [224266] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5554), 1, + ACTIONS(5472), 1, anon_sym_LPAREN, - ACTIONS(5556), 1, + ACTIONS(5474), 1, anon_sym_DQUOTE, - ACTIONS(5558), 1, + ACTIONS(5476), 1, anon_sym_SQUOTE, - ACTIONS(5560), 1, + ACTIONS(5478), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5562), 1, + ACTIONS(5480), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5564), 1, + ACTIONS(5482), 1, anon_sym_LBRACE, - ACTIONS(5566), 1, + ACTIONS(5484), 1, anon_sym_LBRACK, - ACTIONS(5568), 1, + ACTIONS(5486), 1, anon_sym_LT, - ACTIONS(5570), 1, + ACTIONS(5488), 1, anon_sym_PIPE, - ACTIONS(5572), 1, + ACTIONS(5490), 1, anon_sym_SLASH, - STATE(3503), 1, + STATE(3442), 1, sym__quoted_i_slash, - STATE(3504), 1, + STATE(3483), 1, sym__quoted_i_bar, - STATE(3537), 1, + STATE(3485), 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, + STATE(3520), 1, sym__quoted_i_square, + STATE(3641), 1, + sym__quoted_i_double, + STATE(3642), 1, + sym__quoted_i_single, + STATE(3643), 1, + sym__quoted_i_heredoc_single, + STATE(3644), 1, + sym__quoted_i_heredoc_double, + STATE(3645), 1, + sym__quoted_i_parenthesis, + STATE(3646), 1, + sym__quoted_i_curly, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -360973,45 +349003,45 @@ static const uint16_t ts_small_parse_table[] = { [224335] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5574), 1, + ACTIONS(5492), 1, anon_sym_LPAREN, - ACTIONS(5576), 1, + ACTIONS(5494), 1, anon_sym_DQUOTE, - ACTIONS(5578), 1, + ACTIONS(5496), 1, anon_sym_SQUOTE, - ACTIONS(5580), 1, + ACTIONS(5498), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5582), 1, + ACTIONS(5500), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5584), 1, + ACTIONS(5502), 1, anon_sym_LBRACE, - ACTIONS(5586), 1, + ACTIONS(5504), 1, anon_sym_LBRACK, - ACTIONS(5588), 1, + ACTIONS(5506), 1, anon_sym_LT, - ACTIONS(5590), 1, + ACTIONS(5508), 1, anon_sym_PIPE, - ACTIONS(5592), 1, + ACTIONS(5510), 1, anon_sym_SLASH, - STATE(2496), 1, + STATE(2484), 1, sym__quoted_i_slash, - STATE(2497), 1, + STATE(2485), 1, sym__quoted_i_bar, - STATE(2498), 1, + STATE(2486), 1, sym__quoted_i_angle, - STATE(2499), 1, + STATE(2487), 1, sym__quoted_i_square, - STATE(2500), 1, + STATE(2488), 1, sym__quoted_i_curly, - STATE(2501), 1, + STATE(2489), 1, sym__quoted_i_parenthesis, - STATE(2502), 1, + STATE(2490), 1, sym__quoted_i_heredoc_double, - STATE(2503), 1, + STATE(2491), 1, sym__quoted_i_heredoc_single, - STATE(2504), 1, + STATE(2492), 1, sym__quoted_i_single, - STATE(2505), 1, + STATE(2493), 1, sym__quoted_i_double, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -361020,45 +349050,45 @@ static const uint16_t ts_small_parse_table[] = { [224404] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5594), 1, + ACTIONS(5512), 1, anon_sym_LPAREN, - ACTIONS(5596), 1, + ACTIONS(5514), 1, anon_sym_DQUOTE, - ACTIONS(5598), 1, + ACTIONS(5516), 1, anon_sym_SQUOTE, - ACTIONS(5600), 1, + ACTIONS(5518), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5602), 1, + ACTIONS(5520), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5604), 1, + ACTIONS(5522), 1, anon_sym_LBRACE, - ACTIONS(5606), 1, + ACTIONS(5524), 1, anon_sym_LBRACK, - ACTIONS(5608), 1, + ACTIONS(5526), 1, anon_sym_LT, - ACTIONS(5610), 1, + ACTIONS(5528), 1, anon_sym_PIPE, - ACTIONS(5612), 1, + ACTIONS(5530), 1, anon_sym_SLASH, - STATE(2410), 1, + STATE(2398), 1, sym__quoted_slash, - STATE(2411), 1, + STATE(2399), 1, sym__quoted_bar, - STATE(2412), 1, + STATE(2400), 1, sym__quoted_angle, - STATE(2413), 1, + STATE(2402), 1, sym__quoted_square, - STATE(2414), 1, + STATE(2403), 1, sym__quoted_curly, - STATE(2415), 1, + STATE(2404), 1, sym__quoted_parenthesis, - STATE(2416), 1, + STATE(2405), 1, sym__quoted_heredoc_double, - STATE(2417), 1, + STATE(2406), 1, sym__quoted_heredoc_single, - STATE(2418), 1, + STATE(2407), 1, sym__quoted_single, - STATE(2419), 1, + STATE(2408), 1, sym__quoted_double, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -361067,45 +349097,45 @@ static const uint16_t ts_small_parse_table[] = { [224473] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5614), 1, + ACTIONS(5532), 1, anon_sym_LPAREN, - ACTIONS(5616), 1, + ACTIONS(5534), 1, anon_sym_DQUOTE, - ACTIONS(5618), 1, + ACTIONS(5536), 1, anon_sym_SQUOTE, - ACTIONS(5620), 1, + ACTIONS(5538), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5622), 1, + ACTIONS(5540), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5624), 1, + ACTIONS(5542), 1, anon_sym_LBRACE, - ACTIONS(5626), 1, + ACTIONS(5544), 1, anon_sym_LBRACK, - ACTIONS(5628), 1, + ACTIONS(5546), 1, anon_sym_LT, - ACTIONS(5630), 1, + ACTIONS(5548), 1, anon_sym_PIPE, - ACTIONS(5632), 1, + ACTIONS(5550), 1, anon_sym_SLASH, - STATE(3614), 1, + STATE(3611), 1, sym__quoted_i_slash, - STATE(3622), 1, + STATE(3612), 1, sym__quoted_i_bar, - STATE(3623), 1, + STATE(3617), 1, sym__quoted_i_angle, - STATE(3624), 1, + STATE(3618), 1, sym__quoted_i_square, - STATE(3629), 1, + STATE(3619), 1, sym__quoted_i_curly, - STATE(3637), 1, + STATE(3622), 1, sym__quoted_i_parenthesis, - STATE(3638), 1, + STATE(3626), 1, sym__quoted_i_heredoc_double, - STATE(3639), 1, + STATE(3628), 1, sym__quoted_i_heredoc_single, - STATE(3640), 1, + STATE(3629), 1, sym__quoted_i_single, - STATE(3641), 1, + STATE(3630), 1, sym__quoted_i_double, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -361114,45 +349144,45 @@ static const uint16_t ts_small_parse_table[] = { [224542] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5634), 1, + ACTIONS(5552), 1, anon_sym_LPAREN, - ACTIONS(5636), 1, + ACTIONS(5554), 1, anon_sym_DQUOTE, - ACTIONS(5638), 1, + ACTIONS(5556), 1, anon_sym_SQUOTE, - ACTIONS(5640), 1, + ACTIONS(5558), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5642), 1, + ACTIONS(5560), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5644), 1, + ACTIONS(5562), 1, anon_sym_LBRACE, - ACTIONS(5646), 1, + ACTIONS(5564), 1, anon_sym_LBRACK, - ACTIONS(5648), 1, + ACTIONS(5566), 1, anon_sym_LT, - ACTIONS(5650), 1, + ACTIONS(5568), 1, anon_sym_PIPE, - ACTIONS(5652), 1, + ACTIONS(5570), 1, anon_sym_SLASH, - STATE(3404), 1, - sym__quoted_parenthesis, - STATE(3407), 1, + STATE(3197), 1, sym__quoted_slash, - STATE(3408), 1, - sym__quoted_bar, - STATE(3409), 1, + STATE(3284), 1, sym__quoted_angle, - STATE(3410), 1, + STATE(3372), 1, + sym__quoted_bar, + STATE(3393), 1, sym__quoted_square, - STATE(3411), 1, + STATE(3394), 1, sym__quoted_curly, - STATE(3413), 1, + STATE(3395), 1, + sym__quoted_parenthesis, + STATE(3396), 1, sym__quoted_heredoc_double, - STATE(3414), 1, + STATE(3397), 1, sym__quoted_heredoc_single, - STATE(3415), 1, + STATE(3398), 1, sym__quoted_single, - STATE(3416), 1, + STATE(3399), 1, sym__quoted_double, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -361161,45 +349191,45 @@ static const uint16_t ts_small_parse_table[] = { [224611] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5654), 1, + ACTIONS(5572), 1, anon_sym_LPAREN, - ACTIONS(5656), 1, + ACTIONS(5574), 1, anon_sym_DQUOTE, - ACTIONS(5658), 1, + ACTIONS(5576), 1, anon_sym_SQUOTE, - ACTIONS(5660), 1, + ACTIONS(5578), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5662), 1, + ACTIONS(5580), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5664), 1, + ACTIONS(5582), 1, anon_sym_LBRACE, - ACTIONS(5666), 1, + ACTIONS(5584), 1, anon_sym_LBRACK, - ACTIONS(5668), 1, + ACTIONS(5586), 1, anon_sym_LT, - ACTIONS(5670), 1, + ACTIONS(5588), 1, anon_sym_PIPE, - ACTIONS(5672), 1, + ACTIONS(5590), 1, anon_sym_SLASH, - STATE(3417), 1, + STATE(3392), 1, sym__quoted_i_slash, - STATE(3418), 1, + STATE(3401), 1, sym__quoted_i_bar, - STATE(3419), 1, + STATE(3402), 1, sym__quoted_i_angle, - STATE(3420), 1, + STATE(3403), 1, sym__quoted_i_square, - STATE(3421), 1, + STATE(3404), 1, sym__quoted_i_curly, - STATE(3422), 1, + STATE(3405), 1, sym__quoted_i_parenthesis, - STATE(3423), 1, + STATE(3406), 1, sym__quoted_i_heredoc_double, - STATE(3424), 1, + STATE(3407), 1, sym__quoted_i_heredoc_single, - STATE(3425), 1, + STATE(3408), 1, sym__quoted_i_single, - STATE(3426), 1, + STATE(3409), 1, sym__quoted_i_double, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -361208,45 +349238,45 @@ static const uint16_t ts_small_parse_table[] = { [224680] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5674), 1, + ACTIONS(5592), 1, anon_sym_LPAREN, - ACTIONS(5676), 1, + ACTIONS(5594), 1, anon_sym_DQUOTE, - ACTIONS(5678), 1, + ACTIONS(5596), 1, anon_sym_SQUOTE, - ACTIONS(5680), 1, + ACTIONS(5598), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5682), 1, + ACTIONS(5600), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5684), 1, + ACTIONS(5602), 1, anon_sym_LBRACE, - ACTIONS(5686), 1, + ACTIONS(5604), 1, anon_sym_LBRACK, - ACTIONS(5688), 1, + ACTIONS(5606), 1, anon_sym_LT, - ACTIONS(5690), 1, + ACTIONS(5608), 1, anon_sym_PIPE, - ACTIONS(5692), 1, + ACTIONS(5610), 1, anon_sym_SLASH, - STATE(3595), 1, + STATE(3583), 1, sym__quoted_i_slash, - STATE(3596), 1, + STATE(3584), 1, sym__quoted_i_bar, - STATE(3597), 1, + STATE(3585), 1, sym__quoted_i_angle, - STATE(3598), 1, + STATE(3586), 1, sym__quoted_i_square, - STATE(3599), 1, + STATE(3587), 1, sym__quoted_i_curly, - STATE(3600), 1, + STATE(3588), 1, sym__quoted_i_parenthesis, - STATE(3601), 1, + STATE(3589), 1, sym__quoted_i_heredoc_double, - STATE(3602), 1, + STATE(3590), 1, sym__quoted_i_heredoc_single, - STATE(3603), 1, + STATE(3591), 1, sym__quoted_i_single, - STATE(3604), 1, + STATE(3592), 1, sym__quoted_i_double, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -361255,45 +349285,45 @@ static const uint16_t ts_small_parse_table[] = { [224749] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5694), 1, + ACTIONS(5612), 1, anon_sym_LPAREN, - ACTIONS(5696), 1, + ACTIONS(5614), 1, anon_sym_DQUOTE, - ACTIONS(5698), 1, + ACTIONS(5616), 1, anon_sym_SQUOTE, - ACTIONS(5700), 1, + ACTIONS(5618), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5702), 1, + ACTIONS(5620), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5704), 1, + ACTIONS(5622), 1, anon_sym_LBRACE, - ACTIONS(5706), 1, + ACTIONS(5624), 1, anon_sym_LBRACK, - ACTIONS(5708), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5710), 1, + ACTIONS(5628), 1, anon_sym_PIPE, - ACTIONS(5712), 1, + ACTIONS(5630), 1, anon_sym_SLASH, - STATE(3539), 1, + STATE(3527), 1, sym__quoted_slash, - STATE(3544), 1, + STATE(3528), 1, sym__quoted_bar, - STATE(3552), 1, + STATE(3529), 1, sym__quoted_angle, - STATE(3565), 1, + STATE(3532), 1, sym__quoted_square, - STATE(3566), 1, + STATE(3555), 1, sym__quoted_curly, - STATE(3567), 1, + STATE(3594), 1, sym__quoted_parenthesis, - STATE(3568), 1, + STATE(3600), 1, sym__quoted_heredoc_double, - STATE(3609), 1, + STATE(3601), 1, sym__quoted_heredoc_single, - STATE(3612), 1, + STATE(3602), 1, sym__quoted_single, - STATE(3613), 1, + STATE(3610), 1, sym__quoted_double, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -361302,46 +349332,46 @@ static const uint16_t ts_small_parse_table[] = { [224818] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5714), 1, + ACTIONS(5632), 1, anon_sym_LPAREN, - ACTIONS(5716), 1, + ACTIONS(5634), 1, anon_sym_DQUOTE, - ACTIONS(5718), 1, + ACTIONS(5636), 1, anon_sym_SQUOTE, - ACTIONS(5720), 1, + ACTIONS(5638), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5722), 1, + ACTIONS(5640), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5724), 1, + ACTIONS(5642), 1, anon_sym_LBRACE, - ACTIONS(5726), 1, + ACTIONS(5644), 1, anon_sym_LBRACK, - ACTIONS(5728), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(5730), 1, + ACTIONS(5648), 1, anon_sym_PIPE, - ACTIONS(5732), 1, + ACTIONS(5650), 1, anon_sym_SLASH, - STATE(1534), 1, - sym__quoted_i_parenthesis, - STATE(1590), 1, - sym__quoted_i_heredoc_double, - STATE(1698), 1, + STATE(1551), 1, sym__quoted_i_slash, - STATE(1701), 1, + STATE(1552), 1, sym__quoted_i_bar, - STATE(1704), 1, + STATE(1553), 1, sym__quoted_i_angle, - STATE(1706), 1, + STATE(1554), 1, sym__quoted_i_square, - STATE(1711), 1, + STATE(1556), 1, sym__quoted_i_curly, - STATE(1715), 1, - sym__quoted_i_double, - STATE(1716), 1, - sym__quoted_i_single, - STATE(1717), 1, + STATE(1557), 1, + sym__quoted_i_parenthesis, + STATE(1558), 1, + sym__quoted_i_heredoc_double, + STATE(1559), 1, sym__quoted_i_heredoc_single, + STATE(1560), 1, + sym__quoted_i_single, + STATE(1583), 1, + sym__quoted_i_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -361349,46 +349379,46 @@ static const uint16_t ts_small_parse_table[] = { [224887] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5734), 1, + ACTIONS(5652), 1, anon_sym_LPAREN, - ACTIONS(5736), 1, + ACTIONS(5654), 1, anon_sym_DQUOTE, - ACTIONS(5738), 1, + ACTIONS(5656), 1, anon_sym_SQUOTE, - ACTIONS(5740), 1, + ACTIONS(5658), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5742), 1, + ACTIONS(5660), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5744), 1, + ACTIONS(5662), 1, anon_sym_LBRACE, - ACTIONS(5746), 1, + ACTIONS(5664), 1, anon_sym_LBRACK, - ACTIONS(5748), 1, + ACTIONS(5666), 1, anon_sym_LT, - ACTIONS(5750), 1, + ACTIONS(5668), 1, anon_sym_PIPE, - ACTIONS(5752), 1, + ACTIONS(5670), 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, + STATE(1204), 1, sym__quoted_slash, + STATE(1205), 1, + sym__quoted_bar, + STATE(1206), 1, + sym__quoted_angle, + STATE(1207), 1, + sym__quoted_square, + STATE(1208), 1, + sym__quoted_curly, + STATE(1211), 1, + sym__quoted_parenthesis, + STATE(1222), 1, + sym__quoted_heredoc_double, + STATE(1224), 1, + sym__quoted_heredoc_single, + STATE(1226), 1, + sym__quoted_single, + STATE(1227), 1, + sym__quoted_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -361396,46 +349426,46 @@ static const uint16_t ts_small_parse_table[] = { [224956] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5754), 1, + ACTIONS(5672), 1, anon_sym_LPAREN, - ACTIONS(5756), 1, + ACTIONS(5674), 1, anon_sym_DQUOTE, - ACTIONS(5758), 1, + ACTIONS(5676), 1, anon_sym_SQUOTE, - ACTIONS(5760), 1, + ACTIONS(5678), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5762), 1, + ACTIONS(5680), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5764), 1, + ACTIONS(5682), 1, anon_sym_LBRACE, - ACTIONS(5766), 1, + ACTIONS(5684), 1, anon_sym_LBRACK, - ACTIONS(5768), 1, + ACTIONS(5686), 1, anon_sym_LT, - ACTIONS(5770), 1, + ACTIONS(5688), 1, anon_sym_PIPE, - ACTIONS(5772), 1, + ACTIONS(5690), 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, + STATE(1335), 1, sym__quoted_i_slash, + STATE(1341), 1, + sym__quoted_i_bar, + STATE(1347), 1, + sym__quoted_i_angle, + STATE(1348), 1, + sym__quoted_i_square, + STATE(1350), 1, + sym__quoted_i_curly, + STATE(1353), 1, + sym__quoted_i_parenthesis, + STATE(1354), 1, + sym__quoted_i_heredoc_double, + STATE(1358), 1, + sym__quoted_i_heredoc_single, + STATE(1359), 1, + sym__quoted_i_single, + STATE(1363), 1, + sym__quoted_i_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -361443,45 +349473,45 @@ static const uint16_t ts_small_parse_table[] = { [225025] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5774), 1, + ACTIONS(5692), 1, anon_sym_LPAREN, - ACTIONS(5776), 1, + ACTIONS(5694), 1, anon_sym_DQUOTE, - ACTIONS(5778), 1, + ACTIONS(5696), 1, anon_sym_SQUOTE, - ACTIONS(5780), 1, + ACTIONS(5698), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5782), 1, + ACTIONS(5700), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5784), 1, + ACTIONS(5702), 1, anon_sym_LBRACE, - ACTIONS(5786), 1, + ACTIONS(5704), 1, anon_sym_LBRACK, - ACTIONS(5788), 1, + ACTIONS(5706), 1, anon_sym_LT, - ACTIONS(5790), 1, + ACTIONS(5708), 1, anon_sym_PIPE, - ACTIONS(5792), 1, + ACTIONS(5710), 1, anon_sym_SLASH, - STATE(1868), 1, + STATE(1856), 1, sym__quoted_double, - STATE(1869), 1, + STATE(1905), 1, sym__quoted_single, - STATE(1875), 1, + STATE(1906), 1, sym__quoted_heredoc_single, - STATE(1917), 1, + STATE(1907), 1, sym__quoted_heredoc_double, - STATE(1936), 1, + STATE(1910), 1, sym__quoted_parenthesis, - STATE(1937), 1, + STATE(1929), 1, sym__quoted_curly, - STATE(1947), 1, + STATE(1939), 1, sym__quoted_square, - STATE(1951), 1, + STATE(1941), 1, sym__quoted_angle, - STATE(1953), 1, + STATE(1945), 1, sym__quoted_bar, - STATE(1957), 1, + STATE(1946), 1, sym__quoted_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -361490,46 +349520,46 @@ static const uint16_t ts_small_parse_table[] = { [225094] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5794), 1, + ACTIONS(5712), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5714), 1, anon_sym_DQUOTE, - ACTIONS(5798), 1, + ACTIONS(5716), 1, anon_sym_SQUOTE, - ACTIONS(5800), 1, + ACTIONS(5718), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5802), 1, + ACTIONS(5720), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5804), 1, + ACTIONS(5722), 1, anon_sym_LBRACE, - ACTIONS(5806), 1, + ACTIONS(5724), 1, anon_sym_LBRACK, - ACTIONS(5808), 1, + ACTIONS(5726), 1, anon_sym_LT, - ACTIONS(5810), 1, + ACTIONS(5728), 1, anon_sym_PIPE, - ACTIONS(5812), 1, + ACTIONS(5730), 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, + STATE(1313), 1, sym__quoted_slash, - STATE(1510), 1, - sym__quoted_heredoc_double, - STATE(1511), 1, - sym__quoted_parenthesis, - STATE(1512), 1, + STATE(1315), 1, sym__quoted_bar, - STATE(1515), 1, + STATE(1322), 1, sym__quoted_angle, - STATE(1516), 1, + STATE(1323), 1, sym__quoted_square, - STATE(1517), 1, + STATE(1324), 1, sym__quoted_curly, + STATE(1326), 1, + sym__quoted_parenthesis, + STATE(1327), 1, + sym__quoted_heredoc_double, + STATE(1328), 1, + sym__quoted_heredoc_single, + STATE(1332), 1, + sym__quoted_single, + STATE(1334), 1, + sym__quoted_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -361537,46 +349567,46 @@ static const uint16_t ts_small_parse_table[] = { [225163] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5814), 1, + ACTIONS(5732), 1, anon_sym_LPAREN, - ACTIONS(5816), 1, + ACTIONS(5734), 1, anon_sym_DQUOTE, - ACTIONS(5818), 1, + ACTIONS(5736), 1, anon_sym_SQUOTE, - ACTIONS(5820), 1, + ACTIONS(5738), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5822), 1, + ACTIONS(5740), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5824), 1, + ACTIONS(5742), 1, anon_sym_LBRACE, - ACTIONS(5826), 1, + ACTIONS(5744), 1, anon_sym_LBRACK, - ACTIONS(5828), 1, + ACTIONS(5746), 1, anon_sym_LT, - ACTIONS(5830), 1, + ACTIONS(5748), 1, anon_sym_PIPE, - ACTIONS(5832), 1, + ACTIONS(5750), 1, anon_sym_SLASH, - STATE(1683), 1, + STATE(1542), 1, sym__quoted_slash, - STATE(1685), 1, + STATE(1543), 1, sym__quoted_bar, - STATE(1686), 1, + STATE(1544), 1, sym__quoted_angle, - STATE(1687), 1, + STATE(1545), 1, sym__quoted_square, - STATE(1688), 1, + STATE(1546), 1, sym__quoted_curly, - STATE(1690), 1, + STATE(1547), 1, sym__quoted_parenthesis, - STATE(1691), 1, + STATE(1548), 1, sym__quoted_heredoc_double, - STATE(1693), 1, + STATE(1549), 1, sym__quoted_heredoc_single, - STATE(1694), 1, - sym__quoted_single, - STATE(1695), 1, + STATE(1550), 1, sym__quoted_double, + STATE(1569), 1, + sym__quoted_single, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -361584,46 +349614,46 @@ static const uint16_t ts_small_parse_table[] = { [225232] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5834), 1, + ACTIONS(5752), 1, anon_sym_LPAREN, - ACTIONS(5836), 1, + ACTIONS(5754), 1, anon_sym_DQUOTE, - ACTIONS(5838), 1, + ACTIONS(5756), 1, anon_sym_SQUOTE, - ACTIONS(5840), 1, + ACTIONS(5758), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5842), 1, + ACTIONS(5760), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5844), 1, + ACTIONS(5762), 1, anon_sym_LBRACE, - ACTIONS(5846), 1, + ACTIONS(5764), 1, anon_sym_LBRACK, - ACTIONS(5848), 1, + ACTIONS(5766), 1, anon_sym_LT, - ACTIONS(5850), 1, + ACTIONS(5768), 1, anon_sym_PIPE, - ACTIONS(5852), 1, + ACTIONS(5770), 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, + STATE(2919), 1, sym__quoted_heredoc_double, + STATE(3157), 1, + sym__quoted_double, + STATE(3160), 1, + sym__quoted_single, + STATE(3164), 1, + sym__quoted_heredoc_single, + STATE(3171), 1, + sym__quoted_slash, + STATE(3172), 1, + sym__quoted_bar, + STATE(3173), 1, + sym__quoted_angle, + STATE(3177), 1, + sym__quoted_square, + STATE(3182), 1, + sym__quoted_curly, 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, @@ -361631,45 +349661,45 @@ static const uint16_t ts_small_parse_table[] = { [225301] = 22, ACTIONS(5), 1, sym_comment, - ACTIONS(5854), 1, + ACTIONS(5772), 1, anon_sym_LPAREN, - ACTIONS(5856), 1, + ACTIONS(5774), 1, anon_sym_DQUOTE, - ACTIONS(5858), 1, + ACTIONS(5776), 1, anon_sym_SQUOTE, - ACTIONS(5860), 1, + ACTIONS(5778), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(5862), 1, + ACTIONS(5780), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(5864), 1, + ACTIONS(5782), 1, anon_sym_LBRACE, - ACTIONS(5866), 1, + ACTIONS(5784), 1, anon_sym_LBRACK, - ACTIONS(5868), 1, + ACTIONS(5786), 1, anon_sym_LT, - ACTIONS(5870), 1, + ACTIONS(5788), 1, anon_sym_PIPE, - ACTIONS(5872), 1, + ACTIONS(5790), 1, anon_sym_SLASH, - STATE(3141), 1, + STATE(3133), 1, sym__quoted_i_double, - STATE(3142), 1, + STATE(3134), 1, sym__quoted_i_single, - STATE(3143), 1, + STATE(3135), 1, sym__quoted_i_heredoc_single, - STATE(3144), 1, + STATE(3141), 1, sym__quoted_i_heredoc_double, - STATE(3145), 1, + STATE(3142), 1, sym__quoted_i_parenthesis, - STATE(3146), 1, + STATE(3143), 1, sym__quoted_i_curly, - STATE(3147), 1, + STATE(3149), 1, sym__quoted_i_square, - STATE(3153), 1, + STATE(3150), 1, sym__quoted_i_angle, STATE(3154), 1, sym__quoted_i_bar, - STATE(3161), 1, + STATE(3156), 1, sym__quoted_i_slash, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -361678,30 +349708,30 @@ static const uint16_t ts_small_parse_table[] = { [225370] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1022), 1, + ACTIONS(960), 1, anon_sym_end, - ACTIONS(2875), 1, + ACTIONS(2793), 1, aux_sym__terminator_token1, - ACTIONS(5874), 1, + ACTIONS(5792), 1, anon_sym_SEMI, - STATE(155), 1, + STATE(161), 1, sym__terminator, - STATE(1021), 1, + STATE(1009), 1, aux_sym__terminator_repeat1, - STATE(4355), 1, + STATE(4343), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4301), 5, + STATE(4289), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -361710,1817 +349740,25 @@ static const uint16_t ts_small_parse_table[] = { [225415] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, - anon_sym_rescue, - ACTIONS(335), 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(4213), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(4299), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [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, + ACTIONS(313), 1, anon_sym_end, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 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, - 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(1004), 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(4323), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [225550] = 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(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(4330), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [225595] = 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(327), 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(4206), 1, - aux_sym_block_repeat1, - ACTIONS(3), 2, - sym__newline_before_binary_operator, - sym__newline_before_comment, - STATE(4302), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [225640] = 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(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, - STATE(4300), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [225685] = 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(4212), 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, - [225730] = 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(4250), 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, - [225775] = 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(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, - STATE(4314), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [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, - 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(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, - STATE(4323), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [226405] = 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(1048), 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(4294), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [226450] = 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(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, - STATE(4307), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [226495] = 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(1048), 1, - anon_sym_end, - 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, - STATE(4294), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [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, - 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(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, - STATE(4281), 5, - sym_after_block, - sym_rescue_block, - sym_catch_block, - sym_else_block, - aux_sym_do_block_repeat1, - [226630] = 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(4348), 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, - [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, + STATE(4201), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -363531,28 +349769,220 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [227980] = 13, + [225460] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1046), 1, + ACTIONS(301), 1, anon_sym_end, - ACTIONS(5876), 1, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4265), 1, + STATE(4228), 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, + [225505] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(968), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4336), 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, + [225550] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(954), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4336), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4318), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [225595] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(337), 1, + anon_sym_end, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4194), 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, + [225640] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(990), 1, + anon_sym_end, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(5796), 1, + anon_sym_SEMI, + STATE(168), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4343), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4288), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [225685] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(952), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 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(4302), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [225730] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(982), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4238), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -363563,28 +349993,316 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [228025] = 13, + [225775] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1028), 1, + ACTIONS(952), 1, anon_sym_end, - ACTIONS(5876), 1, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(2795), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(140), 1, sym__terminator, - STATE(1026), 1, + STATE(1009), 1, aux_sym__terminator_repeat1, - STATE(4348), 1, + STATE(4343), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4302), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [225820] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(952), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4336), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4302), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(305), 1, + anon_sym_end, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4221), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4283), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(958), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4336), 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, + [225955] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(954), 1, + anon_sym_end, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(5798), 1, + anon_sym_SEMI, + STATE(152), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4343), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4318), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(926), 1, + anon_sym_end, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(5800), 1, + anon_sym_SEMI, + STATE(155), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4343), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4299), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(946), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4336), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4304), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(926), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4336), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4299), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(950), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4336), 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, + [226180] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(978), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4336), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -363595,33 +350313,1345 @@ static const uint16_t ts_small_parse_table[] = { sym_catch_block, sym_else_block, aux_sym_do_block_repeat1, - [228070] = 13, + [226225] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(698), 1, - aux_sym__terminator_token1, - ACTIONS(1006), 1, + ACTIONS(950), 1, anon_sym_end, - ACTIONS(5876), 1, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(2856), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(151), 1, sym__terminator, - STATE(1026), 1, + STATE(1009), 1, aux_sym__terminator_repeat1, - STATE(4266), 1, + STATE(4343), 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, + [226270] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(972), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4336), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4317), 5, + STATE(4295), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(946), 1, + anon_sym_end, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(5802), 1, + anon_sym_SEMI, + STATE(146), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4343), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4304), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(968), 1, + anon_sym_end, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(5804), 1, + anon_sym_SEMI, + STATE(142), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4343), 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, + [226405] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(964), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4336), 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, + [226450] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(972), 1, + anon_sym_end, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(5806), 1, + anon_sym_SEMI, + STATE(159), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4343), 1, + aux_sym_block_repeat2, + 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, + [226495] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(964), 1, + anon_sym_end, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(5808), 1, + anon_sym_SEMI, + STATE(157), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4343), 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, + [226540] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(958), 1, + anon_sym_end, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(2862), 1, + anon_sym_SEMI, + STATE(156), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4343), 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, + [226585] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(341), 1, + anon_sym_end, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4246), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4269), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [226630] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(986), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4336), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4268), 5, + sym_after_block, + sym_rescue_block, + sym_catch_block, + sym_else_block, + aux_sym_do_block_repeat1, + [226675] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(986), 1, + anon_sym_end, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(2880), 1, + anon_sym_SEMI, + STATE(169), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4343), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4268), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(978), 1, + anon_sym_end, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(5810), 1, + anon_sym_SEMI, + STATE(164), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4343), 1, + aux_sym_block_repeat2, + 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, + [226765] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(982), 1, + anon_sym_end, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(2884), 1, + anon_sym_SEMI, + STATE(154), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4343), 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, + [226810] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(982), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4336), 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, + [226855] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(976), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4336), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4294), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(976), 1, + anon_sym_end, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(2844), 1, + anon_sym_SEMI, + STATE(160), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4343), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4294), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(986), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4243), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4268), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(976), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4204), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4294), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(934), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4336), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4313), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(1002), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4336), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4303), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(950), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4188), 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, + [227170] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(309), 1, + anon_sym_end, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4217), 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, + [227215] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(1002), 1, + anon_sym_end, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(2858), 1, + anon_sym_SEMI, + STATE(158), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4343), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4303), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(958), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4207), 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, + [227305] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(934), 1, + anon_sym_end, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(2852), 1, + anon_sym_SEMI, + STATE(163), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4343), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4313), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(948), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4336), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4297), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(934), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4202), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4313), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(948), 1, + anon_sym_end, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(2872), 1, + anon_sym_SEMI, + STATE(147), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4343), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4297), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(1002), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4187), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4303), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(297), 1, + anon_sym_end, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4222), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4284), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(317), 1, + anon_sym_end, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4239), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4259), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(948), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 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(4297), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(1000), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4252), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4263), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(321), 1, + anon_sym_end, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4196), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4266), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(1000), 1, + anon_sym_end, + ACTIONS(2793), 1, + aux_sym__terminator_token1, + ACTIONS(2866), 1, + anon_sym_SEMI, + STATE(173), 1, + sym__terminator, + STATE(1009), 1, + aux_sym__terminator_repeat1, + STATE(4343), 1, + aux_sym_block_repeat2, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4263), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(960), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4336), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4289), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(1000), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4336), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4263), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(333), 1, + anon_sym_end, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4249), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4267), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(329), 1, + anon_sym_end, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4212), 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, + [227980] = 13, + ACTIONS(5), 1, + sym_comment, + ACTIONS(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(984), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4253), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4262), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(990), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4336), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4288), 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(99), 1, + anon_sym_after, + ACTIONS(101), 1, + anon_sym_catch, + ACTIONS(103), 1, + anon_sym_else, + ACTIONS(109), 1, + anon_sym_rescue, + ACTIONS(658), 1, + aux_sym__terminator_token1, + ACTIONS(942), 1, + anon_sym_end, + ACTIONS(5794), 1, + anon_sym_SEMI, + STATE(134), 1, + sym__terminator, + STATE(1014), 1, + aux_sym__terminator_repeat1, + STATE(4254), 1, + aux_sym_block_repeat1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + STATE(4305), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -363630,30 +351660,30 @@ static const uint16_t ts_small_parse_table[] = { [228115] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1046), 1, + ACTIONS(984), 1, anon_sym_end, - ACTIONS(2875), 1, + ACTIONS(2793), 1, aux_sym__terminator_token1, - ACTIONS(2950), 1, + ACTIONS(2854), 1, anon_sym_SEMI, - STATE(156), 1, + STATE(170), 1, sym__terminator, - STATE(1021), 1, + STATE(1009), 1, aux_sym__terminator_repeat1, - STATE(4355), 1, + STATE(4343), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4274), 5, + STATE(4262), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -363662,30 +351692,30 @@ static const uint16_t ts_small_parse_table[] = { [228160] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1046), 1, + ACTIONS(984), 1, anon_sym_end, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4348), 1, + STATE(4336), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4274), 5, + STATE(4262), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -363694,30 +351724,30 @@ static const uint16_t ts_small_parse_table[] = { [228205] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(315), 1, + ACTIONS(325), 1, anon_sym_end, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4228), 1, + STATE(4216), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4319), 5, + STATE(4307), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -363726,30 +351756,30 @@ static const uint16_t ts_small_parse_table[] = { [228250] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1006), 1, + ACTIONS(942), 1, anon_sym_end, - ACTIONS(2875), 1, + ACTIONS(2793), 1, aux_sym__terminator_token1, - ACTIONS(2968), 1, + ACTIONS(2848), 1, anon_sym_SEMI, - STATE(150), 1, + STATE(144), 1, sym__terminator, - STATE(1021), 1, + STATE(1009), 1, aux_sym__terminator_repeat1, - STATE(4355), 1, + STATE(4343), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4317), 5, + STATE(4305), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -363758,30 +351788,30 @@ static const uint16_t ts_small_parse_table[] = { [228295] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1006), 1, + ACTIONS(942), 1, anon_sym_end, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4348), 1, + STATE(4336), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4317), 5, + STATE(4305), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -363790,30 +351820,30 @@ static const uint16_t ts_small_parse_table[] = { [228340] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1036), 1, + ACTIONS(998), 1, anon_sym_end, - ACTIONS(2875), 1, + ACTIONS(2793), 1, aux_sym__terminator_token1, - ACTIONS(5894), 1, + ACTIONS(5812), 1, anon_sym_SEMI, - STATE(170), 1, + STATE(172), 1, sym__terminator, - STATE(1021), 1, + STATE(1009), 1, aux_sym__terminator_repeat1, - STATE(4355), 1, + STATE(4343), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4272), 5, + STATE(4260), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -363822,30 +351852,30 @@ static const uint16_t ts_small_parse_table[] = { [228385] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1014), 1, + ACTIONS(992), 1, anon_sym_end, - ACTIONS(2875), 1, + ACTIONS(2793), 1, aux_sym__terminator_token1, - ACTIONS(5896), 1, + ACTIONS(5814), 1, anon_sym_SEMI, - STATE(159), 1, + STATE(171), 1, sym__terminator, - STATE(1021), 1, + STATE(1009), 1, aux_sym__terminator_repeat1, - STATE(4355), 1, + STATE(4343), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4273), 5, + STATE(4261), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -363854,30 +351884,30 @@ static const uint16_t ts_small_parse_table[] = { [228430] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1036), 1, + ACTIONS(998), 1, anon_sym_end, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4348), 1, + STATE(4336), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4272), 5, + STATE(4260), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -363886,30 +351916,30 @@ static const uint16_t ts_small_parse_table[] = { [228475] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1014), 1, + ACTIONS(992), 1, anon_sym_end, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4348), 1, + STATE(4336), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4273), 5, + STATE(4261), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -363918,30 +351948,30 @@ static const uint16_t ts_small_parse_table[] = { [228520] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1002), 1, + ACTIONS(940), 1, anon_sym_end, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4348), 1, + STATE(4336), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4282), 5, + STATE(4270), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -363950,30 +351980,30 @@ static const uint16_t ts_small_parse_table[] = { [228565] = 13, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1002), 1, + ACTIONS(940), 1, anon_sym_end, - ACTIONS(2875), 1, + ACTIONS(2793), 1, aux_sym__terminator_token1, - ACTIONS(5898), 1, + ACTIONS(5816), 1, anon_sym_SEMI, - STATE(142), 1, + STATE(143), 1, sym__terminator, - STATE(1021), 1, + STATE(1009), 1, aux_sym__terminator_repeat1, - STATE(4355), 1, + STATE(4343), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - STATE(4282), 5, + STATE(4270), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -363982,73 +352012,73 @@ static const uint16_t ts_small_parse_table[] = { [228610] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(1093), 1, + ACTIONS(1041), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(4405), 1, + STATE(4393), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(674), 2, + STATE(870), 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, + ACTIONS(5818), 3, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, [228646] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(1093), 1, + ACTIONS(1041), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(4405), 1, + STATE(4393), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(674), 2, + STATE(870), 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, + ACTIONS(5824), 3, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, [228682] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(331), 1, + ACTIONS(309), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364057,21 +352087,21 @@ static const uint16_t ts_small_parse_table[] = { [228713] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1030), 1, + 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, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364080,21 +352110,21 @@ static const uint16_t ts_small_parse_table[] = { [228744] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1042), 1, + 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, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364103,21 +352133,21 @@ static const uint16_t ts_small_parse_table[] = { [228775] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1020), 1, + 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, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364126,21 +352156,21 @@ static const uint16_t ts_small_parse_table[] = { [228806] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1014), 1, + 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, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364149,21 +352179,21 @@ static const uint16_t ts_small_parse_table[] = { [228837] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1036), 1, + 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, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364172,21 +352202,21 @@ static const uint16_t ts_small_parse_table[] = { [228868] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(347), 1, + ACTIONS(329), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364195,21 +352225,21 @@ static const uint16_t ts_small_parse_table[] = { [228899] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(5908), 1, + ACTIONS(5826), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364218,21 +352248,21 @@ static const uint16_t ts_small_parse_table[] = { [228930] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1052), 1, + ACTIONS(958), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364241,21 +352271,21 @@ static const uint16_t ts_small_parse_table[] = { [228961] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1006), 1, + ACTIONS(942), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364264,21 +352294,21 @@ static const uint16_t ts_small_parse_table[] = { [228992] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1028), 1, + 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, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364287,21 +352317,21 @@ static const uint16_t ts_small_parse_table[] = { [229023] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1046), 1, + 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, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364310,21 +352340,21 @@ static const uint16_t ts_small_parse_table[] = { [229054] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(986), 1, + ACTIONS(938), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364333,21 +352363,21 @@ static const uint16_t ts_small_parse_table[] = { [229085] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(355), 1, + ACTIONS(333), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364356,21 +352386,21 @@ static const uint16_t ts_small_parse_table[] = { [229116] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(5910), 1, + ACTIONS(5828), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364379,21 +352409,21 @@ static const uint16_t ts_small_parse_table[] = { [229147] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(5912), 1, + ACTIONS(5830), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364402,21 +352432,21 @@ static const uint16_t ts_small_parse_table[] = { [229178] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1022), 1, + ACTIONS(960), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364425,21 +352455,21 @@ static const uint16_t ts_small_parse_table[] = { [229209] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1024), 1, + 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, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364448,21 +352478,21 @@ static const uint16_t ts_small_parse_table[] = { [229240] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(343), 1, + ACTIONS(321), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364471,21 +352501,21 @@ static const uint16_t ts_small_parse_table[] = { [229271] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(339), 1, + ACTIONS(301), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364494,21 +352524,21 @@ static const uint16_t ts_small_parse_table[] = { [229302] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1044), 1, + ACTIONS(948), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364517,21 +352547,21 @@ static const uint16_t ts_small_parse_table[] = { [229333] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(319), 1, + ACTIONS(317), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364540,21 +352570,21 @@ static const uint16_t ts_small_parse_table[] = { [229364] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(323), 1, + ACTIONS(297), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364563,21 +352593,21 @@ static const uint16_t ts_small_parse_table[] = { [229395] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(5914), 1, + ACTIONS(5832), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364586,21 +352616,21 @@ static const uint16_t ts_small_parse_table[] = { [229426] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1050), 1, + ACTIONS(966), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364609,21 +352639,21 @@ static const uint16_t ts_small_parse_table[] = { [229457] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1010), 1, + ACTIONS(934), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364632,21 +352662,21 @@ static const uint16_t ts_small_parse_table[] = { [229488] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(996), 1, + 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, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364655,21 +352685,21 @@ static const uint16_t ts_small_parse_table[] = { [229519] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(335), 1, + ACTIONS(313), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364678,21 +352708,21 @@ static const uint16_t ts_small_parse_table[] = { [229550] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(5916), 1, + ACTIONS(5834), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364701,21 +352731,21 @@ static const uint16_t ts_small_parse_table[] = { [229581] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1016), 1, + ACTIONS(950), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364724,21 +352754,21 @@ static const uint16_t ts_small_parse_table[] = { [229612] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(976), 1, + 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, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364747,21 +352777,21 @@ static const uint16_t ts_small_parse_table[] = { [229643] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1012), 1, + ACTIONS(974), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364770,21 +352800,21 @@ static const uint16_t ts_small_parse_table[] = { [229674] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(988), 1, + ACTIONS(952), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364793,21 +352823,21 @@ static const uint16_t ts_small_parse_table[] = { [229705] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(311), 1, + ACTIONS(341), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364816,21 +352846,21 @@ static const uint16_t ts_small_parse_table[] = { [229736] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(5918), 1, + ACTIONS(5836), 1, anon_sym_after, - ACTIONS(5921), 1, + ACTIONS(5839), 1, anon_sym_catch, - ACTIONS(5924), 1, + ACTIONS(5842), 1, anon_sym_else, - ACTIONS(5927), 1, + ACTIONS(5845), 1, anon_sym_end, - ACTIONS(5929), 1, + ACTIONS(5847), 1, anon_sym_rescue, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364839,21 +352869,21 @@ static const uint16_t ts_small_parse_table[] = { [229767] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(5932), 1, + ACTIONS(5850), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364862,21 +352892,21 @@ static const uint16_t ts_small_parse_table[] = { [229798] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(994), 1, + ACTIONS(972), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364885,21 +352915,21 @@ static const uint16_t ts_small_parse_table[] = { [229829] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1000), 1, + ACTIONS(970), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364908,21 +352938,21 @@ static const uint16_t ts_small_parse_table[] = { [229860] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(5934), 1, + ACTIONS(5852), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364931,21 +352961,21 @@ static const uint16_t ts_small_parse_table[] = { [229891] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1040), 1, + ACTIONS(946), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364954,21 +352984,21 @@ static const uint16_t ts_small_parse_table[] = { [229922] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(5936), 1, + ACTIONS(5854), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -364977,21 +353007,21 @@ static const uint16_t ts_small_parse_table[] = { [229953] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(998), 1, + ACTIONS(962), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -365000,21 +353030,21 @@ static const uint16_t ts_small_parse_table[] = { [229984] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1034), 1, + ACTIONS(980), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -365023,21 +353053,21 @@ static const uint16_t ts_small_parse_table[] = { [230015] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(5938), 1, + ACTIONS(5856), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -365046,21 +353076,21 @@ static const uint16_t ts_small_parse_table[] = { [230046] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(990), 1, + ACTIONS(926), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -365069,21 +353099,21 @@ static const uint16_t ts_small_parse_table[] = { [230077] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1004), 1, + ACTIONS(968), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -365092,21 +353122,21 @@ static const uint16_t ts_small_parse_table[] = { [230108] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1038), 1, + ACTIONS(944), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -365115,21 +353145,21 @@ static const uint16_t ts_small_parse_table[] = { [230139] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1002), 1, + ACTIONS(940), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -365138,21 +353168,21 @@ static const uint16_t ts_small_parse_table[] = { [230170] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(5940), 1, + ACTIONS(5858), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -365161,21 +353191,21 @@ static const uint16_t ts_small_parse_table[] = { [230201] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1026), 1, + ACTIONS(982), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -365184,21 +353214,21 @@ static const uint16_t ts_small_parse_table[] = { [230232] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(351), 1, + ACTIONS(305), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -365207,21 +353237,21 @@ static const uint16_t ts_small_parse_table[] = { [230263] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1018), 1, + ACTIONS(954), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -365230,21 +353260,21 @@ static const uint16_t ts_small_parse_table[] = { [230294] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(5942), 1, + ACTIONS(5860), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -365253,21 +353283,21 @@ static const uint16_t ts_small_parse_table[] = { [230325] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1008), 1, + ACTIONS(936), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -365276,21 +353306,21 @@ static const uint16_t ts_small_parse_table[] = { [230356] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1048), 1, + ACTIONS(964), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -365299,21 +353329,21 @@ static const uint16_t ts_small_parse_table[] = { [230387] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(1032), 1, + ACTIONS(978), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -365322,21 +353352,21 @@ static const uint16_t ts_small_parse_table[] = { [230418] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(5944), 1, + ACTIONS(5862), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -365345,21 +353375,21 @@ static const uint16_t ts_small_parse_table[] = { [230449] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(327), 1, + ACTIONS(337), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -365368,21 +353398,21 @@ static const uint16_t ts_small_parse_table[] = { [230480] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(992), 1, + 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, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -365391,21 +353421,21 @@ static const uint16_t ts_small_parse_table[] = { [230511] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(315), 1, + ACTIONS(325), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -365414,21 +353444,21 @@ static const uint16_t ts_small_parse_table[] = { [230542] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(107), 1, + ACTIONS(99), 1, anon_sym_after, - ACTIONS(109), 1, + ACTIONS(101), 1, anon_sym_catch, - ACTIONS(111), 1, + ACTIONS(103), 1, anon_sym_else, - ACTIONS(117), 1, + ACTIONS(109), 1, anon_sym_rescue, - ACTIONS(984), 1, + ACTIONS(956), 1, anon_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - STATE(4304), 5, + STATE(4292), 5, sym_after_block, sym_rescue_block, sym_catch_block, @@ -365437,20 +353467,20 @@ static const uint16_t ts_small_parse_table[] = { [230573] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4342), 1, + STATE(4330), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(668), 5, + ACTIONS(656), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365459,20 +353489,20 @@ static const uint16_t ts_small_parse_table[] = { [230603] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(2793), 1, aux_sym__terminator_token1, - ACTIONS(5876), 1, + ACTIONS(5864), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(335), 1, sym__terminator, - STATE(1026), 1, + STATE(1009), 1, aux_sym__terminator_repeat1, - STATE(4348), 1, - aux_sym_block_repeat1, + STATE(4343), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1521), 5, + ACTIONS(1415), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365481,20 +353511,20 @@ static const uint16_t ts_small_parse_table[] = { [230633] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4348), 1, + STATE(4336), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1497), 5, + ACTIONS(1401), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365503,20 +353533,20 @@ static const uint16_t ts_small_parse_table[] = { [230663] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(5946), 1, + ACTIONS(5866), 1, aux_sym__terminator_token1, - ACTIONS(5949), 1, + ACTIONS(5869), 1, anon_sym_SEMI, - STATE(734), 1, + STATE(776), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4334), 1, + STATE(4322), 1, aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4345), 5, + ACTIONS(4263), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365525,20 +353555,20 @@ static const uint16_t ts_small_parse_table[] = { [230693] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4354), 1, + STATE(4342), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(686), 5, + ACTIONS(642), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365547,20 +353577,20 @@ static const uint16_t ts_small_parse_table[] = { [230723] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2875), 1, + ACTIONS(2793), 1, aux_sym__terminator_token1, - ACTIONS(5952), 1, + ACTIONS(5872), 1, anon_sym_SEMI, - STATE(299), 1, + STATE(332), 1, sym__terminator, - STATE(1021), 1, + STATE(1009), 1, aux_sym__terminator_repeat1, - STATE(4355), 1, + STATE(4343), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1491), 5, + ACTIONS(1397), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365569,20 +353599,20 @@ static const uint16_t ts_small_parse_table[] = { [230753] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4348), 1, + STATE(4336), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1491), 5, + ACTIONS(1397), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365591,20 +353621,20 @@ static const uint16_t ts_small_parse_table[] = { [230783] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2875), 1, + ACTIONS(2793), 1, aux_sym__terminator_token1, - ACTIONS(5954), 1, + ACTIONS(5874), 1, anon_sym_SEMI, - STATE(338), 1, + STATE(334), 1, sym__terminator, - STATE(1021), 1, + STATE(1009), 1, aux_sym__terminator_repeat1, - STATE(4355), 1, + STATE(4343), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1521), 5, + ACTIONS(1407), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365613,20 +353643,20 @@ static const uint16_t ts_small_parse_table[] = { [230813] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4361), 1, + STATE(4349), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(696), 5, + ACTIONS(646), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365635,20 +353665,20 @@ static const uint16_t ts_small_parse_table[] = { [230843] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2875), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(5956), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(336), 1, + STATE(134), 1, sym__terminator, - STATE(1021), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4355), 1, - aux_sym_block_repeat2, + STATE(4336), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1525), 5, + ACTIONS(1407), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365657,20 +353687,20 @@ static const uint16_t ts_small_parse_table[] = { [230873] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4348), 1, + STATE(4336), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1525), 5, + ACTIONS(1415), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365679,20 +353709,20 @@ static const uint16_t ts_small_parse_table[] = { [230903] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4348), 1, + STATE(4336), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1431), 5, + ACTIONS(1379), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365701,20 +353731,20 @@ static const uint16_t ts_small_parse_table[] = { [230933] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4351), 1, + STATE(4339), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(664), 5, + ACTIONS(626), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365723,20 +353753,20 @@ static const uint16_t ts_small_parse_table[] = { [230963] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2875), 1, + ACTIONS(2793), 1, aux_sym__terminator_token1, - ACTIONS(3102), 1, + ACTIONS(2962), 1, anon_sym_SEMI, - STATE(342), 1, + STATE(324), 1, sym__terminator, - STATE(1021), 1, + STATE(1009), 1, aux_sym__terminator_repeat1, - STATE(4355), 1, + STATE(4343), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1431), 5, + ACTIONS(1379), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365745,20 +353775,20 @@ static const uint16_t ts_small_parse_table[] = { [230993] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(3687), 1, + ACTIONS(3704), 1, aux_sym__terminator_token1, - ACTIONS(3690), 1, + ACTIONS(3707), 1, anon_sym_SEMI, STATE(261), 1, sym__terminator, - STATE(1022), 1, + STATE(1008), 1, aux_sym__terminator_repeat1, - STATE(4334), 1, + STATE(4322), 1, aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1323), 5, + ACTIONS(1267), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365767,20 +353797,20 @@ static const uint16_t ts_small_parse_table[] = { [231023] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4341), 1, + STATE(4329), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1431), 5, + ACTIONS(1379), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365789,20 +353819,20 @@ static const uint16_t ts_small_parse_table[] = { [231053] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2875), 1, + ACTIONS(2793), 1, aux_sym__terminator_token1, - ACTIONS(5958), 1, + ACTIONS(5876), 1, anon_sym_SEMI, - STATE(344), 1, + STATE(333), 1, sym__terminator, - STATE(1021), 1, + STATE(1009), 1, aux_sym__terminator_repeat1, - STATE(4355), 1, + STATE(4343), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1497), 5, + ACTIONS(1401), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365811,20 +353841,20 @@ static const uint16_t ts_small_parse_table[] = { [231083] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(5960), 1, + ACTIONS(5878), 1, aux_sym__terminator_token1, - ACTIONS(5963), 1, + ACTIONS(5881), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4348), 1, + STATE(4336), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5966), 5, + ACTIONS(5884), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365833,20 +353863,20 @@ static const uint16_t ts_small_parse_table[] = { [231113] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(5968), 1, + ACTIONS(5886), 1, aux_sym__terminator_token1, - ACTIONS(5971), 1, + ACTIONS(5889), 1, anon_sym_SEMI, STATE(262), 1, sym__terminator, - STATE(1022), 1, + STATE(1008), 1, aux_sym__terminator_repeat1, - STATE(4334), 1, + STATE(4322), 1, aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1329), 5, + ACTIONS(1273), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365855,21 +353885,21 @@ static const uint16_t ts_small_parse_table[] = { [231143] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(1161), 1, + ACTIONS(1103), 1, sym_keyword, - ACTIONS(5900), 1, + ACTIONS(5818), 1, anon_sym_GT_GT, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(4405), 1, + STATE(4393), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(759), 2, + STATE(673), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -365879,20 +353909,20 @@ static const uint16_t ts_small_parse_table[] = { [231177] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4348), 1, + STATE(4336), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1407), 5, + ACTIONS(1311), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365901,20 +353931,20 @@ static const uint16_t ts_small_parse_table[] = { [231207] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4337), 1, + STATE(4325), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1383), 5, + ACTIONS(1309), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365923,20 +353953,20 @@ static const uint16_t ts_small_parse_table[] = { [231237] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2875), 1, + ACTIONS(2793), 1, aux_sym__terminator_token1, - ACTIONS(3024), 1, + ACTIONS(2984), 1, anon_sym_SEMI, - STATE(329), 1, + STATE(311), 1, sym__terminator, - STATE(1021), 1, + STATE(1009), 1, aux_sym__terminator_repeat1, - STATE(4355), 1, + STATE(4343), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1383), 5, + ACTIONS(1309), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365945,20 +353975,20 @@ static const uint16_t ts_small_parse_table[] = { [231267] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4348), 1, + STATE(4336), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1383), 5, + ACTIONS(1309), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365967,20 +353997,20 @@ static const uint16_t ts_small_parse_table[] = { [231297] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(5974), 1, + ACTIONS(5892), 1, aux_sym__terminator_token1, - ACTIONS(5977), 1, + ACTIONS(5895), 1, anon_sym_SEMI, - STATE(695), 1, + STATE(896), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4355), 1, + STATE(4343), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(4393), 5, + ACTIONS(4311), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -365989,20 +354019,20 @@ static const uint16_t ts_small_parse_table[] = { [231327] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4333), 1, + STATE(4321), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1395), 5, + ACTIONS(1365), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -366011,21 +354041,21 @@ static const uint16_t ts_small_parse_table[] = { [231357] = 10, ACTIONS(5), 1, sym_comment, - ACTIONS(1161), 1, + ACTIONS(1103), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - ACTIONS(5906), 1, + ACTIONS(5824), 1, anon_sym_GT_GT, - STATE(4405), 1, + STATE(4393), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(759), 2, + STATE(673), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366035,20 +354065,20 @@ static const uint16_t ts_small_parse_table[] = { [231391] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2875), 1, + ACTIONS(2793), 1, aux_sym__terminator_token1, - ACTIONS(3068), 1, + ACTIONS(2978), 1, anon_sym_SEMI, - STATE(332), 1, + STATE(313), 1, sym__terminator, - STATE(1021), 1, + STATE(1009), 1, aux_sym__terminator_repeat1, - STATE(4355), 1, + STATE(4343), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1395), 5, + ACTIONS(1365), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -366057,20 +354087,20 @@ static const uint16_t ts_small_parse_table[] = { [231421] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(2875), 1, + ACTIONS(2793), 1, aux_sym__terminator_token1, - ACTIONS(3104), 1, + ACTIONS(2976), 1, anon_sym_SEMI, - STATE(339), 1, + STATE(319), 1, sym__terminator, - STATE(1021), 1, + STATE(1009), 1, aux_sym__terminator_repeat1, - STATE(4355), 1, + STATE(4343), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1407), 5, + ACTIONS(1311), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -366079,20 +354109,20 @@ static const uint16_t ts_small_parse_table[] = { [231451] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4332), 1, + STATE(4328), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1407), 5, + ACTIONS(1311), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -366101,20 +354131,20 @@ static const uint16_t ts_small_parse_table[] = { [231481] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(5876), 1, + ACTIONS(5794), 1, anon_sym_SEMI, - STATE(132), 1, + STATE(134), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4348), 1, + STATE(4336), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(1395), 5, + ACTIONS(1365), 5, anon_sym_after, anon_sym_catch, anon_sym_else, @@ -366123,19 +354153,19 @@ static const uint16_t ts_small_parse_table[] = { [231511] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(1483), 1, + ACTIONS(1359), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(3706), 1, + STATE(3694), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(564), 2, + STATE(562), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366145,19 +354175,19 @@ static const uint16_t ts_small_parse_table[] = { [231542] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(1161), 1, + ACTIONS(1103), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(4405), 1, + STATE(4393), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(759), 2, + STATE(673), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366167,15 +354197,15 @@ static const uint16_t ts_small_parse_table[] = { [231573] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5980), 1, + ACTIONS(5898), 1, anon_sym_AMP, - ACTIONS(5984), 1, + ACTIONS(5902), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5982), 6, + ACTIONS(5900), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -366185,15 +354215,15 @@ static const uint16_t ts_small_parse_table[] = { [231596] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5986), 1, + ACTIONS(5904), 1, anon_sym_AMP, - ACTIONS(5990), 1, + ACTIONS(5908), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5988), 6, + ACTIONS(5906), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -366203,15 +354233,15 @@ static const uint16_t ts_small_parse_table[] = { [231619] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5992), 1, + ACTIONS(5910), 1, anon_sym_AMP, - ACTIONS(5996), 1, + ACTIONS(5914), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5994), 6, + ACTIONS(5912), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -366221,19 +354251,19 @@ static const uint16_t ts_small_parse_table[] = { [231642] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(221), 1, + ACTIONS(260), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(1293), 1, + STATE(1240), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(826), 2, + STATE(894), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366243,15 +354273,15 @@ static const uint16_t ts_small_parse_table[] = { [231673] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5998), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(6002), 1, + ACTIONS(5920), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6000), 6, + ACTIONS(5918), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -366261,15 +354291,15 @@ static const uint16_t ts_small_parse_table[] = { [231696] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6004), 1, + ACTIONS(5922), 1, anon_sym_AMP, - ACTIONS(6008), 1, + ACTIONS(5926), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6006), 6, + ACTIONS(5924), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -366279,19 +354309,19 @@ static const uint16_t ts_small_parse_table[] = { [231719] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(674), 1, + ACTIONS(630), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(2096), 1, + STATE(2085), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(642), 2, + STATE(737), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366301,19 +354331,19 @@ static const uint16_t ts_small_parse_table[] = { [231750] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(1475), 1, + ACTIONS(1389), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(1594), 1, + STATE(1590), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(560), 2, + STATE(647), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366323,19 +354353,19 @@ static const uint16_t ts_small_parse_table[] = { [231781] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, + ACTIONS(85), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(3670), 1, + STATE(3658), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(581), 2, + STATE(856), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366345,19 +354375,19 @@ static const uint16_t ts_small_parse_table[] = { [231812] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(446), 1, + ACTIONS(443), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(1509), 1, + STATE(1461), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(799), 2, + STATE(874), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366367,15 +354397,15 @@ static const uint16_t ts_small_parse_table[] = { [231843] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6010), 1, + ACTIONS(5928), 1, anon_sym_AMP, - ACTIONS(6014), 1, + ACTIONS(5932), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6012), 6, + ACTIONS(5930), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -366385,19 +354415,19 @@ static const uint16_t ts_small_parse_table[] = { [231866] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(469), 1, + ACTIONS(424), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(1293), 1, + STATE(1240), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(873), 2, + STATE(612), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366407,15 +354437,15 @@ static const uint16_t ts_small_parse_table[] = { [231897] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6016), 1, + ACTIONS(5934), 1, anon_sym_AMP, - ACTIONS(6020), 1, + ACTIONS(5938), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6018), 6, + ACTIONS(5936), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -366425,15 +354455,15 @@ static const uint16_t ts_small_parse_table[] = { [231920] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6022), 1, + ACTIONS(5940), 1, anon_sym_AMP, - ACTIONS(6026), 1, + ACTIONS(5944), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6024), 6, + ACTIONS(5942), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -366443,19 +354473,19 @@ static const uint16_t ts_small_parse_table[] = { [231943] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(1389), 1, + ACTIONS(1413), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(1879), 1, + STATE(1865), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(882), 2, + STATE(681), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366465,15 +354495,15 @@ static const uint16_t ts_small_parse_table[] = { [231974] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6028), 1, + ACTIONS(5946), 1, anon_sym_AMP, - ACTIONS(6032), 1, + ACTIONS(5950), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6030), 6, + ACTIONS(5948), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -366483,19 +354513,19 @@ static const uint16_t ts_small_parse_table[] = { [231997] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(1093), 1, + ACTIONS(1041), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(3057), 1, + STATE(3034), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(674), 2, + STATE(870), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366505,19 +354535,19 @@ static const uint16_t ts_small_parse_table[] = { [232028] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(1447), 1, + ACTIONS(1285), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(1879), 1, + STATE(1865), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(888), 2, + STATE(775), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366527,15 +354557,15 @@ static const uint16_t ts_small_parse_table[] = { [232059] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6034), 1, + ACTIONS(5952), 1, anon_sym_AMP, - ACTIONS(6038), 1, + ACTIONS(5956), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6036), 6, + ACTIONS(5954), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -366545,15 +354575,15 @@ static const uint16_t ts_small_parse_table[] = { [232082] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6040), 1, + ACTIONS(5958), 1, anon_sym_AMP, - ACTIONS(6044), 1, + ACTIONS(5962), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6042), 6, + ACTIONS(5960), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -366563,15 +354593,15 @@ static const uint16_t ts_small_parse_table[] = { [232105] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6046), 1, + ACTIONS(5964), 1, anon_sym_AMP, - ACTIONS(6050), 1, + ACTIONS(5968), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6048), 6, + ACTIONS(5966), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -366581,19 +354611,19 @@ static const uint16_t ts_small_parse_table[] = { [232128] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(1093), 1, + ACTIONS(1041), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(4405), 1, + STATE(4393), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(674), 2, + STATE(870), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366603,15 +354633,15 @@ static const uint16_t ts_small_parse_table[] = { [232159] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6052), 1, + ACTIONS(5970), 1, anon_sym_AMP, - ACTIONS(6056), 1, + ACTIONS(5974), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6054), 6, + ACTIONS(5972), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -366621,19 +354651,19 @@ static const uint16_t ts_small_parse_table[] = { [232182] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(635), 1, + ACTIONS(548), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(3307), 1, + STATE(3296), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(465), 2, + STATE(476), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366643,15 +354673,15 @@ static const uint16_t ts_small_parse_table[] = { [232213] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6058), 1, + ACTIONS(5976), 1, anon_sym_AMP, - ACTIONS(6062), 1, + ACTIONS(5980), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6060), 6, + ACTIONS(5978), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -366661,19 +354691,19 @@ static const uint16_t ts_small_parse_table[] = { [232236] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(580), 1, + ACTIONS(594), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(3125), 1, + STATE(2854), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(480), 2, + STATE(850), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366683,19 +354713,19 @@ static const uint16_t ts_small_parse_table[] = { [232267] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(276), 1, + ACTIONS(212), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(1509), 1, + STATE(1461), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(887), 2, + STATE(756), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366705,19 +354735,19 @@ static const uint16_t ts_small_parse_table[] = { [232298] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(93), 1, + ACTIONS(85), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(4405), 1, + STATE(4393), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(581), 2, + STATE(856), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366727,19 +354757,19 @@ static const uint16_t ts_small_parse_table[] = { [232329] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(529), 1, + ACTIONS(494), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(2888), 1, + STATE(2870), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(780), 2, + STATE(473), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366749,19 +354779,19 @@ static const uint16_t ts_small_parse_table[] = { [232360] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(391), 1, + ACTIONS(367), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(2096), 1, + STATE(2085), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(511), 2, + STATE(510), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366771,19 +354801,19 @@ static const uint16_t ts_small_parse_table[] = { [232391] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(1161), 1, + ACTIONS(1355), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(4045), 1, + STATE(1865), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(759), 2, + STATE(899), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366793,19 +354823,19 @@ static const uint16_t ts_small_parse_table[] = { [232422] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(1355), 1, + ACTIONS(1103), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(1879), 1, + STATE(4033), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(834), 2, + STATE(673), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366815,19 +354845,19 @@ static const uint16_t ts_small_parse_table[] = { [232453] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(1341), 1, + ACTIONS(1459), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(1594), 1, + STATE(1590), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(883), 2, + STATE(700), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366837,15 +354867,15 @@ static const uint16_t ts_small_parse_table[] = { [232484] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(5982), 1, anon_sym_AMP, - ACTIONS(6068), 1, + ACTIONS(5986), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6066), 6, + ACTIONS(5984), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -366855,15 +354885,15 @@ static const uint16_t ts_small_parse_table[] = { [232507] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6070), 1, + ACTIONS(5988), 1, anon_sym_AMP, - ACTIONS(6074), 1, + ACTIONS(5992), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6072), 6, + ACTIONS(5990), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -366873,19 +354903,19 @@ static const uint16_t ts_small_parse_table[] = { [232530] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(1503), 1, + ACTIONS(1439), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(3057), 1, + STATE(3034), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(853), 2, + STATE(906), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366895,15 +354925,15 @@ static const uint16_t ts_small_parse_table[] = { [232561] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6076), 1, + ACTIONS(5994), 1, anon_sym_AMP, - ACTIONS(6080), 1, + ACTIONS(5998), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6078), 6, + ACTIONS(5996), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -366913,19 +354943,19 @@ static const uint16_t ts_small_parse_table[] = { [232584] = 9, ACTIONS(5), 1, sym_comment, - ACTIONS(488), 1, + ACTIONS(457), 1, sym_keyword, - ACTIONS(5902), 1, + ACTIONS(5820), 1, anon_sym_DQUOTE, - ACTIONS(5904), 1, + ACTIONS(5822), 1, anon_sym_SQUOTE, - STATE(1509), 1, + STATE(1461), 1, sym_pair, - STATE(5559), 1, + STATE(5545), 1, sym__quoted_i_double, - STATE(5565), 1, + STATE(5552), 1, sym__quoted_i_single, - STATE(505), 2, + STATE(522), 2, sym__keyword, sym_quoted_keyword, ACTIONS(3), 3, @@ -366935,15 +354965,15 @@ static const uint16_t ts_small_parse_table[] = { [232615] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6082), 1, + ACTIONS(6000), 1, anon_sym_AMP, - ACTIONS(6086), 1, + ACTIONS(6004), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6084), 6, + ACTIONS(6002), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -366953,15 +354983,15 @@ static const uint16_t ts_small_parse_table[] = { [232638] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6088), 1, + ACTIONS(6006), 1, anon_sym_AMP, - ACTIONS(6092), 1, + ACTIONS(6010), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6090), 6, + ACTIONS(6008), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -366971,15 +355001,15 @@ static const uint16_t ts_small_parse_table[] = { [232661] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(6094), 1, + ACTIONS(6012), 1, anon_sym_AMP, - ACTIONS(6098), 1, + ACTIONS(6016), 1, anon_sym_AT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(6096), 6, + ACTIONS(6014), 6, anon_sym_PLUS, anon_sym_DASH, anon_sym_BANG, @@ -366993,7 +355023,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3136), 7, + ACTIONS(3313), 7, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, @@ -367004,12 +355034,12 @@ static const uint16_t ts_small_parse_table[] = { [232702] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(6100), 1, + ACTIONS(6018), 1, aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(5966), 7, + ACTIONS(5884), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_after, @@ -367020,12 +355050,12 @@ static const uint16_t ts_small_parse_table[] = { [232722] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(6102), 1, + ACTIONS(6020), 1, aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(6104), 7, + ACTIONS(6022), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_after, @@ -367036,12 +355066,12 @@ static const uint16_t ts_small_parse_table[] = { [232742] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(6106), 1, + ACTIONS(6024), 1, aux_sym__terminator_token1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(6108), 7, + ACTIONS(6026), 7, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_after, @@ -367050,13 +355080,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_end, anon_sym_rescue, [232762] = 7, - ACTIONS(6110), 1, + ACTIONS(6028), 1, anon_sym_RBRACE, - ACTIONS(6112), 1, + ACTIONS(6030), 1, anon_sym_POUND_LBRACE, - ACTIONS(6114), 1, + ACTIONS(6032), 1, sym_escape_sequence, - ACTIONS(6116), 1, + ACTIONS(6034), 1, sym__quoted_content_i_curly, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367064,17 +355094,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4886), 2, + STATE(4874), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, [232787] = 7, - ACTIONS(6118), 1, + ACTIONS(6036), 1, anon_sym_SLASH, - ACTIONS(6120), 1, + ACTIONS(6038), 1, anon_sym_POUND_LBRACE, - ACTIONS(6122), 1, + ACTIONS(6040), 1, sym_escape_sequence, - ACTIONS(6124), 1, + ACTIONS(6042), 1, sym__quoted_content_i_slash, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367082,17 +355112,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4548), 2, + STATE(4536), 2, sym_interpolation, aux_sym__quoted_i_slash_repeat1, [232812] = 7, - ACTIONS(6126), 1, + ACTIONS(6044), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6128), 1, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(6130), 1, + ACTIONS(6048), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6050), 1, sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367100,17 +355130,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4483), 2, + STATE(4471), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, [232837] = 7, - ACTIONS(6134), 1, + ACTIONS(6052), 1, anon_sym_DQUOTE, - ACTIONS(6136), 1, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(6138), 1, + ACTIONS(6056), 1, sym_escape_sequence, - ACTIONS(6140), 1, + ACTIONS(6058), 1, sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367118,17 +355148,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4433), 2, + STATE(4421), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, [232862] = 7, - ACTIONS(6142), 1, + ACTIONS(6060), 1, anon_sym_SQUOTE, - ACTIONS(6144), 1, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(6146), 1, + ACTIONS(6064), 1, sym_escape_sequence, - ACTIONS(6148), 1, + ACTIONS(6066), 1, sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367136,17 +355166,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4434), 2, + STATE(4422), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, [232887] = 7, - ACTIONS(6150), 1, + ACTIONS(6068), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6152), 1, + ACTIONS(6070), 1, anon_sym_POUND_LBRACE, - ACTIONS(6154), 1, + ACTIONS(6072), 1, sym_escape_sequence, - ACTIONS(6156), 1, + ACTIONS(6074), 1, sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367154,17 +355184,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4435), 2, + STATE(4423), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, [232912] = 7, - ACTIONS(6120), 1, + ACTIONS(6038), 1, anon_sym_POUND_LBRACE, - ACTIONS(6158), 1, + ACTIONS(6076), 1, anon_sym_SLASH, - ACTIONS(6160), 1, + ACTIONS(6078), 1, sym_escape_sequence, - ACTIONS(6162), 1, + ACTIONS(6080), 1, sym__quoted_content_i_slash, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367172,17 +355202,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4475), 2, + STATE(4463), 2, sym_interpolation, aux_sym__quoted_i_slash_repeat1, [232937] = 7, - ACTIONS(6128), 1, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(6164), 1, + ACTIONS(6082), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6166), 1, + ACTIONS(6084), 1, sym_escape_sequence, - ACTIONS(6168), 1, + ACTIONS(6086), 1, sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367190,17 +355220,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4437), 2, + STATE(4425), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, [232962] = 7, - ACTIONS(6136), 1, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(6170), 1, + ACTIONS(6088), 1, anon_sym_DQUOTE, - ACTIONS(6172), 1, + ACTIONS(6090), 1, sym_escape_sequence, - ACTIONS(6174), 1, + ACTIONS(6092), 1, sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367208,17 +355238,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4436), 2, + STATE(4424), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, [232987] = 7, - ACTIONS(6176), 1, + ACTIONS(6094), 1, anon_sym_PIPE, - ACTIONS(6178), 1, + ACTIONS(6096), 1, anon_sym_POUND_LBRACE, - ACTIONS(6180), 1, + ACTIONS(6098), 1, sym_escape_sequence, - ACTIONS(6182), 1, + ACTIONS(6100), 1, sym__quoted_content_i_bar, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367226,17 +355256,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4462), 2, + STATE(4450), 2, sym_interpolation, aux_sym__quoted_i_bar_repeat1, [233012] = 7, - ACTIONS(6184), 1, + ACTIONS(6102), 1, anon_sym_GT, - ACTIONS(6186), 1, + ACTIONS(6104), 1, anon_sym_POUND_LBRACE, - ACTIONS(6188), 1, + ACTIONS(6106), 1, sym_escape_sequence, - ACTIONS(6190), 1, + ACTIONS(6108), 1, sym__quoted_content_i_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367244,17 +355274,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4460), 2, + STATE(4448), 2, sym_interpolation, aux_sym__quoted_i_angle_repeat1, [233037] = 7, - ACTIONS(6192), 1, + ACTIONS(6110), 1, anon_sym_RBRACK, - ACTIONS(6194), 1, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, - ACTIONS(6196), 1, + ACTIONS(6114), 1, sym_escape_sequence, - ACTIONS(6198), 1, + ACTIONS(6116), 1, sym__quoted_content_i_square, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367262,17 +355292,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4459), 2, + STATE(4447), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, [233062] = 7, - ACTIONS(6200), 1, + ACTIONS(6118), 1, anon_sym_RPAREN, - ACTIONS(6202), 1, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(6204), 1, + ACTIONS(6122), 1, sym_escape_sequence, - ACTIONS(6206), 1, + ACTIONS(6124), 1, sym__quoted_content_i_parenthesis, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367280,17 +355310,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4453), 2, + STATE(4441), 2, sym_interpolation, aux_sym__quoted_i_parenthesis_repeat1, [233087] = 7, - ACTIONS(6112), 1, + ACTIONS(6030), 1, anon_sym_POUND_LBRACE, - ACTIONS(6208), 1, + ACTIONS(6126), 1, anon_sym_RBRACE, - ACTIONS(6210), 1, + ACTIONS(6128), 1, sym_escape_sequence, - ACTIONS(6212), 1, + ACTIONS(6130), 1, sym__quoted_content_i_curly, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367298,17 +355328,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4454), 2, + STATE(4442), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, [233112] = 7, - ACTIONS(6194), 1, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, - ACTIONS(6214), 1, + ACTIONS(6132), 1, anon_sym_RBRACK, - ACTIONS(6216), 1, + ACTIONS(6134), 1, sym_escape_sequence, - ACTIONS(6218), 1, + ACTIONS(6136), 1, sym__quoted_content_i_square, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367316,17 +355346,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4455), 2, + STATE(4443), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, [233137] = 7, - ACTIONS(6186), 1, + ACTIONS(6104), 1, anon_sym_POUND_LBRACE, - ACTIONS(6220), 1, + ACTIONS(6138), 1, anon_sym_GT, - ACTIONS(6222), 1, + ACTIONS(6140), 1, sym_escape_sequence, - ACTIONS(6224), 1, + ACTIONS(6142), 1, sym__quoted_content_i_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367334,17 +355364,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4456), 2, + STATE(4444), 2, sym_interpolation, aux_sym__quoted_i_angle_repeat1, [233162] = 7, - ACTIONS(6178), 1, + ACTIONS(6096), 1, anon_sym_POUND_LBRACE, - ACTIONS(6226), 1, + ACTIONS(6144), 1, anon_sym_PIPE, - ACTIONS(6228), 1, + ACTIONS(6146), 1, sym_escape_sequence, - ACTIONS(6230), 1, + ACTIONS(6148), 1, sym__quoted_content_i_bar, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367352,54 +355382,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4457), 2, + STATE(4445), 2, sym_interpolation, aux_sym__quoted_i_bar_repeat1, [233187] = 7, - ACTIONS(6120), 1, + ACTIONS(6038), 1, anon_sym_POUND_LBRACE, - ACTIONS(6232), 1, + ACTIONS(6150), 1, anon_sym_SLASH, - ACTIONS(6234), 1, - sym_escape_sequence, - ACTIONS(6236), 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(4458), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [233212] = 7, - ACTIONS(6144), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6238), 1, - anon_sym_SQUOTE, - ACTIONS(6240), 1, - sym_escape_sequence, - ACTIONS(6242), 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(4438), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [233237] = 7, ACTIONS(6152), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6244), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6246), 1, sym_escape_sequence, - ACTIONS(6248), 1, - sym__quoted_content_i_heredoc_single, + ACTIONS(6154), 1, + sym__quoted_content_i_slash, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -367407,10 +355401,424 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, STATE(4446), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [233212] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + 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(4426), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [233237] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6162), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6164), 1, + sym_escape_sequence, + ACTIONS(6166), 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(4434), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, [233262] = 7, - ACTIONS(6128), 1, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6168), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6170), 1, + sym_escape_sequence, + ACTIONS(6172), 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(4435), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [233287] = 7, + ACTIONS(6030), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6174), 1, + anon_sym_RBRACE, + ACTIONS(6176), 1, + sym_escape_sequence, + ACTIONS(6178), 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(4440), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [233312] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6180), 1, + anon_sym_RPAREN, + ACTIONS(6182), 1, + sym_escape_sequence, + ACTIONS(6184), 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(4439), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [233337] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6186), 1, + anon_sym_SLASH, + ACTIONS(6188), 1, + sym_escape_sequence, + ACTIONS(6190), 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(4486), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [233362] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6192), 1, + anon_sym_DQUOTE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [233387] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6198), 1, + anon_sym_SQUOTE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [233412] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6204), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(6208), 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(4470), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [233437] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, + sym__quoted_content_i_double, + ACTIONS(6210), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [233462] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6212), 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [233487] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(6214), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [233512] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6216), 1, + anon_sym_PIPE, + ACTIONS(6218), 1, + sym_escape_sequence, + ACTIONS(6220), 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(4477), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [233537] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6222), 1, + anon_sym_GT, + ACTIONS(6224), 1, + sym_escape_sequence, + ACTIONS(6226), 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(4472), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [233562] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6228), 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [233587] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6230), 1, + anon_sym_RPAREN, + ACTIONS(6232), 1, + sym_escape_sequence, + ACTIONS(6234), 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(4573), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [233612] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(6236), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [233637] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, + sym__quoted_content_i_double, + ACTIONS(6238), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [233662] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(6208), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6240), 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(4470), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [233687] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(6208), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6242), 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(4470), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [233712] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6244), 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [233737] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(6246), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [233762] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, + sym__quoted_content_i_double, + ACTIONS(6248), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [233787] = 7, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, ACTIONS(6250), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, @@ -367424,395 +355832,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4447), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [233287] = 7, - ACTIONS(6112), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6256), 1, - anon_sym_RBRACE, - ACTIONS(6258), 1, - sym_escape_sequence, - 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(4452), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [233312] = 7, - ACTIONS(6202), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6262), 1, - anon_sym_RPAREN, - ACTIONS(6264), 1, - sym_escape_sequence, - ACTIONS(6266), 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(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, + STATE(4399), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, [233812] = 7, - ACTIONS(6202), 1, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6232), 1, sym_escape_sequence, - ACTIONS(6316), 1, + ACTIONS(6234), 1, sym__quoted_content_i_parenthesis, - ACTIONS(6338), 1, + ACTIONS(6256), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367820,17 +355850,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4585), 2, + STATE(4573), 2, sym_interpolation, aux_sym__quoted_i_parenthesis_repeat1, [233837] = 7, - ACTIONS(6112), 1, + ACTIONS(6030), 1, anon_sym_POUND_LBRACE, - ACTIONS(6340), 1, + ACTIONS(6258), 1, anon_sym_RBRACE, - ACTIONS(6342), 1, + ACTIONS(6260), 1, sym_escape_sequence, - ACTIONS(6344), 1, + ACTIONS(6262), 1, sym__quoted_content_i_curly, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367838,17 +355868,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4582), 2, + STATE(4570), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, [233862] = 7, - ACTIONS(6202), 1, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6232), 1, sym_escape_sequence, - ACTIONS(6316), 1, + ACTIONS(6234), 1, sym__quoted_content_i_parenthesis, - ACTIONS(6346), 1, + ACTIONS(6264), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367856,17 +355886,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4585), 2, + STATE(4573), 2, sym_interpolation, aux_sym__quoted_i_parenthesis_repeat1, [233887] = 7, - ACTIONS(6112), 1, + ACTIONS(6030), 1, anon_sym_POUND_LBRACE, - ACTIONS(6342), 1, + ACTIONS(6260), 1, sym_escape_sequence, - ACTIONS(6344), 1, + ACTIONS(6262), 1, sym__quoted_content_i_curly, - ACTIONS(6348), 1, + ACTIONS(6266), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367874,17 +355904,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4582), 2, + STATE(4570), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, [233912] = 7, - ACTIONS(6194), 1, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, - ACTIONS(6350), 1, + ACTIONS(6268), 1, anon_sym_RBRACK, - ACTIONS(6352), 1, + ACTIONS(6270), 1, sym_escape_sequence, - ACTIONS(6354), 1, + ACTIONS(6272), 1, sym__quoted_content_i_square, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367892,17 +355922,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4561), 2, + STATE(4549), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, [233937] = 7, - ACTIONS(6186), 1, + ACTIONS(6104), 1, anon_sym_POUND_LBRACE, - ACTIONS(6356), 1, + ACTIONS(6274), 1, anon_sym_GT, - ACTIONS(6358), 1, + ACTIONS(6276), 1, sym_escape_sequence, - ACTIONS(6360), 1, + ACTIONS(6278), 1, sym__quoted_content_i_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367910,17 +355940,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4552), 2, + STATE(4540), 2, sym_interpolation, aux_sym__quoted_i_angle_repeat1, [233962] = 7, - ACTIONS(6178), 1, + ACTIONS(6096), 1, anon_sym_POUND_LBRACE, - ACTIONS(6362), 1, + ACTIONS(6280), 1, anon_sym_PIPE, - ACTIONS(6364), 1, + ACTIONS(6282), 1, sym_escape_sequence, - ACTIONS(6366), 1, + ACTIONS(6284), 1, sym__quoted_content_i_bar, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367928,17 +355958,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4549), 2, + STATE(4537), 2, sym_interpolation, aux_sym__quoted_i_bar_repeat1, [233987] = 7, - ACTIONS(6120), 1, + ACTIONS(6038), 1, anon_sym_POUND_LBRACE, - ACTIONS(6122), 1, + ACTIONS(6040), 1, sym_escape_sequence, - ACTIONS(6124), 1, + ACTIONS(6042), 1, sym__quoted_content_i_slash, - ACTIONS(6368), 1, + ACTIONS(6286), 1, anon_sym_SLASH, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367946,17 +355976,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4548), 2, + STATE(4536), 2, sym_interpolation, aux_sym__quoted_i_slash_repeat1, [234012] = 7, - ACTIONS(6194), 1, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, - ACTIONS(6352), 1, + ACTIONS(6270), 1, sym_escape_sequence, - ACTIONS(6354), 1, + ACTIONS(6272), 1, sym__quoted_content_i_square, - ACTIONS(6370), 1, + ACTIONS(6288), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -367964,71 +355994,71 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4561), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [234037] = 7, - ACTIONS(6186), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6358), 1, - sym_escape_sequence, - ACTIONS(6360), 1, - sym__quoted_content_i_angle, - ACTIONS(6372), 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, - [234062] = 7, - ACTIONS(6202), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6374), 1, - anon_sym_RPAREN, - ACTIONS(6376), 1, - sym_escape_sequence, - 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(6380), 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_square_repeat1, + [234037] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_angle, + ACTIONS(6290), 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(4540), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [234062] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6292), 1, + anon_sym_RPAREN, + ACTIONS(6294), 1, + sym_escape_sequence, + ACTIONS(6296), 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(4793), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [234087] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_bar, + ACTIONS(6298), 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(4537), 2, sym_interpolation, aux_sym__quoted_i_bar_repeat1, [234112] = 7, - ACTIONS(6128), 1, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(6382), 1, + ACTIONS(6300), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6384), 1, + ACTIONS(6302), 1, sym_escape_sequence, - ACTIONS(6386), 1, + ACTIONS(6304), 1, sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368036,17 +356066,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4441), 2, + STATE(4429), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, [234137] = 7, - ACTIONS(6112), 1, + ACTIONS(6030), 1, anon_sym_POUND_LBRACE, - ACTIONS(6388), 1, + ACTIONS(6306), 1, anon_sym_RBRACE, - ACTIONS(6390), 1, + ACTIONS(6308), 1, sym_escape_sequence, - ACTIONS(6392), 1, + ACTIONS(6310), 1, sym__quoted_content_i_curly, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368054,17 +356084,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4715), 2, + STATE(4703), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, [234162] = 7, - ACTIONS(6194), 1, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, - ACTIONS(6394), 1, + ACTIONS(6312), 1, anon_sym_RBRACK, - ACTIONS(6396), 1, + ACTIONS(6314), 1, sym_escape_sequence, - ACTIONS(6398), 1, + ACTIONS(6316), 1, sym__quoted_content_i_square, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368072,17 +356102,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4734), 2, + STATE(4722), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, [234187] = 7, - ACTIONS(6186), 1, + ACTIONS(6104), 1, anon_sym_POUND_LBRACE, - ACTIONS(6400), 1, + ACTIONS(6318), 1, anon_sym_GT, - ACTIONS(6402), 1, + ACTIONS(6320), 1, sym_escape_sequence, - ACTIONS(6404), 1, + ACTIONS(6322), 1, sym__quoted_content_i_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368090,17 +356120,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4757), 2, + STATE(4745), 2, sym_interpolation, aux_sym__quoted_i_angle_repeat1, [234212] = 7, - ACTIONS(6178), 1, + ACTIONS(6096), 1, anon_sym_POUND_LBRACE, - ACTIONS(6406), 1, + ACTIONS(6324), 1, anon_sym_PIPE, - ACTIONS(6408), 1, + ACTIONS(6326), 1, sym_escape_sequence, - ACTIONS(6410), 1, + ACTIONS(6328), 1, sym__quoted_content_i_bar, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368108,17 +356138,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4761), 2, + STATE(4749), 2, sym_interpolation, aux_sym__quoted_i_bar_repeat1, [234237] = 7, - ACTIONS(6120), 1, + ACTIONS(6038), 1, anon_sym_POUND_LBRACE, - ACTIONS(6412), 1, + ACTIONS(6330), 1, anon_sym_SLASH, - ACTIONS(6414), 1, + ACTIONS(6332), 1, sym_escape_sequence, - ACTIONS(6416), 1, + ACTIONS(6334), 1, sym__quoted_content_i_slash, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368126,17 +356156,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4762), 2, + STATE(4750), 2, sym_interpolation, aux_sym__quoted_i_slash_repeat1, [234262] = 7, - ACTIONS(6152), 1, + ACTIONS(6070), 1, anon_sym_POUND_LBRACE, - ACTIONS(6418), 1, + ACTIONS(6336), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6420), 1, + ACTIONS(6338), 1, sym_escape_sequence, - ACTIONS(6422), 1, + ACTIONS(6340), 1, sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368144,17 +356174,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4445), 2, + STATE(4433), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, [234287] = 7, - ACTIONS(6144), 1, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(6424), 1, + ACTIONS(6342), 1, anon_sym_SQUOTE, - ACTIONS(6426), 1, + ACTIONS(6344), 1, sym_escape_sequence, - ACTIONS(6428), 1, + ACTIONS(6346), 1, sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368162,17 +356192,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4448), 2, + STATE(4436), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, [234312] = 7, - ACTIONS(6152), 1, + ACTIONS(6070), 1, anon_sym_POUND_LBRACE, - ACTIONS(6430), 1, + ACTIONS(6348), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6432), 1, + ACTIONS(6350), 1, sym_escape_sequence, - ACTIONS(6434), 1, + ACTIONS(6352), 1, sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368180,17 +356210,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4724), 2, + STATE(4712), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, [234337] = 7, - ACTIONS(6144), 1, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(6436), 1, + ACTIONS(6354), 1, anon_sym_SQUOTE, - ACTIONS(6438), 1, + ACTIONS(6356), 1, sym_escape_sequence, - ACTIONS(6440), 1, + ACTIONS(6358), 1, sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368198,17 +356228,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4443), 2, + STATE(4431), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, [234362] = 7, - ACTIONS(6136), 1, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(6442), 1, + ACTIONS(6360), 1, anon_sym_DQUOTE, - ACTIONS(6444), 1, + ACTIONS(6362), 1, sym_escape_sequence, - ACTIONS(6446), 1, + ACTIONS(6364), 1, sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368216,17 +356246,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4444), 2, + STATE(4432), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, [234387] = 7, - ACTIONS(6136), 1, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(6448), 1, + ACTIONS(6366), 1, anon_sym_DQUOTE, - ACTIONS(6450), 1, + ACTIONS(6368), 1, sym_escape_sequence, - ACTIONS(6452), 1, + ACTIONS(6370), 1, sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368234,17 +356264,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4449), 2, + STATE(4437), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, [234412] = 7, - ACTIONS(6120), 1, + ACTIONS(6038), 1, anon_sym_POUND_LBRACE, - ACTIONS(6122), 1, + ACTIONS(6040), 1, sym_escape_sequence, - ACTIONS(6124), 1, + ACTIONS(6042), 1, sym__quoted_content_i_slash, - ACTIONS(6454), 1, + ACTIONS(6372), 1, anon_sym_SLASH, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368252,17 +356282,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4548), 2, + STATE(4536), 2, sym_interpolation, aux_sym__quoted_i_slash_repeat1, [234437] = 7, - ACTIONS(6194), 1, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, - ACTIONS(6456), 1, + ACTIONS(6374), 1, anon_sym_RBRACK, - ACTIONS(6458), 1, + ACTIONS(6376), 1, sym_escape_sequence, - ACTIONS(6460), 1, + ACTIONS(6378), 1, sym__quoted_content_i_square, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368270,17 +356300,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4480), 2, + STATE(4468), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, [234462] = 7, - ACTIONS(6112), 1, + ACTIONS(6030), 1, anon_sym_POUND_LBRACE, - ACTIONS(6462), 1, + ACTIONS(6380), 1, anon_sym_RBRACE, - ACTIONS(6464), 1, + ACTIONS(6382), 1, sym_escape_sequence, - ACTIONS(6466), 1, + ACTIONS(6384), 1, sym__quoted_content_i_curly, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368288,17 +356318,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4479), 2, + STATE(4467), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, [234487] = 7, - ACTIONS(6202), 1, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6232), 1, sym_escape_sequence, - ACTIONS(6316), 1, + ACTIONS(6234), 1, sym__quoted_content_i_parenthesis, - ACTIONS(6468), 1, + ACTIONS(6386), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368306,17 +356336,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4585), 2, + STATE(4573), 2, sym_interpolation, aux_sym__quoted_i_parenthesis_repeat1, [234512] = 7, - ACTIONS(6112), 1, + ACTIONS(6030), 1, anon_sym_POUND_LBRACE, - ACTIONS(6342), 1, + ACTIONS(6260), 1, sym_escape_sequence, - ACTIONS(6344), 1, + ACTIONS(6262), 1, sym__quoted_content_i_curly, - ACTIONS(6470), 1, + ACTIONS(6388), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368324,17 +356354,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4582), 2, + STATE(4570), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, [234537] = 7, - ACTIONS(6194), 1, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, - ACTIONS(6352), 1, + ACTIONS(6270), 1, sym_escape_sequence, - ACTIONS(6354), 1, + ACTIONS(6272), 1, sym__quoted_content_i_square, - ACTIONS(6472), 1, + ACTIONS(6390), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368342,17 +356372,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4561), 2, + STATE(4549), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, [234562] = 7, - ACTIONS(6474), 1, + ACTIONS(6392), 1, anon_sym_SQUOTE, - ACTIONS(6476), 1, + ACTIONS(6394), 1, anon_sym_POUND_LBRACE, - ACTIONS(6479), 1, + ACTIONS(6397), 1, sym_escape_sequence, - ACTIONS(6482), 1, + ACTIONS(6400), 1, sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368360,17 +356390,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4481), 2, + STATE(4469), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, [234587] = 7, - ACTIONS(6485), 1, + ACTIONS(6403), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6487), 1, + ACTIONS(6405), 1, anon_sym_POUND_LBRACE, - ACTIONS(6490), 1, + ACTIONS(6408), 1, sym_escape_sequence, - ACTIONS(6493), 1, + ACTIONS(6411), 1, sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368378,17 +356408,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4482), 2, + STATE(4470), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, [234612] = 7, - ACTIONS(6496), 1, + ACTIONS(6414), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6498), 1, + ACTIONS(6416), 1, anon_sym_POUND_LBRACE, - ACTIONS(6501), 1, + ACTIONS(6419), 1, sym_escape_sequence, - ACTIONS(6504), 1, + ACTIONS(6422), 1, sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368396,17 +356426,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4483), 2, + STATE(4471), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, [234637] = 7, - ACTIONS(6186), 1, + ACTIONS(6104), 1, anon_sym_POUND_LBRACE, - ACTIONS(6358), 1, + ACTIONS(6276), 1, sym_escape_sequence, - ACTIONS(6360), 1, + ACTIONS(6278), 1, sym__quoted_content_i_angle, - ACTIONS(6507), 1, + ACTIONS(6425), 1, anon_sym_GT, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368414,17 +356444,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4552), 2, + STATE(4540), 2, sym_interpolation, aux_sym__quoted_i_angle_repeat1, [234662] = 7, - ACTIONS(6202), 1, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(6509), 1, + ACTIONS(6427), 1, anon_sym_RPAREN, - ACTIONS(6511), 1, + ACTIONS(6429), 1, sym_escape_sequence, - ACTIONS(6513), 1, + ACTIONS(6431), 1, sym__quoted_content_i_parenthesis, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368432,71 +356462,71 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4829), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [234687] = 7, - ACTIONS(6202), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6515), 1, - anon_sym_RPAREN, - ACTIONS(6517), 1, - sym_escape_sequence, - ACTIONS(6519), 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(4478), 2, - sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [234712] = 7, - ACTIONS(6112), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6521), 1, - anon_sym_RBRACE, - ACTIONS(6523), 1, - sym_escape_sequence, - ACTIONS(6525), 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(4818), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [234737] = 7, - ACTIONS(6194), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6527), 1, - anon_sym_RBRACK, - ACTIONS(6529), 1, - sym_escape_sequence, - 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(4817), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [234687] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6433), 1, + anon_sym_RPAREN, + ACTIONS(6435), 1, + sym_escape_sequence, + ACTIONS(6437), 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(4466), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [234712] = 7, + ACTIONS(6030), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6439), 1, + anon_sym_RBRACE, + ACTIONS(6441), 1, + sym_escape_sequence, + ACTIONS(6443), 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(4806), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [234737] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6445), 1, + anon_sym_RBRACK, + ACTIONS(6447), 1, + sym_escape_sequence, + ACTIONS(6449), 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(4805), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, [234762] = 7, - ACTIONS(6178), 1, + ACTIONS(6096), 1, anon_sym_POUND_LBRACE, - ACTIONS(6364), 1, + ACTIONS(6282), 1, sym_escape_sequence, - ACTIONS(6366), 1, + ACTIONS(6284), 1, sym__quoted_content_i_bar, - ACTIONS(6533), 1, + ACTIONS(6451), 1, anon_sym_PIPE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368504,36 +356534,504 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, + STATE(4537), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [234787] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6453), 1, + anon_sym_GT, + ACTIONS(6455), 1, + sym_escape_sequence, + ACTIONS(6457), 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(4804), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [234812] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6459), 1, + anon_sym_DQUOTE, + ACTIONS(6461), 1, + sym_escape_sequence, + ACTIONS(6463), 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(4491), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [234837] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6465), 1, + anon_sym_SQUOTE, + ACTIONS(6467), 1, + sym_escape_sequence, + ACTIONS(6469), 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(4492), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [234862] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6471), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6473), 1, + sym_escape_sequence, + ACTIONS(6475), 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(4493), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [234887] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6477), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6479), 1, + sym_escape_sequence, + ACTIONS(6481), 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(4494), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [234912] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6483), 1, + anon_sym_PIPE, + ACTIONS(6485), 1, + sym_escape_sequence, + ACTIONS(6487), 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(4802), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [234937] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6040), 1, + sym_escape_sequence, + ACTIONS(6042), 1, + sym__quoted_content_i_slash, + ACTIONS(6489), 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(4536), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [234962] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_bar, + ACTIONS(6491), 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(4537), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [234987] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6040), 1, + sym_escape_sequence, + ACTIONS(6042), 1, + sym__quoted_content_i_slash, + ACTIONS(6493), 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(4536), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [235012] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_angle, + ACTIONS(6495), 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(4540), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [235037] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6497), 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [235062] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6499), 1, + anon_sym_SLASH, + ACTIONS(6501), 1, + sym_escape_sequence, + ACTIONS(6503), 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(4801), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [235087] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(6208), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6505), 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(4470), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [235112] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, + sym__quoted_content_i_double, + ACTIONS(6507), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [235137] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(6509), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [235162] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(6208), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6511), 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(4470), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [235187] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6513), 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [235212] = 7, + ACTIONS(6515), 1, + anon_sym_DQUOTE, + ACTIONS(6517), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6520), 1, + sym_escape_sequence, + ACTIONS(6523), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [235237] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(6526), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [235262] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6270), 1, + sym_escape_sequence, + ACTIONS(6272), 1, + sym__quoted_content_i_square, + ACTIONS(6528), 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(4549), 2, sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [234787] = 7, - ACTIONS(6186), 1, + aux_sym__quoted_i_square_repeat1, + [235287] = 7, + ACTIONS(6030), 1, anon_sym_POUND_LBRACE, - ACTIONS(6535), 1, - anon_sym_GT, - ACTIONS(6537), 1, + ACTIONS(6260), 1, sym_escape_sequence, - ACTIONS(6539), 1, - sym__quoted_content_i_angle, + ACTIONS(6262), 1, + sym__quoted_content_i_curly, + ACTIONS(6530), 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(4816), 2, + STATE(4570), 2, sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [234812] = 7, - ACTIONS(6136), 1, + aux_sym__quoted_i_curly_repeat1, + [235312] = 7, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(6541), 1, - anon_sym_DQUOTE, - ACTIONS(6543), 1, + ACTIONS(6194), 1, sym_escape_sequence, - ACTIONS(6545), 1, + ACTIONS(6196), 1, sym__quoted_content_i_double, + ACTIONS(6532), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [235337] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6534), 1, + anon_sym_SQUOTE, + ACTIONS(6536), 1, + sym_escape_sequence, + ACTIONS(6538), 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(4496), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [235362] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(6540), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [235387] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6542), 1, + anon_sym_DQUOTE, + ACTIONS(6544), 1, + sym_escape_sequence, + ACTIONS(6546), 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(4499), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [235412] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(6548), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [235437] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, + sym__quoted_content_i_double, + ACTIONS(6550), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [235462] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6552), 1, + anon_sym_SQUOTE, + ACTIONS(6554), 1, + sym_escape_sequence, + ACTIONS(6556), 1, + sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -368542,16 +357040,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4503), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [234837] = 7, - ACTIONS(6144), 1, + aux_sym__quoted_i_single_repeat1, + [235487] = 7, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(6547), 1, - anon_sym_SQUOTE, - ACTIONS(6549), 1, + ACTIONS(6558), 1, + anon_sym_DQUOTE, + ACTIONS(6560), 1, sym_escape_sequence, - ACTIONS(6551), 1, - sym__quoted_content_i_single, + ACTIONS(6562), 1, + sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -368559,323 +357057,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, STATE(4504), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [234862] = 7, - ACTIONS(6152), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6553), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6555), 1, - sym_escape_sequence, - ACTIONS(6557), 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(4505), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [234887] = 7, - ACTIONS(6128), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6559), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6561), 1, - sym_escape_sequence, - ACTIONS(6563), 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(4506), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [234912] = 7, - ACTIONS(6178), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6565), 1, - anon_sym_PIPE, - ACTIONS(6567), 1, - sym_escape_sequence, - ACTIONS(6569), 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(4814), 2, - sym_interpolation, - 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_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, - [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, + [235512] = 7, + ACTIONS(6054), 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(6196), 1, + sym__quoted_content_i_double, + ACTIONS(6564), 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(4561), 2, + STATE(4495), 2, sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [235287] = 7, - ACTIONS(6112), 1, + aux_sym__quoted_i_double_repeat1, + [235537] = 7, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(6342), 1, + ACTIONS(6566), 1, + anon_sym_DQUOTE, + ACTIONS(6568), 1, sym_escape_sequence, - ACTIONS(6344), 1, - sym__quoted_content_i_curly, - ACTIONS(6612), 1, - anon_sym_RBRACE, + ACTIONS(6570), 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(4513), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [235562] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(6572), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [235587] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6574), 1, + anon_sym_SQUOTE, + ACTIONS(6576), 1, + sym_escape_sequence, + ACTIONS(6578), 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(4533), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [235612] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6580), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6582), 1, + sym_escape_sequence, + ACTIONS(6584), 1, + sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -368884,15 +357148,33 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4582), 2, sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [235312] = 7, - ACTIONS(6136), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + [235637] = 7, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6586), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6588), 1, sym_escape_sequence, - ACTIONS(6278), 1, + ACTIONS(6590), 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(4601), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [235662] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, sym__quoted_content_i_double, - ACTIONS(6614), 1, + ACTIONS(6592), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -368900,89 +357182,125 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4507), 2, + STATE(4495), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [235337] = 7, - ACTIONS(6144), 1, + [235687] = 7, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, + ACTIONS(6594), 1, + anon_sym_RPAREN, + ACTIONS(6596), 1, + sym_escape_sequence, + ACTIONS(6598), 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(4552), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [235712] = 7, + ACTIONS(6030), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6600), 1, + anon_sym_RBRACE, + ACTIONS(6602), 1, + sym_escape_sequence, + ACTIONS(6604), 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(4553), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [235737] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6606), 1, + anon_sym_RBRACK, + ACTIONS(6608), 1, + sym_escape_sequence, + ACTIONS(6610), 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(4554), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [235762] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6612), 1, + anon_sym_GT, + ACTIONS(6614), 1, + sym_escape_sequence, ACTIONS(6616), 1, - anon_sym_SQUOTE, - ACTIONS(6618), 1, - sym_escape_sequence, - ACTIONS(6620), 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(4508), 2, + STATE(4555), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [235362] = 7, - ACTIONS(6144), 1, + aux_sym__quoted_i_angle_repeat1, + [235787] = 7, + ACTIONS(6096), 1, anon_sym_POUND_LBRACE, - ACTIONS(6282), 1, + ACTIONS(6618), 1, + anon_sym_PIPE, + ACTIONS(6620), 1, sym_escape_sequence, - ACTIONS(6284), 1, - sym__quoted_content_i_single, ACTIONS(6622), 1, - anon_sym_SQUOTE, + 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(4481), 2, + STATE(4556), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [235387] = 7, - ACTIONS(6136), 1, + aux_sym__quoted_i_bar_repeat1, + [235812] = 7, + ACTIONS(6038), 1, anon_sym_POUND_LBRACE, ACTIONS(6624), 1, - anon_sym_DQUOTE, + anon_sym_SLASH, ACTIONS(6626), 1, sym_escape_sequence, ACTIONS(6628), 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(4511), 2, + STATE(4557), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [235412] = 7, - ACTIONS(6144), 1, + aux_sym__quoted_i_slash_repeat1, + [235837] = 7, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(6282), 1, + ACTIONS(6194), 1, sym_escape_sequence, - ACTIONS(6284), 1, - sym__quoted_content_i_single, + ACTIONS(6196), 1, + sym__quoted_content_i_double, 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, @@ -368990,17 +357308,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4507), 2, + STATE(4495), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [235462] = 7, - ACTIONS(6144), 1, + [235862] = 7, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(6634), 1, + ACTIONS(6632), 1, anon_sym_SQUOTE, - ACTIONS(6636), 1, + ACTIONS(6634), 1, sym_escape_sequence, - ACTIONS(6638), 1, + ACTIONS(6636), 1, sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -369008,17 +357326,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4515), 2, + STATE(4509), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [235487] = 7, - ACTIONS(6136), 1, + [235887] = 7, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(6640), 1, + ACTIONS(6638), 1, anon_sym_DQUOTE, - ACTIONS(6642), 1, + ACTIONS(6640), 1, sym_escape_sequence, - ACTIONS(6644), 1, + ACTIONS(6642), 1, sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -369026,15 +357344,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4516), 2, + STATE(4520), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [235512] = 7, - ACTIONS(6136), 1, + [235912] = 7, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6200), 1, sym_escape_sequence, - ACTIONS(6278), 1, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(6644), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [235937] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, sym__quoted_content_i_double, ACTIONS(6646), 1, anon_sym_DQUOTE, @@ -369044,17 +357380,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4507), 2, + STATE(4495), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [235537] = 7, - ACTIONS(6136), 1, + [235962] = 7, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, ACTIONS(6648), 1, - anon_sym_DQUOTE, + anon_sym_SQUOTE, ACTIONS(6650), 1, sym_escape_sequence, ACTIONS(6652), 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(4523), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [235987] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6654), 1, + anon_sym_DQUOTE, + ACTIONS(6656), 1, + sym_escape_sequence, + ACTIONS(6658), 1, sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -369062,89 +357416,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4525), 2, + STATE(4524), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [235562] = 7, - ACTIONS(6144), 1, + [236012] = 7, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(6282), 1, + ACTIONS(6200), 1, sym_escape_sequence, - ACTIONS(6284), 1, + ACTIONS(6202), 1, sym__quoted_content_i_single, - ACTIONS(6654), 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, - [235587] = 7, - ACTIONS(6144), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6656), 1, - anon_sym_SQUOTE, - ACTIONS(6658), 1, - sym_escape_sequence, ACTIONS(6660), 1, - sym__quoted_content_i_single, + 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(4545), 2, + STATE(4469), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [235612] = 7, - ACTIONS(6152), 1, + [236037] = 7, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(6662), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6664), 1, + ACTIONS(6194), 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, - 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(4613), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [235662] = 7, - ACTIONS(6136), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6276), 1, - sym_escape_sequence, - ACTIONS(6278), 1, + ACTIONS(6196), 1, sym__quoted_content_i_double, - ACTIONS(6674), 1, + ACTIONS(6662), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -369152,107 +357452,143 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4507), 2, + STATE(4495), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [235687] = 7, + [236062] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6664), 1, + anon_sym_SQUOTE, + ACTIONS(6666), 1, + sym_escape_sequence, + ACTIONS(6668), 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(4527), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [236087] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6670), 1, + anon_sym_DQUOTE, + ACTIONS(6672), 1, + sym_escape_sequence, + ACTIONS(6674), 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(4528), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [236112] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, ACTIONS(6202), 1, - anon_sym_POUND_LBRACE, + sym__quoted_content_i_single, ACTIONS(6676), 1, - anon_sym_RPAREN, - ACTIONS(6678), 1, - sym_escape_sequence, - ACTIONS(6680), 1, - sym__quoted_content_i_parenthesis, + 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(4564), 2, + STATE(4469), 2, sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [235712] = 7, - ACTIONS(6112), 1, + aux_sym__quoted_i_single_repeat1, + [236137] = 7, + ACTIONS(6054), 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(6196), 1, + sym__quoted_content_i_double, + ACTIONS(6678), 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(4566), 2, + STATE(4495), 2, sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [235762] = 7, - ACTIONS(6186), 1, + aux_sym__quoted_i_double_repeat1, + [236162] = 7, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(6694), 1, - anon_sym_GT, - ACTIONS(6696), 1, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(6680), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [236187] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6040), 1, + sym_escape_sequence, + ACTIONS(6042), 1, + sym__quoted_content_i_slash, + ACTIONS(6682), 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(4536), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [236212] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6684), 1, + anon_sym_SQUOTE, + ACTIONS(6686), 1, + sym_escape_sequence, + ACTIONS(6688), 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(4531), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [236237] = 7, + ACTIONS(6690), 1, + anon_sym_SLASH, + ACTIONS(6692), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6695), 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, @@ -369260,53 +357596,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4569), 2, + STATE(4536), 2, sym_interpolation, aux_sym__quoted_i_slash_repeat1, - [235837] = 7, - ACTIONS(6136), 1, + [236262] = 7, + ACTIONS(6701), 1, + anon_sym_PIPE, + ACTIONS(6703), 1, anon_sym_POUND_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6706), 1, sym_escape_sequence, - ACTIONS(6278), 1, - sym__quoted_content_i_double, + ACTIONS(6709), 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(4537), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [236287] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, 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, + sym_escape_sequence, ACTIONS(6716), 1, - sym_escape_sequence, - ACTIONS(6718), 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(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, @@ -369317,14 +357635,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(4532), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [235912] = 7, - ACTIONS(6144), 1, + [236312] = 7, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(6282), 1, + ACTIONS(6200), 1, sym_escape_sequence, - ACTIONS(6284), 1, + ACTIONS(6202), 1, sym__quoted_content_i_single, - ACTIONS(6726), 1, + ACTIONS(6718), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -369332,89 +357650,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4481), 2, + STATE(4469), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [235937] = 7, - ACTIONS(6136), 1, + [236337] = 7, + ACTIONS(6720), 1, + anon_sym_GT, + ACTIONS(6722), 1, anon_sym_POUND_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6725), 1, sym_escape_sequence, - ACTIONS(6278), 1, - sym__quoted_content_i_double, ACTIONS(6728), 1, - anon_sym_DQUOTE, + 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(4507), 2, + STATE(4540), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [235962] = 7, - ACTIONS(6144), 1, + aux_sym__quoted_i_angle_repeat1, + [236362] = 7, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(6730), 1, - anon_sym_SQUOTE, - ACTIONS(6732), 1, + ACTIONS(6194), 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, + ACTIONS(6196), 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, + ACTIONS(6731), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -369422,17 +357686,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4507), 2, + STATE(4495), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [236062] = 7, - ACTIONS(6144), 1, + [236387] = 7, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(6746), 1, + ACTIONS(6733), 1, anon_sym_SQUOTE, - ACTIONS(6748), 1, + ACTIONS(6735), 1, sym_escape_sequence, - ACTIONS(6750), 1, + ACTIONS(6737), 1, sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -369443,14 +357707,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(4539), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [236087] = 7, - ACTIONS(6136), 1, + [236412] = 7, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(6752), 1, + ACTIONS(6739), 1, anon_sym_DQUOTE, - ACTIONS(6754), 1, + ACTIONS(6741), 1, sym_escape_sequence, - ACTIONS(6756), 1, + ACTIONS(6743), 1, sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -369458,17 +357722,53 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4540), 2, + STATE(4541), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [236112] = 7, - ACTIONS(6144), 1, + [236437] = 7, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(6282), 1, + ACTIONS(6048), 1, sym_escape_sequence, - ACTIONS(6284), 1, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6745), 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [236462] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(6208), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6747), 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(4470), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [236487] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, sym__quoted_content_i_single, - ACTIONS(6758), 1, + ACTIONS(6749), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -369476,17 +357776,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4481), 2, + STATE(4469), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [236137] = 7, - ACTIONS(6136), 1, + [236512] = 7, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6194), 1, sym_escape_sequence, - ACTIONS(6278), 1, + ACTIONS(6196), 1, sym__quoted_content_i_double, - ACTIONS(6760), 1, + ACTIONS(6751), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -369494,108 +357794,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4507), 2, + STATE(4495), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [236162] = 7, - ACTIONS(6144), 1, + [236537] = 7, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(6282), 1, + ACTIONS(6753), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6755), 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, - 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, - [236212] = 7, - ACTIONS(6144), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6766), 1, - anon_sym_SQUOTE, - ACTIONS(6768), 1, - sym_escape_sequence, - ACTIONS(6770), 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(4543), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [236237] = 7, - ACTIONS(6772), 1, - anon_sym_SLASH, - ACTIONS(6774), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6777), 1, - sym_escape_sequence, - ACTIONS(6780), 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(4548), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [236262] = 7, - ACTIONS(6783), 1, - anon_sym_PIPE, - ACTIONS(6785), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6788), 1, - sym_escape_sequence, - 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(4549), 2, - sym_interpolation, - 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(6757), 1, + sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -369603,196 +357813,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, - [236337] = 7, - ACTIONS(6802), 1, - anon_sym_GT, - ACTIONS(6804), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6807), 1, - sym_escape_sequence, - ACTIONS(6810), 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(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, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4551), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [236412] = 7, - ACTIONS(6136), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6821), 1, - anon_sym_DQUOTE, - ACTIONS(6823), 1, - sym_escape_sequence, - ACTIONS(6825), 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(4553), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [236437] = 7, - ACTIONS(6128), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6130), 1, - sym_escape_sequence, - 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, + ACTIONS(6759), 1, anon_sym_RBRACK, - ACTIONS(6843), 1, + ACTIONS(6761), 1, anon_sym_POUND_LBRACE, - ACTIONS(6846), 1, + ACTIONS(6764), 1, sym_escape_sequence, - ACTIONS(6849), 1, + ACTIONS(6767), 1, sym__quoted_content_i_square, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -369800,288 +357830,54 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4561), 2, + STATE(4549), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, [236587] = 7, - ACTIONS(6178), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6364), 1, - sym_escape_sequence, - ACTIONS(6366), 1, - sym__quoted_content_i_bar, - ACTIONS(6852), 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, - [236612] = 7, - ACTIONS(6186), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6358), 1, - sym_escape_sequence, - 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(4552), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [236637] = 7, - ACTIONS(6202), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6314), 1, - sym_escape_sequence, - 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(6866), 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, - [236787] = 7, - ACTIONS(6152), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6868), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6870), 1, - sym_escape_sequence, - ACTIONS(6872), 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(4557), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [236812] = 7, - ACTIONS(6144), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6874), 1, - anon_sym_SQUOTE, - ACTIONS(6876), 1, - sym_escape_sequence, - ACTIONS(6878), 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(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, + ACTIONS(6096), 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, + sym__quoted_content_i_bar, + ACTIONS(6770), 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(4481), 2, + STATE(4537), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [236937] = 7, - ACTIONS(6136), 1, + aux_sym__quoted_i_bar_repeat1, + [236612] = 7, + ACTIONS(6104), 1, anon_sym_POUND_LBRACE, ACTIONS(6276), 1, sym_escape_sequence, ACTIONS(6278), 1, - sym__quoted_content_i_double, - ACTIONS(6892), 1, - anon_sym_DQUOTE, + sym__quoted_content_i_angle, + ACTIONS(6772), 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(4507), 2, + STATE(4540), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [236962] = 7, - ACTIONS(6128), 1, + aux_sym__quoted_i_angle_repeat1, + [236637] = 7, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(6894), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6896), 1, + ACTIONS(6232), 1, sym_escape_sequence, - ACTIONS(6898), 1, - sym__quoted_content_i_heredoc_double, + ACTIONS(6234), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(6774), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -370090,15 +357886,105 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4573), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [236987] = 7, - ACTIONS(6152), 1, + aux_sym__quoted_i_parenthesis_repeat1, + [236662] = 7, + ACTIONS(6030), 1, anon_sym_POUND_LBRACE, - ACTIONS(6900), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6902), 1, + ACTIONS(6260), 1, sym_escape_sequence, - ACTIONS(6904), 1, + ACTIONS(6262), 1, + sym__quoted_content_i_curly, + ACTIONS(6776), 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(4570), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [236687] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6270), 1, + sym_escape_sequence, + ACTIONS(6272), 1, + sym__quoted_content_i_square, + ACTIONS(6778), 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(4549), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [236712] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_angle, + ACTIONS(6780), 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(4540), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [236737] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_bar, + ACTIONS(6782), 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(4537), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [236762] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6040), 1, + sym_escape_sequence, + ACTIONS(6042), 1, + sym__quoted_content_i_slash, + ACTIONS(6784), 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(4536), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [236787] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6786), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6788), 1, + sym_escape_sequence, + ACTIONS(6790), 1, sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370106,17 +357992,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4574), 2, + STATE(4545), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [237012] = 7, - ACTIONS(6144), 1, + [236812] = 7, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(6906), 1, + ACTIONS(6792), 1, anon_sym_SQUOTE, - ACTIONS(6908), 1, + ACTIONS(6794), 1, sym_escape_sequence, - ACTIONS(6910), 1, + ACTIONS(6796), 1, sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370124,17 +358010,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4575), 2, + STATE(4546), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [237037] = 7, - ACTIONS(6136), 1, + [236837] = 7, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(6912), 1, + ACTIONS(6798), 1, anon_sym_DQUOTE, - ACTIONS(6914), 1, + ACTIONS(6800), 1, sym_escape_sequence, - ACTIONS(6916), 1, + ACTIONS(6802), 1, sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370142,18 +358028,90 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4576), 2, + STATE(4547), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [237062] = 7, - ACTIONS(6194), 1, + [236862] = 7, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(6352), 1, + ACTIONS(6048), 1, sym_escape_sequence, - ACTIONS(6354), 1, - sym__quoted_content_i_square, - ACTIONS(6918), 1, - anon_sym_RBRACK, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6804), 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [236887] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(6208), 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(4470), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [236912] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(6808), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [236937] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, + sym__quoted_content_i_double, + ACTIONS(6810), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [236962] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6812), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6814), 1, + sym_escape_sequence, + ACTIONS(6816), 1, + sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -370161,16 +358119,88 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, STATE(4561), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [236987] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6818), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6820), 1, + sym_escape_sequence, + ACTIONS(6822), 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(4562), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [237012] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6824), 1, + anon_sym_SQUOTE, + ACTIONS(6826), 1, + sym_escape_sequence, + ACTIONS(6828), 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(4563), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [237037] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6830), 1, + anon_sym_DQUOTE, + ACTIONS(6832), 1, + sym_escape_sequence, + ACTIONS(6834), 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(4564), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [237062] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6270), 1, + sym_escape_sequence, + ACTIONS(6272), 1, + sym__quoted_content_i_square, + ACTIONS(6836), 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(4549), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, [237087] = 7, - ACTIONS(6920), 1, + ACTIONS(6838), 1, anon_sym_RBRACE, - ACTIONS(6922), 1, + ACTIONS(6840), 1, anon_sym_POUND_LBRACE, - ACTIONS(6925), 1, + ACTIONS(6843), 1, sym_escape_sequence, - ACTIONS(6928), 1, + ACTIONS(6846), 1, sym__quoted_content_i_curly, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370178,17 +358208,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4582), 2, + STATE(4570), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, [237112] = 7, - ACTIONS(6128), 1, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(6130), 1, + ACTIONS(6048), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6050), 1, sym__quoted_content_i_heredoc_double, - ACTIONS(6931), 1, + ACTIONS(6849), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370196,17 +358226,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4483), 2, + STATE(4471), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, [237137] = 7, - ACTIONS(6152), 1, + ACTIONS(6070), 1, anon_sym_POUND_LBRACE, - ACTIONS(6288), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(6290), 1, + ACTIONS(6208), 1, sym__quoted_content_i_heredoc_single, - ACTIONS(6933), 1, + ACTIONS(6851), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370214,17 +358244,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4482), 2, + STATE(4470), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, [237162] = 7, - ACTIONS(6935), 1, + ACTIONS(6853), 1, anon_sym_RPAREN, - ACTIONS(6937), 1, + ACTIONS(6855), 1, anon_sym_POUND_LBRACE, - ACTIONS(6940), 1, + ACTIONS(6858), 1, sym_escape_sequence, - ACTIONS(6943), 1, + ACTIONS(6861), 1, sym__quoted_content_i_parenthesis, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370232,17 +358262,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4585), 2, + STATE(4573), 2, sym_interpolation, aux_sym__quoted_i_parenthesis_repeat1, [237187] = 7, - ACTIONS(6144), 1, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(6282), 1, + ACTIONS(6200), 1, sym_escape_sequence, - ACTIONS(6284), 1, + ACTIONS(6202), 1, sym__quoted_content_i_single, - ACTIONS(6946), 1, + ACTIONS(6864), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370250,17 +358280,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4481), 2, + STATE(4469), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, [237212] = 7, - ACTIONS(6136), 1, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6194), 1, sym_escape_sequence, - ACTIONS(6278), 1, + ACTIONS(6196), 1, sym__quoted_content_i_double, - ACTIONS(6948), 1, + ACTIONS(6866), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370268,17 +358298,215 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4507), 2, + STATE(4495), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, [237237] = 7, - ACTIONS(6128), 1, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(6950), 1, + ACTIONS(6868), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6952), 1, + ACTIONS(6870), 1, sym_escape_sequence, - ACTIONS(6954), 1, + ACTIONS(6872), 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(4571), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [237262] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6874), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6876), 1, + sym_escape_sequence, + ACTIONS(6878), 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(4572), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [237287] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6880), 1, + anon_sym_SQUOTE, + ACTIONS(6882), 1, + sym_escape_sequence, + ACTIONS(6884), 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(4574), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [237312] = 7, + ACTIONS(6030), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6260), 1, + sym_escape_sequence, + ACTIONS(6262), 1, + sym__quoted_content_i_curly, + ACTIONS(6886), 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(4570), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [237337] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6888), 1, + anon_sym_DQUOTE, + ACTIONS(6890), 1, + sym_escape_sequence, + ACTIONS(6892), 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(4575), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [237362] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6232), 1, + sym_escape_sequence, + ACTIONS(6234), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(6894), 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(4573), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [237387] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(6208), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6896), 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(4470), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [237412] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6898), 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [237437] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(6208), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6900), 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(4470), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [237462] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(6902), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [237487] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, + sym__quoted_content_i_double, + ACTIONS(6904), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [237512] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6906), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6908), 1, + sym_escape_sequence, + ACTIONS(6910), 1, sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370289,14 +358517,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(4583), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [237262] = 7, - ACTIONS(6152), 1, + [237537] = 7, + ACTIONS(6070), 1, anon_sym_POUND_LBRACE, - ACTIONS(6956), 1, + ACTIONS(6912), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6958), 1, + ACTIONS(6914), 1, sym_escape_sequence, - ACTIONS(6960), 1, + ACTIONS(6916), 1, sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370307,14 +358535,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(4584), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [237287] = 7, - ACTIONS(6144), 1, + [237562] = 7, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(6962), 1, + ACTIONS(6918), 1, anon_sym_SQUOTE, - ACTIONS(6964), 1, + ACTIONS(6920), 1, sym_escape_sequence, - ACTIONS(6966), 1, + ACTIONS(6922), 1, sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370322,89 +358550,107 @@ static const uint16_t ts_small_parse_table[] = { 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, - 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, - anon_sym_DQUOTE, - ACTIONS(6972), 1, - 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, - 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, - [237387] = 7, - ACTIONS(6152), 1, + aux_sym__quoted_i_single_repeat1, + [237587] = 7, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(6288), 1, + ACTIONS(6924), 1, + anon_sym_DQUOTE, + ACTIONS(6926), 1, sym_escape_sequence, - ACTIONS(6290), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(6978), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6928), 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(4482), 2, + STATE(4602), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [237612] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6930), 1, + anon_sym_SQUOTE, + ACTIONS(6932), 1, + sym_escape_sequence, + ACTIONS(6934), 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(4603), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [237637] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6936), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(6938), 1, + sym_escape_sequence, + ACTIONS(6940), 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(4604), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [237412] = 7, - ACTIONS(6128), 1, + [237662] = 7, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(6130), 1, + ACTIONS(6942), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(6944), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6946), 1, sym__quoted_content_i_heredoc_double, - ACTIONS(6980), 1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4605), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [237687] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6948), 1, + anon_sym_DQUOTE, + ACTIONS(6950), 1, + sym_escape_sequence, + ACTIONS(6952), 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(4586), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [237712] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6954), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370412,17 +358658,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4483), 2, + STATE(4471), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [237437] = 7, - ACTIONS(6152), 1, + [237737] = 7, + ACTIONS(6070), 1, anon_sym_POUND_LBRACE, - ACTIONS(6288), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(6290), 1, + ACTIONS(6208), 1, sym__quoted_content_i_heredoc_single, - ACTIONS(6982), 1, + ACTIONS(6956), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370430,17 +358676,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4482), 2, + STATE(4470), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [237462] = 7, - ACTIONS(6144), 1, + [237762] = 7, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(6282), 1, + ACTIONS(6200), 1, sym_escape_sequence, - ACTIONS(6284), 1, + ACTIONS(6202), 1, sym__quoted_content_i_single, - ACTIONS(6984), 1, + ACTIONS(6958), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370448,17 +358694,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4481), 2, + STATE(4469), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [237487] = 7, - ACTIONS(6136), 1, + [237787] = 7, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6194), 1, sym_escape_sequence, - ACTIONS(6278), 1, + ACTIONS(6196), 1, sym__quoted_content_i_double, - ACTIONS(6986), 1, + ACTIONS(6960), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370466,17 +358712,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4507), 2, + STATE(4495), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [237512] = 7, - ACTIONS(6128), 1, + [237812] = 7, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(6988), 1, + ACTIONS(6962), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(6990), 1, + ACTIONS(6964), 1, sym_escape_sequence, - ACTIONS(6992), 1, + ACTIONS(6966), 1, sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370487,14 +358733,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(4595), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [237537] = 7, - ACTIONS(6152), 1, + [237837] = 7, + ACTIONS(6070), 1, anon_sym_POUND_LBRACE, - ACTIONS(6994), 1, + ACTIONS(6968), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(6996), 1, + ACTIONS(6970), 1, sym_escape_sequence, - ACTIONS(6998), 1, + ACTIONS(6972), 1, sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370505,14 +358751,104 @@ static const uint16_t ts_small_parse_table[] = { STATE(4596), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [237562] = 7, - ACTIONS(6144), 1, + [237862] = 7, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(7000), 1, - anon_sym_SQUOTE, - ACTIONS(7002), 1, + ACTIONS(6048), 1, sym_escape_sequence, - ACTIONS(7004), 1, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6974), 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [237887] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, + sym__quoted_content_i_double, + ACTIONS(6976), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [237912] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(6978), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [237937] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(6208), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(6980), 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(4470), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [237962] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(6982), 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [237987] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6984), 1, + anon_sym_SQUOTE, + ACTIONS(6986), 1, + sym_escape_sequence, + ACTIONS(6988), 1, sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370523,86 +358859,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(4597), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [237587] = 7, - ACTIONS(6136), 1, + [238012] = 7, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(7006), 1, + ACTIONS(6990), 1, anon_sym_DQUOTE, - ACTIONS(7008), 1, + ACTIONS(6992), 1, sym_escape_sequence, - ACTIONS(7010), 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(4614), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [237612] = 7, - ACTIONS(6144), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7012), 1, - anon_sym_SQUOTE, - ACTIONS(7014), 1, - sym_escape_sequence, - ACTIONS(7016), 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(4615), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [237637] = 7, - ACTIONS(6152), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7018), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7020), 1, - sym_escape_sequence, - ACTIONS(7022), 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(4616), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [237662] = 7, - ACTIONS(6128), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7024), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7026), 1, - sym_escape_sequence, - ACTIONS(7028), 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(4617), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [237687] = 7, - ACTIONS(6136), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7030), 1, - anon_sym_DQUOTE, - ACTIONS(7032), 1, - sym_escape_sequence, - ACTIONS(7034), 1, + ACTIONS(6994), 1, sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370613,14 +358877,14 @@ static const uint16_t ts_small_parse_table[] = { STATE(4598), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [237712] = 7, - ACTIONS(6128), 1, + [238037] = 7, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(6130), 1, + ACTIONS(6048), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6050), 1, sym__quoted_content_i_heredoc_double, - ACTIONS(7036), 1, + ACTIONS(6996), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370628,17 +358892,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4483), 2, + STATE(4471), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [237737] = 7, - ACTIONS(6152), 1, + [238062] = 7, + ACTIONS(6070), 1, anon_sym_POUND_LBRACE, - ACTIONS(6288), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(6290), 1, + ACTIONS(6208), 1, sym__quoted_content_i_heredoc_single, - ACTIONS(7038), 1, + ACTIONS(6998), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370646,17 +358910,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4482), 2, + STATE(4470), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [237762] = 7, - ACTIONS(6144), 1, + [238087] = 7, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(6282), 1, + ACTIONS(6200), 1, sym_escape_sequence, - ACTIONS(6284), 1, + ACTIONS(6202), 1, sym__quoted_content_i_single, - ACTIONS(7040), 1, + ACTIONS(7000), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370664,17 +358928,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4481), 2, + STATE(4469), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [237787] = 7, - ACTIONS(6136), 1, + [238112] = 7, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6194), 1, sym_escape_sequence, - ACTIONS(6278), 1, + ACTIONS(6196), 1, sym__quoted_content_i_double, - ACTIONS(7042), 1, + ACTIONS(7002), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -370682,36 +358946,36 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4507), 2, + STATE(4495), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [237812] = 7, - ACTIONS(6128), 1, + [238137] = 7, + ACTIONS(6070), 1, anon_sym_POUND_LBRACE, - ACTIONS(7044), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7046), 1, + ACTIONS(7004), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7006), 1, sym_escape_sequence, - ACTIONS(7048), 1, - sym__quoted_content_i_heredoc_double, + ACTIONS(7008), 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(4607), 2, + STATE(4490), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [237837] = 7, - ACTIONS(6152), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + [238162] = 7, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(7050), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7052), 1, + ACTIONS(7010), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7012), 1, sym_escape_sequence, - ACTIONS(7054), 1, - sym__quoted_content_i_heredoc_single, + ACTIONS(7014), 1, + sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -370719,107 +358983,35 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, STATE(4608), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [237862] = 7, - ACTIONS(6128), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6130), 1, - sym_escape_sequence, - ACTIONS(6132), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(7056), 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, - [237887] = 7, - ACTIONS(6136), 1, + [238187] = 7, + ACTIONS(6038), 1, anon_sym_POUND_LBRACE, - ACTIONS(6276), 1, + ACTIONS(7016), 1, + anon_sym_SLASH, + ACTIONS(7018), 1, sym_escape_sequence, - ACTIONS(6278), 1, - sym__quoted_content_i_double, - ACTIONS(7058), 1, - anon_sym_DQUOTE, + ACTIONS(7020), 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(4507), 2, + STATE(4484), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [237912] = 7, - ACTIONS(6144), 1, + aux_sym__quoted_i_slash_repeat1, + [238212] = 7, + ACTIONS(6070), 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, - [237937] = 7, - ACTIONS(6152), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6288), 1, - sym_escape_sequence, - ACTIONS(6290), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(7062), 1, + ACTIONS(7022), 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, - [237962] = 7, - ACTIONS(6128), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6130), 1, + ACTIONS(7024), 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_SQUOTE, - ACTIONS(7068), 1, - sym_escape_sequence, - ACTIONS(7070), 1, - sym__quoted_content_i_single, + ACTIONS(7026), 1, + sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -370827,178 +359019,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4610), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [238037] = 7, - ACTIONS(6128), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6130), 1, - sym_escape_sequence, - ACTIONS(6132), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(7078), 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, - [238062] = 7, - ACTIONS(6152), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6288), 1, - sym_escape_sequence, - ACTIONS(6290), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(7080), 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, - [238087] = 7, - ACTIONS(6144), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6282), 1, - sym_escape_sequence, - ACTIONS(6284), 1, - sym__quoted_content_i_single, - ACTIONS(7082), 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, - [238112] = 7, - ACTIONS(6136), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6276), 1, - sym_escape_sequence, - ACTIONS(6278), 1, - sym__quoted_content_i_double, - ACTIONS(7084), 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, - [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, + ACTIONS(6096), 1, anon_sym_POUND_LBRACE, - ACTIONS(7110), 1, + ACTIONS(7028), 1, anon_sym_PIPE, - ACTIONS(7112), 1, + ACTIONS(7030), 1, sym_escape_sequence, - ACTIONS(7114), 1, + ACTIONS(7032), 1, sym__quoted_content_i_bar, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -371006,17 +359036,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4497), 2, + STATE(4485), 2, sym_interpolation, aux_sym__quoted_i_bar_repeat1, [238262] = 7, - ACTIONS(6186), 1, + ACTIONS(6104), 1, anon_sym_POUND_LBRACE, - ACTIONS(7116), 1, + ACTIONS(7034), 1, anon_sym_GT, - ACTIONS(7118), 1, + ACTIONS(7036), 1, sym_escape_sequence, - ACTIONS(7120), 1, + ACTIONS(7038), 1, sym__quoted_content_i_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -371024,342 +359054,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4499), 2, + STATE(4487), 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_RBRACE, - ACTIONS(7166), 1, - sym_escape_sequence, - ACTIONS(7168), 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(4668), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [238487] = 7, - ACTIONS(6194), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7170), 1, - anon_sym_RBRACK, - ACTIONS(7172), 1, - sym_escape_sequence, - ACTIONS(7174), 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(4669), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [238512] = 7, - ACTIONS(6186), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7176), 1, - anon_sym_GT, - ACTIONS(7178), 1, - sym_escape_sequence, - ACTIONS(7180), 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(4670), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [238537] = 7, - ACTIONS(6178), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7182), 1, - anon_sym_PIPE, - ACTIONS(7184), 1, - sym_escape_sequence, - ACTIONS(7186), 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(4671), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [238562] = 7, ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(7188), 1, - anon_sym_SLASH, - ACTIONS(7190), 1, + ACTIONS(7040), 1, + anon_sym_RPAREN, + ACTIONS(7042), 1, sym_escape_sequence, - ACTIONS(7192), 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(4672), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [238587] = 7, - ACTIONS(6144), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7194), 1, - anon_sym_SQUOTE, - ACTIONS(7196), 1, - sym_escape_sequence, - ACTIONS(7198), 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(4622), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [238612] = 7, - ACTIONS(6136), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7200), 1, - anon_sym_DQUOTE, - ACTIONS(7202), 1, - sym_escape_sequence, - ACTIONS(7204), 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(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, - 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, - [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_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, - 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(7044), 1, + sym__quoted_content_i_parenthesis, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -371368,16 +359074,34 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4644), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [238762] = 7, - ACTIONS(6152), 1, + aux_sym__quoted_i_parenthesis_repeat1, + [238312] = 7, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, - ACTIONS(7220), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7222), 1, + ACTIONS(7046), 1, + anon_sym_RBRACK, + ACTIONS(7048), 1, sym_escape_sequence, - ACTIONS(7224), 1, - sym__quoted_content_i_heredoc_single, + ACTIONS(7050), 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(4497), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [238337] = 7, + ACTIONS(6030), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7052), 1, + anon_sym_RBRACE, + ACTIONS(7054), 1, + sym_escape_sequence, + ACTIONS(7056), 1, + sym__quoted_content_i_curly, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -371386,16 +359110,34 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4645), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [238787] = 7, - ACTIONS(6144), 1, + aux_sym__quoted_i_curly_repeat1, + [238362] = 7, + ACTIONS(6030), 1, anon_sym_POUND_LBRACE, - ACTIONS(7226), 1, - anon_sym_SQUOTE, - ACTIONS(7228), 1, + ACTIONS(7058), 1, + anon_sym_RBRACE, + ACTIONS(7060), 1, sym_escape_sequence, - ACTIONS(7230), 1, - sym__quoted_content_i_single, + ACTIONS(7062), 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(4498), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [238387] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7064), 1, + anon_sym_RBRACK, + ACTIONS(7066), 1, + sym_escape_sequence, + ACTIONS(7068), 1, + sym__quoted_content_i_square, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -371404,412 +359146,106 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4664), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [238912] = 7, - ACTIONS(6178), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7248), 1, - anon_sym_PIPE, - ACTIONS(7250), 1, - sym_escape_sequence, - 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(4665), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [238937] = 7, + aux_sym__quoted_i_square_repeat1, + [238412] = 7, ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(7254), 1, - anon_sym_SLASH, - ACTIONS(7256), 1, - sym_escape_sequence, - 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(4666), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [238962] = 7, - ACTIONS(6202), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6314), 1, - sym_escape_sequence, - ACTIONS(6316), 1, - sym__quoted_content_i_parenthesis, - ACTIONS(7260), 1, + ACTIONS(7070), 1, anon_sym_RPAREN, + ACTIONS(7072), 1, + sym_escape_sequence, + ACTIONS(7074), 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, + STATE(4430), 2, sym_interpolation, aux_sym__quoted_i_parenthesis_repeat1, - [238987] = 7, - ACTIONS(6112), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6342), 1, - sym_escape_sequence, - ACTIONS(6344), 1, - sym__quoted_content_i_curly, - ACTIONS(7262), 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, - [239012] = 7, - ACTIONS(6144), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6282), 1, - sym_escape_sequence, - 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(7268), 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, - [239087] = 7, - ACTIONS(6128), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7270), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7272), 1, - sym_escape_sequence, - 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(7282), 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, - [239162] = 7, - ACTIONS(6178), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6364), 1, - sym_escape_sequence, - ACTIONS(6366), 1, - sym__quoted_content_i_bar, - ACTIONS(7284), 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, - [239187] = 7, + [238437] = 7, ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(6122), 1, - sym_escape_sequence, - 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, + ACTIONS(7076), 1, anon_sym_RPAREN, + ACTIONS(7078), 1, + sym_escape_sequence, + ACTIONS(7080), 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, + STATE(4655), 2, sym_interpolation, aux_sym__quoted_i_parenthesis_repeat1, - [239237] = 7, - ACTIONS(6112), 1, + [238462] = 7, + ACTIONS(6030), 1, anon_sym_POUND_LBRACE, - ACTIONS(6342), 1, - sym_escape_sequence, - ACTIONS(6344), 1, - sym__quoted_content_i_curly, - ACTIONS(7290), 1, + ACTIONS(7082), 1, anon_sym_RBRACE, + ACTIONS(7084), 1, + sym_escape_sequence, + ACTIONS(7086), 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(4582), 2, + STATE(4656), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, - [239262] = 7, - ACTIONS(6194), 1, + [238487] = 7, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, - ACTIONS(6352), 1, - sym_escape_sequence, - ACTIONS(6354), 1, - sym__quoted_content_i_square, - ACTIONS(7292), 1, + ACTIONS(7088), 1, anon_sym_RBRACK, + ACTIONS(7090), 1, + sym_escape_sequence, + ACTIONS(7092), 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(4561), 2, + STATE(4657), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, - [239287] = 7, - ACTIONS(6186), 1, + [238512] = 7, + ACTIONS(6104), 1, anon_sym_POUND_LBRACE, - ACTIONS(6358), 1, - sym_escape_sequence, - ACTIONS(6360), 1, - sym__quoted_content_i_angle, - ACTIONS(7294), 1, + ACTIONS(7094), 1, anon_sym_GT, + ACTIONS(7096), 1, + sym_escape_sequence, + ACTIONS(7098), 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, + STATE(4658), 2, sym_interpolation, aux_sym__quoted_i_angle_repeat1, - [239312] = 7, - ACTIONS(6178), 1, + [238537] = 7, + ACTIONS(6096), 1, anon_sym_POUND_LBRACE, - ACTIONS(6364), 1, - sym_escape_sequence, - ACTIONS(6366), 1, - sym__quoted_content_i_bar, - ACTIONS(7296), 1, + ACTIONS(7100), 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, - [239337] = 7, - ACTIONS(6120), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6122), 1, + ACTIONS(7102), 1, sym_escape_sequence, - ACTIONS(6124), 1, - sym__quoted_content_i_slash, - ACTIONS(7298), 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, - [239362] = 7, - ACTIONS(6144), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7300), 1, - anon_sym_SQUOTE, - ACTIONS(7302), 1, - sym_escape_sequence, - ACTIONS(7304), 1, - sym__quoted_content_i_single, + ACTIONS(7104), 1, + sym__quoted_content_i_bar, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -371818,16 +359254,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4659), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [239387] = 7, - ACTIONS(6136), 1, + aux_sym__quoted_i_bar_repeat1, + [238562] = 7, + ACTIONS(6038), 1, anon_sym_POUND_LBRACE, - ACTIONS(7306), 1, - anon_sym_DQUOTE, - ACTIONS(7308), 1, + ACTIONS(7106), 1, + anon_sym_SLASH, + ACTIONS(7108), 1, sym_escape_sequence, - ACTIONS(7310), 1, - sym__quoted_content_i_double, + ACTIONS(7110), 1, + sym__quoted_content_i_slash, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -371836,15 +359272,51 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4660), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [239412] = 7, - ACTIONS(6128), 1, + aux_sym__quoted_i_slash_repeat1, + [238587] = 7, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(6130), 1, + ACTIONS(7112), 1, + anon_sym_SQUOTE, + ACTIONS(7114), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(7116), 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(4610), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [238612] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7118), 1, + anon_sym_DQUOTE, + ACTIONS(7120), 1, + sym_escape_sequence, + ACTIONS(7122), 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(4611), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [238637] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, sym__quoted_content_i_heredoc_double, - ACTIONS(7312), 1, + ACTIONS(7124), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -371852,17 +359324,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4483), 2, + STATE(4471), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [239437] = 7, - ACTIONS(6152), 1, + [238662] = 7, + ACTIONS(6070), 1, anon_sym_POUND_LBRACE, - ACTIONS(6288), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(6290), 1, + ACTIONS(6208), 1, sym__quoted_content_i_heredoc_single, - ACTIONS(7314), 1, + ACTIONS(7126), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -371870,17 +359342,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4482), 2, + STATE(4470), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [239462] = 7, - ACTIONS(6144), 1, + [238687] = 7, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(6282), 1, + ACTIONS(6200), 1, sym_escape_sequence, - ACTIONS(6284), 1, + ACTIONS(6202), 1, sym__quoted_content_i_single, - ACTIONS(7316), 1, + ACTIONS(7128), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -371888,17 +359360,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4481), 2, + STATE(4469), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [239487] = 7, - ACTIONS(6136), 1, + [238712] = 7, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6194), 1, sym_escape_sequence, - ACTIONS(6278), 1, + ACTIONS(6196), 1, sym__quoted_content_i_double, - ACTIONS(7318), 1, + ACTIONS(7130), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -371906,17 +359378,863 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4507), 2, + STATE(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [238737] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7132), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7134), 1, + sym_escape_sequence, + ACTIONS(7136), 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(4632), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [238762] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7138), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7140), 1, + sym_escape_sequence, + ACTIONS(7142), 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(4633), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [238787] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7144), 1, + anon_sym_SQUOTE, + ACTIONS(7146), 1, + sym_escape_sequence, + ACTIONS(7148), 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(4634), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [238812] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7150), 1, + anon_sym_DQUOTE, + ACTIONS(7152), 1, + sym_escape_sequence, + ACTIONS(7154), 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(4635), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [238837] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7156), 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [238862] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7158), 1, + anon_sym_GT, + ACTIONS(7160), 1, + sym_escape_sequence, + ACTIONS(7162), 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(4649), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [238887] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7164), 1, + anon_sym_PIPE, + ACTIONS(7166), 1, + sym_escape_sequence, + ACTIONS(7168), 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(4653), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [238912] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7170), 1, + anon_sym_SLASH, + ACTIONS(7172), 1, + sym_escape_sequence, + ACTIONS(7174), 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(4654), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [238937] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6232), 1, + sym_escape_sequence, + ACTIONS(6234), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7176), 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(4573), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [238962] = 7, + ACTIONS(6030), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6260), 1, + sym_escape_sequence, + ACTIONS(6262), 1, + sym__quoted_content_i_curly, + ACTIONS(7178), 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(4570), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [238987] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6270), 1, + sym_escape_sequence, + ACTIONS(6272), 1, + sym__quoted_content_i_square, + ACTIONS(7180), 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(4549), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [239012] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(6208), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7182), 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(4470), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [239037] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(7184), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [239062] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_angle, + ACTIONS(7186), 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(4540), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [239087] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, + sym__quoted_content_i_double, + ACTIONS(7188), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [239112] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7190), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7192), 1, + sym_escape_sequence, + ACTIONS(7194), 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(4640), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [239137] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7196), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7198), 1, + sym_escape_sequence, + ACTIONS(7200), 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(4647), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [239162] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_bar, + ACTIONS(7202), 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(4537), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [239187] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6040), 1, + sym_escape_sequence, + ACTIONS(6042), 1, + sym__quoted_content_i_slash, + ACTIONS(7204), 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(4536), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [239212] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6232), 1, + sym_escape_sequence, + ACTIONS(6234), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7206), 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(4573), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [239237] = 7, + ACTIONS(6030), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6260), 1, + sym_escape_sequence, + ACTIONS(6262), 1, + sym__quoted_content_i_curly, + ACTIONS(7208), 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(4570), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [239262] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6270), 1, + sym_escape_sequence, + ACTIONS(6272), 1, + sym__quoted_content_i_square, + ACTIONS(7210), 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(4549), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [239287] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_angle, + ACTIONS(7212), 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(4540), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [239312] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_bar, + ACTIONS(7214), 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(4537), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [239337] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6040), 1, + sym_escape_sequence, + ACTIONS(6042), 1, + sym__quoted_content_i_slash, + ACTIONS(7216), 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(4536), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [239362] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7218), 1, + anon_sym_SQUOTE, + ACTIONS(7220), 1, + sym_escape_sequence, + ACTIONS(7222), 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(4648), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [239387] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7224), 1, + anon_sym_DQUOTE, + ACTIONS(7226), 1, + sym_escape_sequence, + ACTIONS(7228), 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(4650), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [239412] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7230), 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [239437] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(6208), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7232), 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(4470), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [239462] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(7234), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [239487] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, + sym__quoted_content_i_double, + ACTIONS(7236), 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(4495), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, [239512] = 7, - ACTIONS(6128), 1, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(7320), 1, + ACTIONS(7238), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7322), 1, + ACTIONS(7240), 1, sym_escape_sequence, - ACTIONS(7324), 1, + ACTIONS(7242), 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(4663), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [239537] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7244), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7246), 1, + sym_escape_sequence, + ACTIONS(7248), 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(4664), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [239562] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7250), 1, + anon_sym_SQUOTE, + ACTIONS(7252), 1, + sym_escape_sequence, + ACTIONS(7254), 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(4665), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [239587] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7256), 1, + anon_sym_DQUOTE, + ACTIONS(7258), 1, + sym_escape_sequence, + ACTIONS(7260), 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(4666), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [239612] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7262), 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [239637] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7264), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7266), 1, + sym_escape_sequence, + ACTIONS(7268), 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(4488), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [239662] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(6208), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7270), 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(4470), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [239687] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(7272), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [239712] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7274), 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [239737] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7276), 1, + anon_sym_DQUOTE, + ACTIONS(7278), 1, + sym_escape_sequence, + ACTIONS(7280), 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(4747), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [239762] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(6208), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7282), 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(4470), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [239787] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(7284), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [239812] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, + sym__quoted_content_i_double, + ACTIONS(7286), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [239837] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7288), 1, + anon_sym_SQUOTE, + ACTIONS(7290), 1, + sym_escape_sequence, + ACTIONS(7292), 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(4752), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [239862] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, + sym__quoted_content_i_double, + ACTIONS(7294), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [239887] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7296), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7298), 1, + sym_escape_sequence, + ACTIONS(7300), 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(4671), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [239912] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7302), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7304), 1, + sym_escape_sequence, + ACTIONS(7306), 1, sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -371927,8 +360245,62 @@ static const uint16_t ts_small_parse_table[] = { STATE(4675), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [239537] = 7, - ACTIONS(6152), 1, + [239937] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7308), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7310), 1, + sym_escape_sequence, + ACTIONS(7312), 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(4677), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [239962] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7314), 1, + anon_sym_SQUOTE, + ACTIONS(7316), 1, + sym_escape_sequence, + ACTIONS(7318), 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(4678), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [239987] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7320), 1, + anon_sym_DQUOTE, + ACTIONS(7322), 1, + sym_escape_sequence, + ACTIONS(7324), 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(4679), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [240012] = 7, + ACTIONS(6070), 1, anon_sym_POUND_LBRACE, ACTIONS(7326), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, @@ -371942,17 +360314,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4676), 2, + STATE(4673), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [239562] = 7, - ACTIONS(6144), 1, + [240037] = 7, + ACTIONS(6038), 1, anon_sym_POUND_LBRACE, ACTIONS(7332), 1, - anon_sym_SQUOTE, + anon_sym_SLASH, ACTIONS(7334), 1, sym_escape_sequence, ACTIONS(7336), 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(4534), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [240062] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7338), 1, + anon_sym_SQUOTE, + ACTIONS(7340), 1, + sym_escape_sequence, + ACTIONS(7342), 1, sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -371960,17 +360350,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4677), 2, + STATE(4674), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [239587] = 7, - ACTIONS(6136), 1, + [240087] = 7, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(7338), 1, + ACTIONS(7344), 1, anon_sym_DQUOTE, - ACTIONS(7340), 1, + ACTIONS(7346), 1, sym_escape_sequence, - ACTIONS(7342), 1, + ACTIONS(7348), 1, sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -371978,51 +360368,33 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4678), 2, + STATE(4681), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [239612] = 7, - ACTIONS(6128), 1, + [240112] = 7, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(6130), 1, + ACTIONS(6048), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6050), 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, + 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(4500), 2, + STATE(4471), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [239662] = 7, - ACTIONS(6152), 1, + [240137] = 7, + ACTIONS(6070), 1, anon_sym_POUND_LBRACE, - ACTIONS(6288), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(6290), 1, + ACTIONS(6208), 1, sym__quoted_content_i_heredoc_single, ACTIONS(7352), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, @@ -372032,197 +360404,53 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4482), 2, + STATE(4470), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [239687] = 7, - ACTIONS(6144), 1, + [240162] = 7, + ACTIONS(6054), 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, + anon_sym_DQUOTE, 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, + sym_escape_sequence, ACTIONS(7358), 1, - anon_sym_DQUOTE, + 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(4705), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [240187] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, ACTIONS(7360), 1, - sym_escape_sequence, + anon_sym_SQUOTE, 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, + 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(4482), 2, + STATE(4706), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [239787] = 7, - ACTIONS(6144), 1, + aux_sym__quoted_i_single_repeat1, + [240212] = 7, + ACTIONS(6070), 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, + ACTIONS(7368), 1, sym_escape_sequence, - ACTIONS(7394), 1, + ACTIONS(7370), 1, sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -372230,36 +360458,72 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4689), 2, + STATE(4707), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [239962] = 7, - ACTIONS(6144), 1, + [240237] = 7, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(7396), 1, - anon_sym_SQUOTE, - ACTIONS(7398), 1, + ACTIONS(7372), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7374), 1, sym_escape_sequence, - ACTIONS(7400), 1, - sym__quoted_content_i_single, + ACTIONS(7376), 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(4690), 2, + STATE(4708), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [240262] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(7378), 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(4469), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [239987] = 7, - ACTIONS(6136), 1, + [240287] = 7, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(7402), 1, - anon_sym_DQUOTE, - ACTIONS(7404), 1, + ACTIONS(6194), 1, sym_escape_sequence, - ACTIONS(7406), 1, + ACTIONS(6196), 1, sym__quoted_content_i_double, + ACTIONS(7380), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [240312] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7382), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7384), 1, + sym_escape_sequence, + ACTIONS(7386), 1, + sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -372267,232 +360531,322 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, STATE(4691), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [240337] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7388), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7390), 1, + sym_escape_sequence, + ACTIONS(7392), 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(4692), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [240362] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7394), 1, + anon_sym_SQUOTE, + ACTIONS(7396), 1, + sym_escape_sequence, + ACTIONS(7398), 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(4697), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [240387] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7400), 1, + anon_sym_DQUOTE, + ACTIONS(7402), 1, + sym_escape_sequence, + ACTIONS(7404), 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(4698), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [240012] = 7, - ACTIONS(6152), 1, + [240412] = 7, + ACTIONS(6030), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6260), 1, + sym_escape_sequence, + ACTIONS(6262), 1, + sym__quoted_content_i_curly, + ACTIONS(7406), 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(4570), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [240437] = 7, + ACTIONS(6096), 1, anon_sym_POUND_LBRACE, ACTIONS(7408), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, + anon_sym_PIPE, ACTIONS(7410), 1, sym_escape_sequence, ACTIONS(7412), 1, - sym__quoted_content_i_heredoc_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(4685), 2, + STATE(4550), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [240037] = 7, - ACTIONS(6120), 1, + aux_sym__quoted_i_bar_repeat1, + [240462] = 7, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, + sym__quoted_content_i_double, ACTIONS(7414), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [240487] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, ACTIONS(7416), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [240512] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, sym_escape_sequence, + ACTIONS(6208), 1, + sym__quoted_content_i_heredoc_single, ACTIONS(7418), 1, - sym__quoted_content_i_slash, + 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(4546), 2, + STATE(4470), 2, sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [240062] = 7, - ACTIONS(6144), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + [240537] = 7, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, ACTIONS(7420), 1, - anon_sym_SQUOTE, + 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [240562] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, ACTIONS(7422), 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [240587] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, sym_escape_sequence, + ACTIONS(6208), 1, + sym__quoted_content_i_heredoc_single, ACTIONS(7424), 1, - sym__quoted_content_i_single, + 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(4686), 2, + STATE(4470), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [240087] = 7, - ACTIONS(6136), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + [240612] = 7, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, 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, - 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, - [240162] = 7, - ACTIONS(6136), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7436), 1, - anon_sym_DQUOTE, - ACTIONS(7438), 1, - sym_escape_sequence, - ACTIONS(7440), 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(4717), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [240187] = 7, - ACTIONS(6144), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7442), 1, anon_sym_SQUOTE, - ACTIONS(7444), 1, - sym_escape_sequence, - ACTIONS(7446), 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(4718), 2, + STATE(4469), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, - [240212] = 7, - ACTIONS(6152), 1, + [240637] = 7, + ACTIONS(6070), 1, anon_sym_POUND_LBRACE, - ACTIONS(7448), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7450), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(7452), 1, + ACTIONS(6208), 1, sym__quoted_content_i_heredoc_single, + ACTIONS(7428), 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(4719), 2, + STATE(4470), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [240237] = 7, - ACTIONS(6128), 1, + [240662] = 7, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(7454), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7456), 1, + ACTIONS(6194), 1, sym_escape_sequence, - ACTIONS(7458), 1, - sym__quoted_content_i_heredoc_double, + ACTIONS(6196), 1, + sym__quoted_content_i_double, + ACTIONS(7430), 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(4720), 2, + STATE(4495), 2, sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [240262] = 7, - ACTIONS(6144), 1, + aux_sym__quoted_i_double_repeat1, + [240687] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7432), 1, + anon_sym_GT, + ACTIONS(7434), 1, + sym_escape_sequence, + ACTIONS(7436), 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(4551), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [240712] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7438), 1, + anon_sym_RBRACK, + ACTIONS(7440), 1, + sym_escape_sequence, + ACTIONS(7442), 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(4569), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [240737] = 7, + ACTIONS(6096), 1, anon_sym_POUND_LBRACE, ACTIONS(6282), 1, sym_escape_sequence, ACTIONS(6284), 1, - sym__quoted_content_i_single, - ACTIONS(7460), 1, - anon_sym_SQUOTE, + sym__quoted_content_i_bar, + ACTIONS(7444), 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(4481), 2, + STATE(4537), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [240287] = 7, - ACTIONS(6136), 1, + aux_sym__quoted_i_bar_repeat1, + [240762] = 7, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(6276), 1, - sym_escape_sequence, - ACTIONS(6278), 1, - sym__quoted_content_i_double, - ACTIONS(7462), 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, - [240312] = 7, - ACTIONS(6128), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7464), 1, + ACTIONS(7446), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7466), 1, + ACTIONS(7448), 1, sym_escape_sequence, - ACTIONS(7468), 1, + ACTIONS(7450), 1, sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -372500,54 +360854,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + aux_sym__quoted_i_heredoc_double_repeat1, + [240787] = 7, + ACTIONS(6070), 1, anon_sym_POUND_LBRACE, - ACTIONS(7482), 1, - anon_sym_DQUOTE, - ACTIONS(7484), 1, + ACTIONS(7452), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7454), 1, sym_escape_sequence, - ACTIONS(7486), 1, - sym__quoted_content_i_double, + ACTIONS(7456), 1, + sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -372556,250 +360874,70 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4710), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [240412] = 7, - ACTIONS(6112), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + [240812] = 7, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(6342), 1, + ACTIONS(7458), 1, + anon_sym_SQUOTE, + ACTIONS(7460), 1, sym_escape_sequence, - ACTIONS(6344), 1, - sym__quoted_content_i_curly, - ACTIONS(7488), 1, - anon_sym_RBRACE, + ACTIONS(7462), 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(4582), 2, + STATE(4711), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [240837] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7464), 1, + anon_sym_DQUOTE, + ACTIONS(7466), 1, + sym_escape_sequence, + ACTIONS(7468), 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(4713), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [240862] = 7, + ACTIONS(6030), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7470), 1, + anon_sym_RBRACE, + ACTIONS(7472), 1, + sym_escape_sequence, + ACTIONS(7474), 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(4579), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, - [240437] = 7, - ACTIONS(6178), 1, + [240887] = 7, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, - ACTIONS(7490), 1, - anon_sym_PIPE, - ACTIONS(7492), 1, + ACTIONS(6270), 1, sym_escape_sequence, - ACTIONS(7494), 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(4562), 2, - sym_interpolation, - 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_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, - 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, - [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_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, - [240562] = 7, - ACTIONS(6128), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6130), 1, - sym_escape_sequence, - 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(4483), 2, - sym_interpolation, - 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_GT, - ACTIONS(7516), 1, - sym_escape_sequence, - ACTIONS(7518), 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(4563), 2, - sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [240712] = 7, - ACTIONS(6194), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7520), 1, - anon_sym_RBRACK, - ACTIONS(7522), 1, - sym_escape_sequence, - ACTIONS(7524), 1, + ACTIONS(6272), 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(4581), 2, - sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [240737] = 7, - ACTIONS(6178), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6364), 1, - sym_escape_sequence, - ACTIONS(6366), 1, - sym__quoted_content_i_bar, - ACTIONS(7526), 1, - anon_sym_PIPE, + ACTIONS(7476), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -372807,124 +360945,16 @@ static const uint16_t ts_small_parse_table[] = { 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, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4591), 2, - sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [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, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(7560), 1, + ACTIONS(7478), 1, anon_sym_RPAREN, - ACTIONS(7562), 1, + ACTIONS(7480), 1, sym_escape_sequence, - ACTIONS(7564), 1, + ACTIONS(7482), 1, sym__quoted_content_i_parenthesis, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -372932,17 +360962,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4593), 2, + STATE(4581), 2, sym_interpolation, aux_sym__quoted_i_parenthesis_repeat1, [240937] = 7, - ACTIONS(6186), 1, + ACTIONS(6104), 1, anon_sym_POUND_LBRACE, - ACTIONS(6358), 1, + ACTIONS(6276), 1, sym_escape_sequence, - ACTIONS(6360), 1, + ACTIONS(6278), 1, sym__quoted_content_i_angle, - ACTIONS(7566), 1, + ACTIONS(7484), 1, anon_sym_GT, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -372950,17 +360980,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4552), 2, + STATE(4540), 2, sym_interpolation, aux_sym__quoted_i_angle_repeat1, [240962] = 7, - ACTIONS(6152), 1, + ACTIONS(6070), 1, anon_sym_POUND_LBRACE, - ACTIONS(7568), 1, + ACTIONS(7486), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7570), 1, + ACTIONS(7488), 1, sym_escape_sequence, - ACTIONS(7572), 1, + ACTIONS(7490), 1, sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -372968,17 +360998,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4768), 2, + STATE(4756), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, [240987] = 7, - ACTIONS(6194), 1, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, - ACTIONS(6352), 1, + ACTIONS(6270), 1, sym_escape_sequence, - ACTIONS(6354), 1, + ACTIONS(6272), 1, sym__quoted_content_i_square, - ACTIONS(7574), 1, + ACTIONS(7492), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -372986,17 +361016,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4561), 2, + STATE(4549), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, [241012] = 7, - ACTIONS(6202), 1, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(7576), 1, + ACTIONS(7494), 1, anon_sym_RPAREN, - ACTIONS(7578), 1, + ACTIONS(7496), 1, sym_escape_sequence, - ACTIONS(7580), 1, + ACTIONS(7498), 1, sym__quoted_content_i_parenthesis, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -373004,18 +361034,936 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, + STATE(4758), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [241037] = 7, + ACTIONS(6030), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7500), 1, + anon_sym_RBRACE, + ACTIONS(7502), 1, + sym_escape_sequence, + ACTIONS(7504), 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(4759), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [241062] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7506), 1, + anon_sym_RBRACK, + ACTIONS(7508), 1, + sym_escape_sequence, + ACTIONS(7510), 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(4760), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [241087] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7512), 1, + anon_sym_GT, + ACTIONS(7514), 1, + sym_escape_sequence, + ACTIONS(7516), 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(4761), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [241112] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7518), 1, + anon_sym_PIPE, + ACTIONS(7520), 1, + sym_escape_sequence, + ACTIONS(7522), 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(4762), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [241137] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7524), 1, + anon_sym_SLASH, + ACTIONS(7526), 1, + sym_escape_sequence, + ACTIONS(7528), 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(4763), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [241162] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6040), 1, + sym_escape_sequence, + ACTIONS(6042), 1, + sym__quoted_content_i_slash, + ACTIONS(7530), 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(4536), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [241187] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_bar, + ACTIONS(7532), 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(4537), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [241212] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_angle, + ACTIONS(7534), 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(4540), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [241237] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6270), 1, + sym_escape_sequence, + ACTIONS(6272), 1, + sym__quoted_content_i_square, + ACTIONS(7536), 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(4549), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [241262] = 7, + ACTIONS(6030), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6260), 1, + sym_escape_sequence, + ACTIONS(6262), 1, + sym__quoted_content_i_curly, + ACTIONS(7538), 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(4570), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [241287] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6232), 1, + sym_escape_sequence, + ACTIONS(6234), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7540), 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(4573), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [241312] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7542), 1, + anon_sym_SLASH, + ACTIONS(7544), 1, + sym_escape_sequence, + ACTIONS(7546), 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(4733), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [241337] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7548), 1, + anon_sym_PIPE, + ACTIONS(7550), 1, + sym_escape_sequence, + ACTIONS(7552), 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(4734), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [241362] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7554), 1, + anon_sym_GT, + ACTIONS(7556), 1, + sym_escape_sequence, + ACTIONS(7558), 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(4735), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [241387] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7560), 1, + anon_sym_RBRACK, + ACTIONS(7562), 1, + sym_escape_sequence, + ACTIONS(7564), 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(4736), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [241412] = 7, + ACTIONS(6030), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7566), 1, + anon_sym_RBRACE, + ACTIONS(7568), 1, + sym_escape_sequence, + ACTIONS(7570), 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(4737), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [241437] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7572), 1, + anon_sym_RPAREN, + ACTIONS(7574), 1, + sym_escape_sequence, + ACTIONS(7576), 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(4738), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [241462] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_angle, + ACTIONS(7578), 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(4540), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [241487] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7580), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7582), 1, + sym_escape_sequence, + ACTIONS(7584), 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(4757), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [241512] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, + sym__quoted_content_i_double, + ACTIONS(7586), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [241537] = 7, + ACTIONS(6030), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6260), 1, + sym_escape_sequence, + ACTIONS(6262), 1, + sym__quoted_content_i_curly, + ACTIONS(7588), 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(4570), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [241562] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_bar, + ACTIONS(7590), 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(4537), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [241587] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6040), 1, + sym_escape_sequence, + ACTIONS(6042), 1, + sym__quoted_content_i_slash, + ACTIONS(7592), 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(4536), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [241612] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6232), 1, + sym_escape_sequence, + ACTIONS(6234), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7594), 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(4573), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [241637] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(7596), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [241662] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7598), 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [241687] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(6208), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7600), 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(4470), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [241712] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(7602), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [241737] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(6208), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7604), 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(4470), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [241762] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7606), 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [241787] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6232), 1, + sym_escape_sequence, + ACTIONS(6234), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7608), 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(4573), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [241812] = 7, + ACTIONS(6030), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6260), 1, + sym_escape_sequence, + ACTIONS(6262), 1, + sym__quoted_content_i_curly, + ACTIONS(7610), 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(4570), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [241837] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6270), 1, + sym_escape_sequence, + ACTIONS(6272), 1, + sym__quoted_content_i_square, + ACTIONS(7612), 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(4549), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [241862] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_angle, + ACTIONS(7614), 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(4540), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [241887] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_bar, + ACTIONS(7616), 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(4537), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [241912] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6040), 1, + sym_escape_sequence, + ACTIONS(6042), 1, + sym__quoted_content_i_slash, + ACTIONS(7618), 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(4536), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [241937] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, + sym__quoted_content_i_double, + ACTIONS(7620), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [241962] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7622), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7624), 1, + sym_escape_sequence, + ACTIONS(7626), 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(4753), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [241987] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7628), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7630), 1, + sym_escape_sequence, + ACTIONS(7632), 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(4754), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [242012] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7634), 1, + anon_sym_SQUOTE, + ACTIONS(7636), 1, + sym_escape_sequence, + ACTIONS(7638), 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(4755), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [242037] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7640), 1, + anon_sym_DQUOTE, + ACTIONS(7642), 1, + sym_escape_sequence, + ACTIONS(7644), 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(4764), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [242062] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6040), 1, + sym_escape_sequence, + ACTIONS(6042), 1, + sym__quoted_content_i_slash, + ACTIONS(7646), 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(4536), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [242087] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 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(4537), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [242112] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_angle, + ACTIONS(7650), 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(4540), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [242137] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6270), 1, + sym_escape_sequence, + ACTIONS(6272), 1, + sym__quoted_content_i_square, + ACTIONS(7652), 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(4549), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [242162] = 7, + ACTIONS(6030), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6260), 1, + sym_escape_sequence, + ACTIONS(6262), 1, + sym__quoted_content_i_curly, + ACTIONS(7654), 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(4570), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [242187] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6232), 1, + sym_escape_sequence, + ACTIONS(6234), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7656), 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(4573), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [242212] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7658), 1, + anon_sym_SQUOTE, + ACTIONS(7660), 1, + sym_escape_sequence, + ACTIONS(7662), 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(4501), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [242237] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7664), 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [242262] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7666), 1, + anon_sym_SLASH, + ACTIONS(7668), 1, + sym_escape_sequence, + ACTIONS(7670), 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(4769), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [242287] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7672), 1, + anon_sym_PIPE, + ACTIONS(7674), 1, + sym_escape_sequence, + ACTIONS(7676), 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(4770), 2, sym_interpolation, - aux_sym__quoted_i_parenthesis_repeat1, - [241037] = 7, - ACTIONS(6112), 1, + aux_sym__quoted_i_bar_repeat1, + [242312] = 7, + ACTIONS(6104), 1, anon_sym_POUND_LBRACE, - ACTIONS(7582), 1, - anon_sym_RBRACE, - ACTIONS(7584), 1, + ACTIONS(7678), 1, + anon_sym_GT, + ACTIONS(7680), 1, sym_escape_sequence, - ACTIONS(7586), 1, - sym__quoted_content_i_curly, + ACTIONS(7682), 1, + sym__quoted_content_i_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -373024,15 +361972,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4771), 2, sym_interpolation, - aux_sym__quoted_i_curly_repeat1, - [241062] = 7, - ACTIONS(6194), 1, + aux_sym__quoted_i_angle_repeat1, + [242337] = 7, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, - ACTIONS(7588), 1, + ACTIONS(7684), 1, anon_sym_RBRACK, - ACTIONS(7590), 1, + ACTIONS(7686), 1, sym_escape_sequence, - ACTIONS(7592), 1, + ACTIONS(7688), 1, sym__quoted_content_i_square, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -373043,15 +361991,15 @@ static const uint16_t ts_small_parse_table[] = { STATE(4772), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, - [241087] = 7, - ACTIONS(6186), 1, + [242362] = 7, + ACTIONS(6030), 1, anon_sym_POUND_LBRACE, - ACTIONS(7594), 1, - anon_sym_GT, - ACTIONS(7596), 1, + ACTIONS(7690), 1, + anon_sym_RBRACE, + ACTIONS(7692), 1, sym_escape_sequence, - ACTIONS(7598), 1, - sym__quoted_content_i_angle, + ACTIONS(7694), 1, + sym__quoted_content_i_curly, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -373060,16 +362008,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4773), 2, sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [241112] = 7, - ACTIONS(6178), 1, + aux_sym__quoted_i_curly_repeat1, + [242387] = 7, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(7600), 1, - anon_sym_PIPE, - ACTIONS(7602), 1, + ACTIONS(7696), 1, + anon_sym_RPAREN, + ACTIONS(7698), 1, sym_escape_sequence, - ACTIONS(7604), 1, - sym__quoted_content_i_bar, + ACTIONS(7700), 1, + sym__quoted_content_i_parenthesis, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -373077,593 +362025,71 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, STATE(4774), 2, - sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [241137] = 7, - ACTIONS(6120), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7606), 1, - anon_sym_SLASH, - ACTIONS(7608), 1, - sym_escape_sequence, - ACTIONS(7610), 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(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, + [242412] = 7, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(7624), 1, - anon_sym_SLASH, - ACTIONS(7626), 1, + ACTIONS(6048), 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, + ACTIONS(6050), 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, - [241537] = 7, - ACTIONS(6112), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6342), 1, - sym_escape_sequence, - ACTIONS(6344), 1, - sym__quoted_content_i_curly, - ACTIONS(7670), 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, - [241562] = 7, - ACTIONS(6178), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6364), 1, - sym_escape_sequence, - 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(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, - [241637] = 7, - ACTIONS(6144), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6282), 1, - sym_escape_sequence, - 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(7680), 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, - [241687] = 7, - ACTIONS(6152), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6288), 1, - sym_escape_sequence, - ACTIONS(6290), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(7682), 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, - [241712] = 7, - ACTIONS(6144), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6282), 1, - sym_escape_sequence, - ACTIONS(6284), 1, - sym__quoted_content_i_single, - ACTIONS(7684), 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, - [241737] = 7, - ACTIONS(6152), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6288), 1, - sym_escape_sequence, - 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_DQUOTE_DQUOTE, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(5), 2, + aux_sym__terminator_token1, + sym_comment, + STATE(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [242437] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(6208), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7704), 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(4470), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [242462] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(7706), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [242487] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7708), 1, anon_sym_DQUOTE, + ACTIONS(7710), 1, + sym_escape_sequence, + ACTIONS(7712), 1, + sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -373673,267 +362099,51 @@ static const uint16_t ts_small_parse_table[] = { STATE(4507), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, - [241962] = 7, - ACTIONS(6128), 1, + [242512] = 7, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(7704), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7706), 1, - sym_escape_sequence, - ACTIONS(7708), 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(4765), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_double_repeat1, - [241987] = 7, - ACTIONS(6152), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7710), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7712), 1, - sym_escape_sequence, ACTIONS(7714), 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(4766), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [242012] = 7, - ACTIONS(6144), 1, - anon_sym_POUND_LBRACE, + anon_sym_DQUOTE, ACTIONS(7716), 1, - anon_sym_SQUOTE, - ACTIONS(7718), 1, sym_escape_sequence, - ACTIONS(7720), 1, - sym__quoted_content_i_single, + ACTIONS(7718), 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(4767), 2, + STATE(4886), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [242037] = 7, - ACTIONS(6136), 1, + aux_sym__quoted_i_double_repeat1, + [242537] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, + sym__quoted_content_i_double, + ACTIONS(7720), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [242562] = 7, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, ACTIONS(7722), 1, - anon_sym_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(7724), 1, sym_escape_sequence, ACTIONS(7726), 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(4776), 2, - sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [242062] = 7, - ACTIONS(6120), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6122), 1, - sym_escape_sequence, - 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(4548), 2, - sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [242087] = 7, - ACTIONS(6178), 1, - anon_sym_POUND_LBRACE, - 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, - sym__newline_before_comment, - ACTIONS(5), 2, - aux_sym__terminator_token1, - sym_comment, - STATE(4513), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [242237] = 7, - ACTIONS(6128), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6130), 1, - sym_escape_sequence, - ACTIONS(6132), 1, sym__quoted_content_i_heredoc_double, - ACTIONS(7746), 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, - [242262] = 7, - ACTIONS(6120), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7748), 1, - anon_sym_SLASH, - ACTIONS(7750), 1, - sym_escape_sequence, - ACTIONS(7752), 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(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, - ACTIONS(7758), 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(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, - ACTIONS(7764), 1, - sym__quoted_content_i_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -373942,16 +362152,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4783), 2, sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [242337] = 7, - ACTIONS(6194), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + [242587] = 7, + ACTIONS(6070), 1, anon_sym_POUND_LBRACE, - ACTIONS(7766), 1, - anon_sym_RBRACK, - ACTIONS(7768), 1, + ACTIONS(7728), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7730), 1, sym_escape_sequence, - ACTIONS(7770), 1, - sym__quoted_content_i_square, + ACTIONS(7732), 1, + sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -373960,16 +362170,16 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4784), 2, sym_interpolation, - aux_sym__quoted_i_square_repeat1, - [242362] = 7, - ACTIONS(6112), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + [242612] = 7, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(7772), 1, - anon_sym_RBRACE, - ACTIONS(7774), 1, + ACTIONS(7734), 1, + anon_sym_SQUOTE, + ACTIONS(7736), 1, sym_escape_sequence, - ACTIONS(7776), 1, - sym__quoted_content_i_curly, + ACTIONS(7738), 1, + sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -373977,196 +362187,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, 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, - ACTIONS(7782), 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(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, - ACTIONS(6132), 1, - sym__quoted_content_i_heredoc_double, - ACTIONS(7784), 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, - [242437] = 7, - ACTIONS(6152), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6288), 1, - sym_escape_sequence, - ACTIONS(6290), 1, - sym__quoted_content_i_heredoc_single, - ACTIONS(7786), 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, - [242462] = 7, - ACTIONS(6144), 1, - anon_sym_POUND_LBRACE, - ACTIONS(6282), 1, - sym_escape_sequence, - 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, - STATE(4481), 2, - sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [242487] = 7, - ACTIONS(6136), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7790), 1, - anon_sym_DQUOTE, - ACTIONS(7792), 1, - sym_escape_sequence, - ACTIONS(7794), 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(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, - 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, - 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(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, - 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(7806), 1, - sym_escape_sequence, - 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, - 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(7812), 1, - sym_escape_sequence, - ACTIONS(7814), 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(4796), 2, - sym_interpolation, - aux_sym__quoted_i_heredoc_single_repeat1, - [242612] = 7, - ACTIONS(6144), 1, - anon_sym_POUND_LBRACE, - ACTIONS(7816), 1, - anon_sym_SQUOTE, - ACTIONS(7818), 1, - sym_escape_sequence, - 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, - STATE(4797), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, [242637] = 7, - ACTIONS(6136), 1, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(7822), 1, + ACTIONS(7740), 1, anon_sym_DQUOTE, - ACTIONS(7824), 1, + ACTIONS(7742), 1, sym_escape_sequence, - ACTIONS(7826), 1, + ACTIONS(7744), 1, sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -374174,17 +362204,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4800), 2, + STATE(4788), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, [242662] = 7, - ACTIONS(6202), 1, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(6314), 1, + ACTIONS(6232), 1, sym_escape_sequence, - ACTIONS(6316), 1, + ACTIONS(6234), 1, sym__quoted_content_i_parenthesis, - ACTIONS(7828), 1, + ACTIONS(7746), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -374192,17 +362222,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4585), 2, + STATE(4573), 2, sym_interpolation, aux_sym__quoted_i_parenthesis_repeat1, [242687] = 7, - ACTIONS(6120), 1, + ACTIONS(6038), 1, anon_sym_POUND_LBRACE, - ACTIONS(6122), 1, + ACTIONS(6040), 1, sym_escape_sequence, - ACTIONS(6124), 1, + ACTIONS(6042), 1, sym__quoted_content_i_slash, - ACTIONS(7830), 1, + ACTIONS(7748), 1, anon_sym_SLASH, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -374210,17 +362240,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4548), 2, + STATE(4536), 2, sym_interpolation, aux_sym__quoted_i_slash_repeat1, [242712] = 7, - ACTIONS(6178), 1, + ACTIONS(6096), 1, anon_sym_POUND_LBRACE, - ACTIONS(6364), 1, + ACTIONS(6282), 1, sym_escape_sequence, - ACTIONS(6366), 1, + ACTIONS(6284), 1, sym__quoted_content_i_bar, - ACTIONS(7832), 1, + ACTIONS(7750), 1, anon_sym_PIPE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -374228,71 +362258,791 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, + STATE(4537), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [242737] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7752), 1, + anon_sym_DQUOTE, + ACTIONS(7754), 1, + sym_escape_sequence, + ACTIONS(7756), 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(4808), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [242762] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7758), 1, + anon_sym_SQUOTE, + ACTIONS(7760), 1, + sym_escape_sequence, + ACTIONS(7762), 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(4809), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [242787] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7764), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7766), 1, + sym_escape_sequence, + ACTIONS(7768), 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(4810), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [242812] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7770), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7772), 1, + sym_escape_sequence, + ACTIONS(7774), 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(4811), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [242837] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_angle, + ACTIONS(7776), 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(4540), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [242862] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6040), 1, + sym_escape_sequence, + ACTIONS(6042), 1, + sym__quoted_content_i_slash, + ACTIONS(7778), 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(4536), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [242887] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_bar, + ACTIONS(7780), 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(4537), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [242912] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6270), 1, + sym_escape_sequence, + ACTIONS(6272), 1, + sym__quoted_content_i_square, + ACTIONS(7782), 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(4549), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [242937] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_angle, + ACTIONS(7784), 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(4540), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [242962] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6270), 1, + sym_escape_sequence, + ACTIONS(6272), 1, + sym__quoted_content_i_square, + ACTIONS(7786), 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(4549), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [242987] = 7, + ACTIONS(6030), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6260), 1, + sym_escape_sequence, + ACTIONS(6262), 1, + sym__quoted_content_i_curly, + ACTIONS(7788), 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(4570), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [243012] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7790), 1, + anon_sym_RPAREN, + ACTIONS(7792), 1, + sym_escape_sequence, + ACTIONS(7794), 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(4854), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [243037] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, + sym__quoted_content_i_double, + ACTIONS(7796), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [243062] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(7798), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [243087] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(6208), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7800), 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(4470), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [243112] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7802), 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [243137] = 7, + ACTIONS(6030), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6260), 1, + sym_escape_sequence, + ACTIONS(6262), 1, + sym__quoted_content_i_curly, + ACTIONS(7804), 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(4570), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [243162] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6232), 1, + sym_escape_sequence, + ACTIONS(6234), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7806), 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(4573), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [243187] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7808), 1, + anon_sym_SLASH, + ACTIONS(7810), 1, + sym_escape_sequence, + ACTIONS(7812), 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(4794), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [243212] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7814), 1, + anon_sym_PIPE, + ACTIONS(7816), 1, + sym_escape_sequence, + ACTIONS(7818), 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(4795), 2, sym_interpolation, aux_sym__quoted_i_bar_repeat1, - [242737] = 7, - ACTIONS(6136), 1, + [243237] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7820), 1, + anon_sym_GT, + ACTIONS(7822), 1, + sym_escape_sequence, + ACTIONS(7824), 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(4800), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [243262] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6232), 1, + sym_escape_sequence, + ACTIONS(6234), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7826), 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(4573), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [243287] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7828), 1, + anon_sym_RBRACK, + ACTIONS(7830), 1, + sym_escape_sequence, + ACTIONS(7832), 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(4881), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [243312] = 7, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, ACTIONS(7834), 1, - anon_sym_DQUOTE, + anon_sym_RBRACK, ACTIONS(7836), 1, sym_escape_sequence, ACTIONS(7838), 1, - sym__quoted_content_i_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(4820), 2, + STATE(4803), 2, sym_interpolation, - aux_sym__quoted_i_double_repeat1, - [242762] = 7, - ACTIONS(6144), 1, + aux_sym__quoted_i_square_repeat1, + [243337] = 7, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, ACTIONS(7840), 1, - anon_sym_SQUOTE, - ACTIONS(7842), 1, - sym_escape_sequence, - ACTIONS(7844), 1, - sym__quoted_content_i_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(4821), 2, + STATE(4471), 2, sym_interpolation, - aux_sym__quoted_i_single_repeat1, - [242787] = 7, - ACTIONS(6152), 1, + aux_sym__quoted_i_heredoc_double_repeat1, + [243362] = 7, + ACTIONS(6030), 1, anon_sym_POUND_LBRACE, - ACTIONS(7846), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(7848), 1, + ACTIONS(7842), 1, + anon_sym_RBRACE, + ACTIONS(7844), 1, sym_escape_sequence, - ACTIONS(7850), 1, - sym__quoted_content_i_heredoc_single, + ACTIONS(7846), 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(4822), 2, + STATE(4812), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [243387] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7848), 1, + anon_sym_RPAREN, + ACTIONS(7850), 1, + sym_escape_sequence, + ACTIONS(7852), 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(4813), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [243412] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6048), 1, + sym_escape_sequence, + ACTIONS(6050), 1, + sym__quoted_content_i_heredoc_double, + ACTIONS(7854), 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(4471), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_double_repeat1, + [243437] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(6208), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7856), 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(4470), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [242812] = 7, - ACTIONS(6128), 1, + [243462] = 7, + ACTIONS(6038), 1, anon_sym_POUND_LBRACE, - ACTIONS(7852), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(7854), 1, + ACTIONS(7858), 1, + anon_sym_SLASH, + ACTIONS(7860), 1, sym_escape_sequence, - ACTIONS(7856), 1, + ACTIONS(7862), 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(4398), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [243487] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(7864), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [243512] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7866), 1, + anon_sym_PIPE, + ACTIONS(7868), 1, + sym_escape_sequence, + ACTIONS(7870), 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(4716), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [243537] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, + sym__quoted_content_i_double, + ACTIONS(7872), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [243562] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7874), 1, + anon_sym_GT, + ACTIONS(7876), 1, + sym_escape_sequence, + ACTIONS(7878), 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(4724), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [243587] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7880), 1, + anon_sym_RPAREN, + ACTIONS(7882), 1, + sym_escape_sequence, + ACTIONS(7884), 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(4861), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [243612] = 7, + ACTIONS(6030), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7886), 1, + anon_sym_RBRACE, + ACTIONS(7888), 1, + sym_escape_sequence, + ACTIONS(7890), 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(4862), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [243637] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7892), 1, + anon_sym_RBRACK, + ACTIONS(7894), 1, + sym_escape_sequence, + ACTIONS(7896), 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(4863), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [243662] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7898), 1, + anon_sym_GT, + ACTIONS(7900), 1, + sym_escape_sequence, + ACTIONS(7902), 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(4864), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [243687] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7904), 1, + anon_sym_PIPE, + ACTIONS(7906), 1, + sym_escape_sequence, + ACTIONS(7908), 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(4865), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [243712] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7910), 1, + anon_sym_SLASH, + ACTIONS(7912), 1, + sym_escape_sequence, + ACTIONS(7914), 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(4866), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [243737] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6206), 1, + sym_escape_sequence, + ACTIONS(6208), 1, + sym__quoted_content_i_heredoc_single, + ACTIONS(7916), 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(4470), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [243762] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6200), 1, + sym_escape_sequence, + ACTIONS(6202), 1, + sym__quoted_content_i_single, + ACTIONS(7918), 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(4469), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [243787] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, + sym__quoted_content_i_double, + ACTIONS(7920), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [243812] = 7, + ACTIONS(6046), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7922), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(7924), 1, + sym_escape_sequence, + ACTIONS(7926), 1, sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -374303,32 +363053,68 @@ static const uint16_t ts_small_parse_table[] = { STATE(4823), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [242837] = 7, - ACTIONS(6186), 1, + [243837] = 7, + ACTIONS(6070), 1, anon_sym_POUND_LBRACE, - ACTIONS(6358), 1, + ACTIONS(7928), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(7930), 1, sym_escape_sequence, - ACTIONS(6360), 1, - sym__quoted_content_i_angle, - ACTIONS(7858), 1, - anon_sym_GT, + ACTIONS(7932), 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(4552), 2, + STATE(4836), 2, sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [242862] = 7, - ACTIONS(6120), 1, + aux_sym__quoted_i_heredoc_single_repeat1, + [243862] = 7, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(6122), 1, + ACTIONS(7934), 1, + anon_sym_SQUOTE, + ACTIONS(7936), 1, sym_escape_sequence, - ACTIONS(6124), 1, + ACTIONS(7938), 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(4837), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [243887] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7940), 1, + anon_sym_DQUOTE, + ACTIONS(7942), 1, + sym_escape_sequence, + ACTIONS(7944), 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(4838), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [243912] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6040), 1, + sym_escape_sequence, + ACTIONS(6042), 1, sym__quoted_content_i_slash, - ACTIONS(7860), 1, + ACTIONS(7946), 1, anon_sym_SLASH, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -374336,17 +363122,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4548), 2, + STATE(4536), 2, sym_interpolation, aux_sym__quoted_i_slash_repeat1, - [242887] = 7, - ACTIONS(6178), 1, + [243937] = 7, + ACTIONS(6096), 1, anon_sym_POUND_LBRACE, - ACTIONS(6364), 1, + ACTIONS(6282), 1, sym_escape_sequence, - ACTIONS(6366), 1, + ACTIONS(6284), 1, sym__quoted_content_i_bar, - ACTIONS(7862), 1, + ACTIONS(7948), 1, anon_sym_PIPE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -374354,539 +363140,53 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, + STATE(4537), 2, + sym_interpolation, + aux_sym__quoted_i_bar_repeat1, + [243962] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6276), 1, + sym_escape_sequence, + ACTIONS(6278), 1, + sym__quoted_content_i_angle, + ACTIONS(7950), 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(4540), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [243987] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6270), 1, + sym_escape_sequence, + ACTIONS(6272), 1, + sym__quoted_content_i_square, + ACTIONS(7952), 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(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, + [244012] = 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, + ACTIONS(7956), 1, sym_escape_sequence, - ACTIONS(7978), 1, + ACTIONS(7958), 1, sym__quoted_content_i_square, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -374894,17 +363194,35 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4875), 2, + STATE(4726), 2, sym_interpolation, aux_sym__quoted_i_square_repeat1, - [243662] = 7, - ACTIONS(6186), 1, + [244037] = 7, + ACTIONS(6030), 1, anon_sym_POUND_LBRACE, - ACTIONS(7980), 1, - anon_sym_GT, - ACTIONS(7982), 1, + ACTIONS(7960), 1, + anon_sym_RBRACE, + ACTIONS(7962), 1, sym_escape_sequence, - ACTIONS(7984), 1, + ACTIONS(7964), 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(4748), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [244062] = 7, + ACTIONS(6104), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7966), 1, + anon_sym_GT, + ACTIONS(7968), 1, + sym_escape_sequence, + ACTIONS(7970), 1, sym__quoted_content_i_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -374912,17 +363230,53 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4876), 2, + STATE(4888), 2, sym_interpolation, aux_sym__quoted_i_angle_repeat1, - [243687] = 7, - ACTIONS(6178), 1, + [244087] = 7, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(7986), 1, - anon_sym_PIPE, - ACTIONS(7988), 1, + ACTIONS(7972), 1, + anon_sym_SQUOTE, + ACTIONS(7974), 1, sym_escape_sequence, - ACTIONS(7990), 1, + ACTIONS(7976), 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(4890), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [244112] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7978), 1, + anon_sym_RPAREN, + ACTIONS(7980), 1, + sym_escape_sequence, + ACTIONS(7982), 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(4751), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [244137] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(7984), 1, + anon_sym_PIPE, + ACTIONS(7986), 1, + sym_escape_sequence, + ACTIONS(7988), 1, sym__quoted_content_i_bar, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -374930,17 +363284,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4877), 2, + STATE(4887), 2, sym_interpolation, aux_sym__quoted_i_bar_repeat1, - [243712] = 7, - ACTIONS(6120), 1, + [244162] = 7, + ACTIONS(6038), 1, anon_sym_POUND_LBRACE, - ACTIONS(7992), 1, + ACTIONS(7990), 1, anon_sym_SLASH, - ACTIONS(7994), 1, + ACTIONS(7992), 1, sym_escape_sequence, - ACTIONS(7996), 1, + ACTIONS(7994), 1, sym__quoted_content_i_slash, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -374948,65 +363302,47 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4878), 2, + STATE(4885), 2, sym_interpolation, aux_sym__quoted_i_slash_repeat1, - [243737] = 7, - ACTIONS(6152), 1, + [244187] = 7, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(6288), 1, + ACTIONS(6232), 1, sym_escape_sequence, - ACTIONS(6290), 1, - sym__quoted_content_i_heredoc_single, + ACTIONS(6234), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(7996), 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(4573), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [244212] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, ACTIONS(7998), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8000), 1, + sym_escape_sequence, + ACTIONS(8002), 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, + STATE(4889), 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, + [244237] = 7, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, ACTIONS(8004), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, @@ -375020,17 +363356,53 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4835), 2, + STATE(4820), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, - [243837] = 7, - ACTIONS(6152), 1, + [244262] = 7, + ACTIONS(6030), 1, anon_sym_POUND_LBRACE, - ACTIONS(8010), 1, - anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8012), 1, + ACTIONS(6260), 1, sym_escape_sequence, + ACTIONS(6262), 1, + sym__quoted_content_i_curly, + ACTIONS(8010), 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(4570), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [244287] = 7, + ACTIONS(6120), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6232), 1, + sym_escape_sequence, + ACTIONS(6234), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(8012), 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(4573), 2, + sym_interpolation, + aux_sym__quoted_i_parenthesis_repeat1, + [244312] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, ACTIONS(8014), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8016), 1, + sym_escape_sequence, + ACTIONS(8018), 1, sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375038,17 +363410,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4848), 2, + STATE(4824), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, - [243862] = 7, - ACTIONS(6144), 1, + [244337] = 7, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(8016), 1, - anon_sym_SQUOTE, - ACTIONS(8018), 1, - sym_escape_sequence, ACTIONS(8020), 1, + anon_sym_SQUOTE, + ACTIONS(8022), 1, + sym_escape_sequence, + ACTIONS(8024), 1, sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375056,54 +363428,54 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4849), 2, + STATE(4826), 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, + [244362] = 7, ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(6122), 1, + ACTIONS(6232), 1, sym_escape_sequence, - ACTIONS(6124), 1, - sym__quoted_content_i_slash, - ACTIONS(8028), 1, - anon_sym_SLASH, + ACTIONS(6234), 1, + sym__quoted_content_i_parenthesis, + ACTIONS(8026), 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(4548), 2, + STATE(4573), 2, sym_interpolation, - aux_sym__quoted_i_slash_repeat1, - [243937] = 7, - ACTIONS(6178), 1, + aux_sym__quoted_i_parenthesis_repeat1, + [244387] = 7, + ACTIONS(6030), 1, anon_sym_POUND_LBRACE, - ACTIONS(6364), 1, + ACTIONS(6260), 1, sym_escape_sequence, - ACTIONS(6366), 1, - sym__quoted_content_i_bar, + ACTIONS(6262), 1, + sym__quoted_content_i_curly, + ACTIONS(8028), 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(4570), 2, + sym_interpolation, + aux_sym__quoted_i_curly_repeat1, + [244412] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6270), 1, + sym_escape_sequence, + ACTIONS(6272), 1, + sym__quoted_content_i_square, ACTIONS(8030), 1, - anon_sym_PIPE, + anon_sym_RBRACK, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -375112,13 +363484,13 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, STATE(4549), 2, sym_interpolation, - aux_sym__quoted_i_bar_repeat1, - [243962] = 7, - ACTIONS(6186), 1, + aux_sym__quoted_i_square_repeat1, + [244437] = 7, + ACTIONS(6104), 1, anon_sym_POUND_LBRACE, - ACTIONS(6358), 1, + ACTIONS(6276), 1, sym_escape_sequence, - ACTIONS(6360), 1, + ACTIONS(6278), 1, sym__quoted_content_i_angle, ACTIONS(8032), 1, anon_sym_GT, @@ -375128,359 +363500,17 @@ static const uint16_t ts_small_parse_table[] = { 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, + STATE(4540), 2, sym_interpolation, aux_sym__quoted_i_angle_repeat1, [244462] = 7, - ACTIONS(6178), 1, + ACTIONS(6096), 1, anon_sym_POUND_LBRACE, - ACTIONS(6364), 1, + ACTIONS(6282), 1, sym_escape_sequence, - ACTIONS(6366), 1, + ACTIONS(6284), 1, sym__quoted_content_i_bar, - ACTIONS(8116), 1, + ACTIONS(8034), 1, anon_sym_PIPE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375488,17 +363518,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4549), 2, + STATE(4537), 2, sym_interpolation, aux_sym__quoted_i_bar_repeat1, [244487] = 7, - ACTIONS(6120), 1, + ACTIONS(6038), 1, anon_sym_POUND_LBRACE, - ACTIONS(6122), 1, + ACTIONS(6040), 1, sym_escape_sequence, - ACTIONS(6124), 1, + ACTIONS(6042), 1, sym__quoted_content_i_slash, - ACTIONS(8118), 1, + ACTIONS(8036), 1, anon_sym_SLASH, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375506,17 +363536,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4548), 2, + STATE(4536), 2, sym_interpolation, aux_sym__quoted_i_slash_repeat1, [244512] = 7, - ACTIONS(6120), 1, + ACTIONS(6038), 1, anon_sym_POUND_LBRACE, - ACTIONS(8120), 1, + ACTIONS(8038), 1, anon_sym_SLASH, - ACTIONS(8122), 1, + ACTIONS(8040), 1, sym_escape_sequence, - ACTIONS(8124), 1, + ACTIONS(8042), 1, sym__quoted_content_i_slash, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375524,17 +363554,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4855), 2, + STATE(4843), 2, sym_interpolation, aux_sym__quoted_i_slash_repeat1, [244537] = 7, - ACTIONS(6178), 1, + ACTIONS(6096), 1, anon_sym_POUND_LBRACE, - ACTIONS(8126), 1, + ACTIONS(8044), 1, anon_sym_PIPE, - ACTIONS(8128), 1, + ACTIONS(8046), 1, sym_escape_sequence, - ACTIONS(8130), 1, + ACTIONS(8048), 1, sym__quoted_content_i_bar, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375542,17 +363572,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4856), 2, + STATE(4844), 2, sym_interpolation, aux_sym__quoted_i_bar_repeat1, [244562] = 7, - ACTIONS(6186), 1, + ACTIONS(6104), 1, anon_sym_POUND_LBRACE, - ACTIONS(8132), 1, + ACTIONS(8050), 1, anon_sym_GT, - ACTIONS(8134), 1, + ACTIONS(8052), 1, sym_escape_sequence, - ACTIONS(8136), 1, + ACTIONS(8054), 1, sym__quoted_content_i_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375560,18 +363590,54 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, + STATE(4845), 2, + sym_interpolation, + aux_sym__quoted_i_angle_repeat1, + [244587] = 7, + ACTIONS(6112), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8056), 1, + anon_sym_RBRACK, + ACTIONS(8058), 1, + sym_escape_sequence, + ACTIONS(8060), 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(4846), 2, + sym_interpolation, + aux_sym__quoted_i_square_repeat1, + [244612] = 7, + ACTIONS(6030), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8062), 1, + anon_sym_RBRACE, + ACTIONS(8064), 1, + sym_escape_sequence, + ACTIONS(8066), 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(4857), 2, sym_interpolation, - aux_sym__quoted_i_angle_repeat1, - [244587] = 7, - ACTIONS(6194), 1, + aux_sym__quoted_i_curly_repeat1, + [244637] = 7, + ACTIONS(6120), 1, anon_sym_POUND_LBRACE, - ACTIONS(8138), 1, - anon_sym_RBRACK, - ACTIONS(8140), 1, + ACTIONS(8068), 1, + anon_sym_RPAREN, + ACTIONS(8070), 1, sym_escape_sequence, - ACTIONS(8142), 1, - sym__quoted_content_i_square, + ACTIONS(8072), 1, + sym__quoted_content_i_parenthesis, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -375579,52 +363645,16 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(8156), 1, + ACTIONS(8074), 1, anon_sym_DQUOTE, - ACTIONS(8158), 1, + ACTIONS(8076), 1, sym_escape_sequence, - ACTIONS(8160), 1, + ACTIONS(8078), 1, sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375632,17 +363662,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4840), 2, + STATE(4828), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, [244687] = 7, - ACTIONS(6112), 1, + ACTIONS(6030), 1, anon_sym_POUND_LBRACE, - ACTIONS(6342), 1, + ACTIONS(6260), 1, sym_escape_sequence, - ACTIONS(6344), 1, + ACTIONS(6262), 1, sym__quoted_content_i_curly, - ACTIONS(8162), 1, + ACTIONS(8080), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375650,17 +363680,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4582), 2, + STATE(4570), 2, sym_interpolation, aux_sym__quoted_i_curly_repeat1, [244712] = 7, - ACTIONS(6128), 1, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(6130), 1, + ACTIONS(6048), 1, sym_escape_sequence, - ACTIONS(6132), 1, + ACTIONS(6050), 1, sym__quoted_content_i_heredoc_double, - ACTIONS(8164), 1, + ACTIONS(8082), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375668,17 +363698,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4483), 2, + STATE(4471), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, [244737] = 7, - ACTIONS(6152), 1, + ACTIONS(6070), 1, anon_sym_POUND_LBRACE, - ACTIONS(6288), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(6290), 1, + ACTIONS(6208), 1, sym__quoted_content_i_heredoc_single, - ACTIONS(8166), 1, + ACTIONS(8084), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375686,17 +363716,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4482), 2, + STATE(4470), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, [244762] = 7, - ACTIONS(6144), 1, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(6282), 1, + ACTIONS(6200), 1, sym_escape_sequence, - ACTIONS(6284), 1, + ACTIONS(6202), 1, sym__quoted_content_i_single, - ACTIONS(8168), 1, + ACTIONS(8086), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375704,17 +363734,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4481), 2, + STATE(4469), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, [244787] = 7, - ACTIONS(6128), 1, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(8170), 1, + ACTIONS(8088), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8172), 1, + ACTIONS(8090), 1, sym_escape_sequence, - ACTIONS(8174), 1, + ACTIONS(8092), 1, sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375722,17 +363752,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4788), 2, + STATE(4776), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, [244812] = 7, - ACTIONS(6136), 1, + ACTIONS(6054), 1, anon_sym_POUND_LBRACE, - ACTIONS(6276), 1, + ACTIONS(6194), 1, sym_escape_sequence, - ACTIONS(6278), 1, + ACTIONS(6196), 1, sym__quoted_content_i_double, - ACTIONS(8176), 1, + ACTIONS(8094), 1, anon_sym_DQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375740,17 +363770,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4507), 2, + STATE(4495), 2, sym_interpolation, aux_sym__quoted_i_double_repeat1, [244837] = 7, - ACTIONS(6128), 1, + ACTIONS(6046), 1, anon_sym_POUND_LBRACE, - ACTIONS(8178), 1, + ACTIONS(8096), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8180), 1, + ACTIONS(8098), 1, sym_escape_sequence, - ACTIONS(8182), 1, + ACTIONS(8100), 1, sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375758,17 +363788,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4887), 2, + STATE(4875), 2, sym_interpolation, aux_sym__quoted_i_heredoc_double_repeat1, [244862] = 7, - ACTIONS(6194), 1, + ACTIONS(6112), 1, anon_sym_POUND_LBRACE, - ACTIONS(6352), 1, + ACTIONS(6270), 1, sym_escape_sequence, - ACTIONS(6354), 1, + ACTIONS(6272), 1, sym__quoted_content_i_square, - ACTIONS(8184), 1, + ACTIONS(8102), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375776,125 +363806,125 @@ static const uint16_t ts_small_parse_table[] = { 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_square_repeat1, + [244887] = 7, + ACTIONS(6070), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8104), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(8106), 1, + sym_escape_sequence, + ACTIONS(8108), 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(4876), 2, + sym_interpolation, + aux_sym__quoted_i_heredoc_single_repeat1, + [244912] = 7, + ACTIONS(6062), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8110), 1, + anon_sym_SQUOTE, + ACTIONS(8112), 1, + sym_escape_sequence, + ACTIONS(8114), 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(4877), 2, + sym_interpolation, + aux_sym__quoted_i_single_repeat1, + [244937] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(8116), 1, + anon_sym_DQUOTE, + ACTIONS(8118), 1, + sym_escape_sequence, + ACTIONS(8120), 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(4879), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [244962] = 7, + ACTIONS(6038), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6040), 1, + sym_escape_sequence, + ACTIONS(6042), 1, + sym__quoted_content_i_slash, + ACTIONS(8122), 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(4536), 2, + sym_interpolation, + aux_sym__quoted_i_slash_repeat1, + [244987] = 7, + ACTIONS(6054), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6194), 1, + sym_escape_sequence, + ACTIONS(6196), 1, + sym__quoted_content_i_double, + ACTIONS(8124), 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(4495), 2, + sym_interpolation, + aux_sym__quoted_i_double_repeat1, + [245012] = 7, + ACTIONS(6096), 1, + anon_sym_POUND_LBRACE, + ACTIONS(6282), 1, + sym_escape_sequence, + ACTIONS(6284), 1, + sym__quoted_content_i_bar, + ACTIONS(8126), 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(4537), 2, sym_interpolation, aux_sym__quoted_i_bar_repeat1, [245037] = 7, - ACTIONS(6186), 1, + ACTIONS(6104), 1, anon_sym_POUND_LBRACE, - ACTIONS(6358), 1, + ACTIONS(6276), 1, sym_escape_sequence, - ACTIONS(6360), 1, + ACTIONS(6278), 1, sym__quoted_content_i_angle, - ACTIONS(8210), 1, + ACTIONS(8128), 1, anon_sym_GT, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375902,17 +363932,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4552), 2, + STATE(4540), 2, sym_interpolation, aux_sym__quoted_i_angle_repeat1, [245062] = 7, - ACTIONS(6152), 1, + ACTIONS(6070), 1, anon_sym_POUND_LBRACE, - ACTIONS(6288), 1, + ACTIONS(6206), 1, sym_escape_sequence, - ACTIONS(6290), 1, + ACTIONS(6208), 1, sym__quoted_content_i_heredoc_single, - ACTIONS(8212), 1, + ACTIONS(8130), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375920,17 +363950,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4482), 2, + STATE(4470), 2, sym_interpolation, aux_sym__quoted_i_heredoc_single_repeat1, [245087] = 7, - ACTIONS(6144), 1, + ACTIONS(6062), 1, anon_sym_POUND_LBRACE, - ACTIONS(6282), 1, + ACTIONS(6200), 1, sym_escape_sequence, - ACTIONS(6284), 1, + ACTIONS(6202), 1, sym__quoted_content_i_single, - ACTIONS(8214), 1, + ACTIONS(8132), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375938,23 +363968,23 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - STATE(4481), 2, + STATE(4469), 2, sym_interpolation, aux_sym__quoted_i_single_repeat1, [245112] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8218), 1, + ACTIONS(8136), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(5001), 1, + STATE(4989), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375962,17 +363992,17 @@ static const uint16_t ts_small_parse_table[] = { [245138] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1539), 1, + ACTIONS(1593), 1, anon_sym_RPAREN, - ACTIONS(8220), 1, + ACTIONS(8138), 1, anon_sym_SEMI, - STATE(359), 1, + STATE(400), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375980,17 +364010,17 @@ static const uint16_t ts_small_parse_table[] = { [245164] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(938), 1, + ACTIONS(866), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4918), 1, + STATE(4906), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -375998,17 +364028,17 @@ static const uint16_t ts_small_parse_table[] = { [245190] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8224), 1, + ACTIONS(8142), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4930), 1, + STATE(4918), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376016,17 +364046,17 @@ static const uint16_t ts_small_parse_table[] = { [245216] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1665), 1, + ACTIONS(1625), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376034,17 +364064,17 @@ static const uint16_t ts_small_parse_table[] = { [245242] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1735), 1, + ACTIONS(1667), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376052,17 +364082,17 @@ static const uint16_t ts_small_parse_table[] = { [245268] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(4345), 1, + ACTIONS(4263), 1, anon_sym_end, - ACTIONS(5946), 1, + ACTIONS(5866), 1, aux_sym__terminator_token1, - ACTIONS(8226), 1, + ACTIONS(8144), 1, anon_sym_SEMI, - STATE(884), 1, + STATE(697), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4909), 1, + STATE(4897), 1, aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376070,17 +364100,17 @@ static const uint16_t ts_small_parse_table[] = { [245294] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1665), 1, + ACTIONS(1625), 1, anon_sym_RPAREN, - ACTIONS(8229), 1, + ACTIONS(8147), 1, anon_sym_SEMI, - STATE(432), 1, + STATE(431), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376088,17 +364118,17 @@ static const uint16_t ts_small_parse_table[] = { [245320] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8231), 1, + ACTIONS(8149), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376106,17 +364136,17 @@ static const uint16_t ts_small_parse_table[] = { [245346] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8233), 1, + ACTIONS(8151), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376124,17 +364154,17 @@ static const uint16_t ts_small_parse_table[] = { [245372] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1651), 1, + ACTIONS(1591), 1, anon_sym_RPAREN, - ACTIONS(8235), 1, + ACTIONS(8153), 1, anon_sym_SEMI, STATE(394), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376142,32 +364172,32 @@ static const uint16_t ts_small_parse_table[] = { [245398] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(8237), 1, + ACTIONS(8155), 1, anon_sym_COMMA, - STATE(4914), 1, + STATE(4902), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3136), 3, + ACTIONS(3313), 3, anon_sym_RPAREN, anon_sym_when, anon_sym_DASH_GT, [245418] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1577), 1, + ACTIONS(1661), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4936), 1, + STATE(4924), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376175,17 +364205,17 @@ static const uint16_t ts_small_parse_table[] = { [245444] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1323), 1, + ACTIONS(1267), 1, anon_sym_RPAREN, - ACTIONS(4597), 1, + ACTIONS(4515), 1, aux_sym__terminator_token1, - ACTIONS(4600), 1, + ACTIONS(4518), 1, anon_sym_SEMI, - STATE(347), 1, + STATE(350), 1, sym__terminator, - STATE(1033), 1, + STATE(1021), 1, aux_sym__terminator_repeat1, - STATE(5005), 1, + STATE(4993), 1, aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376193,17 +364223,17 @@ static const uint16_t ts_small_parse_table[] = { [245470] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1577), 1, + ACTIONS(1661), 1, anon_sym_RPAREN, - ACTIONS(3949), 1, + ACTIONS(3865), 1, anon_sym_SEMI, - STATE(371), 1, + STATE(411), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376211,17 +364241,17 @@ static const uint16_t ts_small_parse_table[] = { [245496] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1577), 1, + ACTIONS(1661), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376229,17 +364259,17 @@ static const uint16_t ts_small_parse_table[] = { [245522] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(5960), 1, + ACTIONS(5878), 1, aux_sym__terminator_token1, - ACTIONS(5966), 1, + ACTIONS(5884), 1, anon_sym_RPAREN, - ACTIONS(8240), 1, + ACTIONS(8158), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376247,17 +364277,17 @@ static const uint16_t ts_small_parse_table[] = { [245548] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8243), 1, + ACTIONS(8161), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376265,17 +364295,17 @@ static const uint16_t ts_small_parse_table[] = { [245574] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8243), 1, + ACTIONS(8161), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4973), 1, + STATE(4961), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376283,17 +364313,17 @@ static const uint16_t ts_small_parse_table[] = { [245600] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(910), 1, + ACTIONS(874), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4943), 1, + STATE(4931), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376301,17 +364331,17 @@ static const uint16_t ts_small_parse_table[] = { [245626] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1639), 1, + ACTIONS(1587), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376319,17 +364349,17 @@ static const uint16_t ts_small_parse_table[] = { [245652] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1639), 1, + ACTIONS(1587), 1, anon_sym_RPAREN, - ACTIONS(3829), 1, + ACTIONS(3747), 1, anon_sym_SEMI, STATE(391), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376337,17 +364367,17 @@ static const uint16_t ts_small_parse_table[] = { [245678] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1639), 1, + ACTIONS(1587), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4971), 1, + STATE(4959), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376355,32 +364385,32 @@ static const uint16_t ts_small_parse_table[] = { [245704] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(8245), 1, + ACTIONS(8163), 1, anon_sym_COMMA, - STATE(4926), 1, + STATE(4914), 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, + ACTIONS(3030), 3, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, [245724] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8248), 1, + ACTIONS(8166), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4920), 1, + STATE(4908), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376388,17 +364418,17 @@ static const uint16_t ts_small_parse_table[] = { [245750] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(918), 1, + ACTIONS(858), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4923), 1, + STATE(4911), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376406,17 +364436,17 @@ static const uint16_t ts_small_parse_table[] = { [245776] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8250), 1, + ACTIONS(8168), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4949), 1, + STATE(4937), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376424,17 +364454,17 @@ static const uint16_t ts_small_parse_table[] = { [245802] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8250), 1, + ACTIONS(8168), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376442,17 +364472,17 @@ static const uint16_t ts_small_parse_table[] = { [245828] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8252), 1, + ACTIONS(8170), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376460,17 +364490,17 @@ static const uint16_t ts_small_parse_table[] = { [245854] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8254), 1, + ACTIONS(8172), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376478,17 +364508,17 @@ static const uint16_t ts_small_parse_table[] = { [245880] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8256), 1, + ACTIONS(8174), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4964), 1, + STATE(4952), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376496,17 +364526,17 @@ static const uint16_t ts_small_parse_table[] = { [245906] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1541), 1, + ACTIONS(1475), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376514,17 +364544,17 @@ static const uint16_t ts_small_parse_table[] = { [245932] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1541), 1, + ACTIONS(1475), 1, anon_sym_RPAREN, - ACTIONS(8258), 1, + ACTIONS(8176), 1, anon_sym_SEMI, - STATE(396), 1, + STATE(356), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376532,17 +364562,17 @@ static const uint16_t ts_small_parse_table[] = { [245958] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1603), 1, + ACTIONS(1643), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376550,17 +364580,17 @@ static const uint16_t ts_small_parse_table[] = { [245984] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8260), 1, + ACTIONS(8178), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376568,17 +364598,17 @@ static const uint16_t ts_small_parse_table[] = { [246010] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1329), 1, + ACTIONS(1273), 1, anon_sym_end, - ACTIONS(8262), 1, + ACTIONS(8180), 1, aux_sym__terminator_token1, - ACTIONS(8265), 1, + ACTIONS(8183), 1, anon_sym_SEMI, STATE(349), 1, sym__terminator, - STATE(1034), 1, + STATE(1019), 1, aux_sym__terminator_repeat1, - STATE(4909), 1, + STATE(4897), 1, aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376586,17 +364616,17 @@ static const uint16_t ts_small_parse_table[] = { [246036] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1713), 1, + ACTIONS(1659), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4908), 1, + STATE(4896), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376604,17 +364634,17 @@ static const uint16_t ts_small_parse_table[] = { [246062] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8260), 1, + ACTIONS(8178), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4931), 1, + STATE(4919), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376622,17 +364652,17 @@ static const uint16_t ts_small_parse_table[] = { [246088] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1713), 1, + ACTIONS(1659), 1, anon_sym_RPAREN, - ACTIONS(3823), 1, + ACTIONS(3741), 1, anon_sym_SEMI, - STATE(424), 1, + STATE(426), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376640,17 +364670,17 @@ static const uint16_t ts_small_parse_table[] = { [246114] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1565), 1, + ACTIONS(1507), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376658,17 +364688,17 @@ static const uint16_t ts_small_parse_table[] = { [246140] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1713), 1, + ACTIONS(1659), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376676,17 +364706,17 @@ static const uint16_t ts_small_parse_table[] = { [246166] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1565), 1, + ACTIONS(1507), 1, anon_sym_RPAREN, - ACTIONS(3835), 1, + ACTIONS(3753), 1, anon_sym_SEMI, - STATE(354), 1, + STATE(353), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376694,17 +364724,17 @@ static const uint16_t ts_small_parse_table[] = { [246192] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1565), 1, + ACTIONS(1507), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4934), 1, + STATE(4922), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376712,17 +364742,17 @@ static const uint16_t ts_small_parse_table[] = { [246218] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8268), 1, + ACTIONS(8186), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4937), 1, + STATE(4925), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376730,17 +364760,17 @@ static const uint16_t ts_small_parse_table[] = { [246244] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1737), 1, + ACTIONS(1621), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376748,17 +364778,17 @@ static const uint16_t ts_small_parse_table[] = { [246270] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(898), 1, + ACTIONS(890), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4942), 1, + STATE(4930), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376766,17 +364796,17 @@ static const uint16_t ts_small_parse_table[] = { [246296] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8270), 1, + ACTIONS(8188), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376784,17 +364814,17 @@ static const uint16_t ts_small_parse_table[] = { [246322] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(902), 1, + ACTIONS(854), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4987), 1, + STATE(4975), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376802,17 +364832,17 @@ static const uint16_t ts_small_parse_table[] = { [246348] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8272), 1, + ACTIONS(8190), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376820,17 +364850,17 @@ static const uint16_t ts_small_parse_table[] = { [246374] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8274), 1, + ACTIONS(8192), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376838,17 +364868,17 @@ static const uint16_t ts_small_parse_table[] = { [246400] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1641), 1, + ACTIONS(1579), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376856,17 +364886,17 @@ static const uint16_t ts_small_parse_table[] = { [246426] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1641), 1, + ACTIONS(1579), 1, anon_sym_RPAREN, - ACTIONS(8276), 1, + ACTIONS(8194), 1, anon_sym_SEMI, - STATE(382), 1, + STATE(381), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376874,17 +364904,17 @@ static const uint16_t ts_small_parse_table[] = { [246452] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(8278), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8281), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8284), 1, + ACTIONS(8196), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4962), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376892,35 +364922,35 @@ static const uint16_t ts_small_parse_table[] = { [246478] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(1643), 1, + anon_sym_RPAREN, + ACTIONS(8198), 1, anon_sym_SEMI, - ACTIONS(8286), 1, - anon_sym_end, - STATE(129), 1, + STATE(406), 1, sym__terminator, - STATE(1026), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4974), 1, - aux_sym_anonymous_function_repeat1, + STATE(4960), 1, + aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, [246504] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1603), 1, + ACTIONS(1559), 1, anon_sym_RPAREN, - ACTIONS(8288), 1, + ACTIONS(3857), 1, anon_sym_SEMI, - STATE(374), 1, + STATE(351), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376928,35 +364958,35 @@ static const uint16_t ts_small_parse_table[] = { [246530] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1643), 1, - anon_sym_RPAREN, - ACTIONS(3943), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - STATE(427), 1, + ACTIONS(8200), 1, + anon_sym_end, + STATE(133), 1, sym__terminator, - STATE(1031), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, - aux_sym_block_repeat2, + STATE(4949), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, [246556] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8290), 1, + ACTIONS(8200), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4940), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -376964,53 +364994,53 @@ static const uint16_t ts_small_parse_table[] = { [246582] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(1559), 1, + anon_sym_RPAREN, + ACTIONS(8140), 1, anon_sym_SEMI, - ACTIONS(8290), 1, - anon_sym_end, - STATE(129), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4952), 1, - aux_sym_anonymous_function_repeat1, + STATE(4972), 1, + aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, [246608] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(8202), 1, aux_sym__terminator_token1, - ACTIONS(1643), 1, - anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8205), 1, anon_sym_SEMI, - STATE(135), 1, + ACTIONS(8208), 1, + anon_sym_end, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4984), 1, - aux_sym_block_repeat1, + STATE(4949), 1, + aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, [246634] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1675), 1, + ACTIONS(1617), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377018,17 +365048,17 @@ static const uint16_t ts_small_parse_table[] = { [246660] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8292), 1, + ACTIONS(8210), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4991), 1, + STATE(4979), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377036,17 +365066,17 @@ static const uint16_t ts_small_parse_table[] = { [246686] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8292), 1, + ACTIONS(8210), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377054,17 +365084,17 @@ static const uint16_t ts_small_parse_table[] = { [246712] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1675), 1, + ACTIONS(1617), 1, anon_sym_RPAREN, - ACTIONS(3837), 1, + ACTIONS(3755), 1, anon_sym_SEMI, - STATE(386), 1, + STATE(385), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377072,17 +365102,17 @@ static const uint16_t ts_small_parse_table[] = { [246738] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1675), 1, + ACTIONS(1617), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4953), 1, + STATE(4941), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377090,17 +365120,17 @@ static const uint16_t ts_small_parse_table[] = { [246764] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8294), 1, + ACTIONS(8212), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377108,17 +365138,17 @@ static const uint16_t ts_small_parse_table[] = { [246790] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(914), 1, + ACTIONS(878), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4995), 1, + STATE(4983), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377126,17 +365156,17 @@ static const uint16_t ts_small_parse_table[] = { [246816] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8296), 1, + ACTIONS(8214), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4959), 1, + STATE(4946), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377144,17 +365174,17 @@ static const uint16_t ts_small_parse_table[] = { [246842] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(926), 1, + ACTIONS(850), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4962), 1, + STATE(4950), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377162,17 +365192,17 @@ static const uint16_t ts_small_parse_table[] = { [246868] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1651), 1, + ACTIONS(1591), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377180,17 +365210,17 @@ static const uint16_t ts_small_parse_table[] = { [246894] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(4393), 1, + ACTIONS(4311), 1, anon_sym_RPAREN, - ACTIONS(5974), 1, + ACTIONS(5892), 1, aux_sym__terminator_token1, - ACTIONS(8298), 1, + ACTIONS(8216), 1, anon_sym_SEMI, - STATE(469), 1, + STATE(454), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377198,17 +365228,17 @@ static const uint16_t ts_small_parse_table[] = { [246920] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8301), 1, + ACTIONS(8219), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377216,17 +365246,17 @@ static const uint16_t ts_small_parse_table[] = { [246946] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8218), 1, + ACTIONS(8136), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377234,17 +365264,17 @@ static const uint16_t ts_small_parse_table[] = { [246972] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1329), 1, + ACTIONS(1273), 1, anon_sym_RPAREN, - ACTIONS(8303), 1, + ACTIONS(8221), 1, aux_sym__terminator_token1, - ACTIONS(8306), 1, + ACTIONS(8224), 1, anon_sym_SEMI, - STATE(345), 1, + STATE(346), 1, sym__terminator, - STATE(1033), 1, + STATE(1021), 1, aux_sym__terminator_repeat1, - STATE(5005), 1, + STATE(4993), 1, aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377252,17 +365282,17 @@ static const uint16_t ts_small_parse_table[] = { [246998] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8309), 1, + ACTIONS(8227), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377270,17 +365300,17 @@ static const uint16_t ts_small_parse_table[] = { [247024] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1753), 1, + ACTIONS(1693), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377288,17 +365318,17 @@ static const uint16_t ts_small_parse_table[] = { [247050] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1753), 1, + ACTIONS(1693), 1, anon_sym_RPAREN, - ACTIONS(8311), 1, + ACTIONS(8229), 1, anon_sym_SEMI, - STATE(431), 1, + STATE(430), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377306,17 +365336,17 @@ static const uint16_t ts_small_parse_table[] = { [247076] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8313), 1, + ACTIONS(8231), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377324,17 +365354,17 @@ static const uint16_t ts_small_parse_table[] = { [247102] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8313), 1, + ACTIONS(8231), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4976), 1, + STATE(4964), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377342,17 +365372,17 @@ static const uint16_t ts_small_parse_table[] = { [247128] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1741), 1, + ACTIONS(1469), 1, anon_sym_RPAREN, - ACTIONS(8315), 1, + ACTIONS(8233), 1, anon_sym_SEMI, - STATE(416), 1, + STATE(386), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377362,15 +365392,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9), 1, aux_sym__terminator_token1, - ACTIONS(1689), 1, + ACTIONS(1571), 1, ts_builtin_sym_end, - ACTIONS(8317), 1, + ACTIONS(8235), 1, anon_sym_SEMI, - STATE(388), 1, + STATE(387), 1, sym__terminator, - STATE(1029), 1, + STATE(1016), 1, aux_sym__terminator_repeat1, - STATE(5009), 1, + STATE(4997), 1, aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377378,17 +365408,17 @@ static const uint16_t ts_small_parse_table[] = { [247180] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1757), 1, + ACTIONS(1669), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377396,17 +365426,17 @@ static const uint16_t ts_small_parse_table[] = { [247206] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1741), 1, + ACTIONS(1469), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377414,17 +365444,17 @@ static const uint16_t ts_small_parse_table[] = { [247232] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1757), 1, + ACTIONS(1669), 1, anon_sym_RPAREN, - ACTIONS(3847), 1, + ACTIONS(3765), 1, anon_sym_SEMI, - STATE(435), 1, + STATE(440), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377432,17 +365462,17 @@ static const uint16_t ts_small_parse_table[] = { [247258] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1757), 1, + ACTIONS(1669), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4977), 1, + STATE(4965), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377450,17 +365480,17 @@ static const uint16_t ts_small_parse_table[] = { [247284] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1643), 1, + ACTIONS(1559), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377468,17 +365498,17 @@ static const uint16_t ts_small_parse_table[] = { [247310] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8319), 1, + ACTIONS(8237), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4979), 1, + STATE(4967), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377486,17 +365516,17 @@ static const uint16_t ts_small_parse_table[] = { [247336] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(906), 1, + ACTIONS(862), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4983), 1, + STATE(4971), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377504,32 +365534,32 @@ static const uint16_t ts_small_parse_table[] = { [247362] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(8321), 1, + ACTIONS(8239), 1, anon_sym_COMMA, - STATE(4990), 1, + STATE(4978), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3136), 3, + ACTIONS(3313), 3, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, [247382] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8324), 1, + ACTIONS(8242), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377537,17 +365567,17 @@ static const uint16_t ts_small_parse_table[] = { [247408] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8326), 1, + ACTIONS(8244), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4912), 1, + STATE(4900), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377555,17 +365585,17 @@ static const uint16_t ts_small_parse_table[] = { [247434] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1533), 1, + ACTIONS(1557), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(5003), 1, + STATE(4991), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377573,17 +365603,17 @@ static const uint16_t ts_small_parse_table[] = { [247460] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1533), 1, + ACTIONS(1557), 1, anon_sym_RPAREN, - ACTIONS(3959), 1, + ACTIONS(3875), 1, anon_sym_SEMI, - STATE(353), 1, + STATE(392), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377591,17 +365621,17 @@ static const uint16_t ts_small_parse_table[] = { [247486] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1533), 1, + ACTIONS(1557), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377609,17 +365639,17 @@ static const uint16_t ts_small_parse_table[] = { [247512] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1605), 1, + ACTIONS(1585), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377627,17 +365657,17 @@ static const uint16_t ts_small_parse_table[] = { [247538] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1605), 1, + ACTIONS(1585), 1, anon_sym_RPAREN, - ACTIONS(8328), 1, + ACTIONS(8246), 1, anon_sym_SEMI, - STATE(369), 1, + STATE(371), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377645,17 +365675,17 @@ static const uint16_t ts_small_parse_table[] = { [247564] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1323), 1, + ACTIONS(1267), 1, anon_sym_end, - ACTIONS(4649), 1, + ACTIONS(4567), 1, aux_sym__terminator_token1, - ACTIONS(4652), 1, + ACTIONS(4570), 1, anon_sym_SEMI, - STATE(350), 1, + STATE(348), 1, sym__terminator, - STATE(1034), 1, + STATE(1019), 1, aux_sym__terminator_repeat1, - STATE(4909), 1, + STATE(4897), 1, aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377663,32 +365693,32 @@ static const uint16_t ts_small_parse_table[] = { [247590] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(8330), 1, + ACTIONS(8248), 1, anon_sym_COMMA, - STATE(4990), 1, + STATE(4978), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(5900), 3, + ACTIONS(5818), 3, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, [247610] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8332), 1, + ACTIONS(8250), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377696,17 +365726,17 @@ static const uint16_t ts_small_parse_table[] = { [247636] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8334), 1, + ACTIONS(8252), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377714,17 +365744,17 @@ static const uint16_t ts_small_parse_table[] = { [247662] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8332), 1, + ACTIONS(8250), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4911), 1, + STATE(4899), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377732,17 +365762,17 @@ static const uint16_t ts_small_parse_table[] = { [247688] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1539), 1, + ACTIONS(1593), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377750,17 +365780,17 @@ static const uint16_t ts_small_parse_table[] = { [247714] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1735), 1, + ACTIONS(1667), 1, anon_sym_RPAREN, - ACTIONS(8336), 1, + ACTIONS(8254), 1, anon_sym_SEMI, - STATE(430), 1, + STATE(434), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377768,17 +365798,17 @@ static const uint16_t ts_small_parse_table[] = { [247740] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(4345), 1, + ACTIONS(4263), 1, anon_sym_RPAREN, - ACTIONS(5946), 1, + ACTIONS(5866), 1, aux_sym__terminator_token1, - ACTIONS(8338), 1, + ACTIONS(8256), 1, anon_sym_SEMI, - STATE(746), 1, + STATE(744), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(5005), 1, + STATE(4993), 1, aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377786,17 +365816,17 @@ static const uint16_t ts_small_parse_table[] = { [247766] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1575), 1, + ACTIONS(1679), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377804,17 +365834,17 @@ static const uint16_t ts_small_parse_table[] = { [247792] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8341), 1, + ACTIONS(8259), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377822,32 +365852,32 @@ static const uint16_t ts_small_parse_table[] = { [247818] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(8343), 1, + ACTIONS(8261), 1, anon_sym_COMMA, - STATE(4914), 1, + STATE(4902), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3151), 3, + ACTIONS(3403), 3, anon_sym_RPAREN, anon_sym_when, anon_sym_DASH_GT, [247838] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(4343), 1, + ACTIONS(4261), 1, ts_builtin_sym_end, - ACTIONS(5946), 1, + ACTIONS(5866), 1, aux_sym__terminator_token1, - ACTIONS(8345), 1, + ACTIONS(8263), 1, anon_sym_SEMI, - STATE(497), 1, + STATE(511), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(5009), 1, + STATE(4997), 1, aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377855,17 +365885,17 @@ static const uint16_t ts_small_parse_table[] = { [247864] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1575), 1, + ACTIONS(1679), 1, anon_sym_RPAREN, - ACTIONS(3807), 1, + ACTIONS(3727), 1, anon_sym_SEMI, - STATE(398), 1, + STATE(405), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377873,17 +365903,17 @@ static const uint16_t ts_small_parse_table[] = { [247890] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8348), 1, + ACTIONS(8266), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377891,17 +365921,17 @@ static const uint16_t ts_small_parse_table[] = { [247916] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1575), 1, + ACTIONS(1679), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4907), 1, + STATE(4895), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377911,15 +365941,15 @@ static const uint16_t ts_small_parse_table[] = { sym_comment, ACTIONS(9), 1, aux_sym__terminator_token1, - ACTIONS(1561), 1, + ACTIONS(1629), 1, ts_builtin_sym_end, - ACTIONS(4502), 1, + ACTIONS(4420), 1, anon_sym_SEMI, - STATE(407), 1, + STATE(382), 1, sym__terminator, - STATE(1029), 1, + STATE(1016), 1, aux_sym__terminator_repeat1, - STATE(5009), 1, + STATE(4997), 1, aux_sym_source_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377927,17 +365957,17 @@ static const uint16_t ts_small_parse_table[] = { [247968] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8350), 1, + ACTIONS(8268), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4967), 1, + STATE(4955), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377945,17 +365975,17 @@ static const uint16_t ts_small_parse_table[] = { [247994] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1621), 1, + ACTIONS(1613), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377963,17 +365993,17 @@ static const uint16_t ts_small_parse_table[] = { [248020] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1621), 1, + ACTIONS(1613), 1, anon_sym_RPAREN, - ACTIONS(3965), 1, + ACTIONS(3883), 1, anon_sym_SEMI, - STATE(372), 1, + STATE(388), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377981,17 +366011,17 @@ static const uint16_t ts_small_parse_table[] = { [248046] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1537), 1, + ACTIONS(1623), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -377999,17 +366029,17 @@ static const uint16_t ts_small_parse_table[] = { [248072] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1537), 1, + ACTIONS(1623), 1, anon_sym_RPAREN, - ACTIONS(8352), 1, + ACTIONS(8270), 1, anon_sym_SEMI, - STATE(405), 1, + STATE(415), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378017,17 +366047,17 @@ static const uint16_t ts_small_parse_table[] = { [248098] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1711), 1, + ACTIONS(1595), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378035,17 +366065,17 @@ static const uint16_t ts_small_parse_table[] = { [248124] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1711), 1, + ACTIONS(1595), 1, anon_sym_RPAREN, - ACTIONS(8354), 1, + ACTIONS(8272), 1, anon_sym_SEMI, - STATE(412), 1, + STATE(390), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378053,17 +366083,17 @@ static const uint16_t ts_small_parse_table[] = { [248150] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(930), 1, + ACTIONS(870), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4947), 1, + STATE(4935), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378071,17 +366101,17 @@ static const uint16_t ts_small_parse_table[] = { [248176] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1621), 1, + ACTIONS(1613), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4996), 1, + STATE(4984), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378089,17 +366119,17 @@ static const uint16_t ts_small_parse_table[] = { [248202] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8356), 1, + ACTIONS(8274), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(5000), 1, + STATE(4988), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378107,17 +366137,17 @@ static const uint16_t ts_small_parse_table[] = { [248228] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(922), 1, + ACTIONS(882), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(5036), 1, + STATE(5024), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378125,17 +366155,17 @@ static const uint16_t ts_small_parse_table[] = { [248254] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8358), 1, + ACTIONS(8276), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378143,17 +366173,17 @@ static const uint16_t ts_small_parse_table[] = { [248280] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8358), 1, + ACTIONS(8276), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(5011), 1, + STATE(4999), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378161,32 +366191,32 @@ static const uint16_t ts_small_parse_table[] = { [248306] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(8362), 1, + ACTIONS(8280), 1, anon_sym_COMMA, - STATE(4999), 1, + STATE(4987), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(8360), 3, + ACTIONS(8278), 3, anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_RBRACK, [248326] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(934), 1, + ACTIONS(886), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(5006), 1, + STATE(4994), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378194,17 +366224,17 @@ static const uint16_t ts_small_parse_table[] = { [248352] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8233), 1, + ACTIONS(8151), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4932), 1, + STATE(4920), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378212,17 +366242,17 @@ static const uint16_t ts_small_parse_table[] = { [248378] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8364), 1, + ACTIONS(8282), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4955), 1, + STATE(4949), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378230,17 +366260,17 @@ static const uint16_t ts_small_parse_table[] = { [248404] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8294), 1, + ACTIONS(8212), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4951), 1, + STATE(4939), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378248,17 +366278,17 @@ static const uint16_t ts_small_parse_table[] = { [248430] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8366), 1, + ACTIONS(8284), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(5030), 1, + STATE(5018), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378266,17 +366296,17 @@ static const uint16_t ts_small_parse_table[] = { [248456] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8364), 1, + ACTIONS(8282), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(5007), 1, + STATE(4995), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378284,32 +366314,32 @@ static const uint16_t ts_small_parse_table[] = { [248482] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(8343), 1, + ACTIONS(8261), 1, anon_sym_COMMA, - STATE(5008), 1, + STATE(4996), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(3221), 3, + ACTIONS(3393), 3, anon_sym_RPAREN, anon_sym_when, anon_sym_DASH_GT, [248502] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(894), 1, + ACTIONS(846), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(5015), 1, + STATE(5003), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378317,17 +366347,17 @@ static const uint16_t ts_small_parse_table[] = { [248528] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1631), 1, + ACTIONS(1473), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(4919), 1, + STATE(4907), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378335,17 +366365,17 @@ static const uint16_t ts_small_parse_table[] = { [248554] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1631), 1, + ACTIONS(1473), 1, anon_sym_RPAREN, - ACTIONS(3853), 1, + ACTIONS(3771), 1, anon_sym_SEMI, - STATE(352), 1, + STATE(404), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378353,17 +366383,17 @@ static const uint16_t ts_small_parse_table[] = { [248580] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1737), 1, + ACTIONS(1621), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(5019), 1, + STATE(5007), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378371,17 +366401,17 @@ static const uint16_t ts_small_parse_table[] = { [248606] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(1631), 1, + ACTIONS(1473), 1, anon_sym_RPAREN, - ACTIONS(8222), 1, + ACTIONS(8140), 1, anon_sym_SEMI, - STATE(135), 1, + STATE(138), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(5017), 1, + STATE(5005), 1, aux_sym_block_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378389,17 +366419,17 @@ static const uint16_t ts_small_parse_table[] = { [248632] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(1054), 1, + ACTIONS(1004), 1, aux_sym__terminator_token1, - ACTIONS(1737), 1, + ACTIONS(1621), 1, anon_sym_RPAREN, - ACTIONS(3817), 1, + ACTIONS(3735), 1, anon_sym_SEMI, - STATE(414), 1, + STATE(393), 1, sym__terminator, - STATE(1031), 1, + STATE(1020), 1, aux_sym__terminator_repeat1, - STATE(4972), 1, + STATE(4960), 1, aux_sym_block_repeat2, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378407,29 +366437,29 @@ static const uint16_t ts_small_parse_table[] = { [248658] = 8, ACTIONS(5), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(658), 1, aux_sym__terminator_token1, - ACTIONS(8216), 1, + ACTIONS(8134), 1, anon_sym_SEMI, - ACTIONS(8368), 1, + ACTIONS(8286), 1, anon_sym_end, - STATE(129), 1, + STATE(133), 1, sym__terminator, - STATE(1026), 1, + STATE(1014), 1, aux_sym__terminator_repeat1, - STATE(5025), 1, + STATE(5013), 1, aux_sym_anonymous_function_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, sym__newline_before_comment, [248684] = 6, - ACTIONS(8370), 1, + ACTIONS(8288), 1, anon_sym_RPAREN, - ACTIONS(8372), 1, + ACTIONS(8290), 1, sym_escape_sequence, - ACTIONS(8374), 1, + ACTIONS(8292), 1, sym__quoted_content_parenthesis, - STATE(5309), 1, + STATE(5297), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378438,13 +366468,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [248705] = 6, - ACTIONS(8376), 1, + ACTIONS(8294), 1, anon_sym_GT, - ACTIONS(8378), 1, + ACTIONS(8296), 1, sym_escape_sequence, - ACTIONS(8380), 1, + ACTIONS(8298), 1, sym__quoted_content_angle, - STATE(5324), 1, + STATE(5312), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378455,26 +366485,26 @@ static const uint16_t ts_small_parse_table[] = { [248726] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(27), 1, + ACTIONS(23), 1, anon_sym_DQUOTE, - ACTIONS(29), 1, + ACTIONS(25), 1, anon_sym_SQUOTE, - STATE(3812), 1, + STATE(3800), 1, sym__quoted_i_double, - STATE(3813), 1, + STATE(3801), 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, + ACTIONS(8300), 1, anon_sym_PIPE, - ACTIONS(8384), 1, + ACTIONS(8302), 1, sym_escape_sequence, - ACTIONS(8386), 1, + ACTIONS(8304), 1, sym__quoted_content_bar, - STATE(5156), 1, + STATE(5144), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378483,13 +366513,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [248768] = 6, - ACTIONS(8388), 1, + ACTIONS(8306), 1, anon_sym_GT, - ACTIONS(8390), 1, + ACTIONS(8308), 1, sym_escape_sequence, - ACTIONS(8392), 1, + ACTIONS(8310), 1, sym__quoted_content_angle, - STATE(5124), 1, + STATE(5112), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378498,13 +366528,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [248789] = 6, - ACTIONS(8394), 1, + ACTIONS(8312), 1, anon_sym_RBRACK, - ACTIONS(8396), 1, + ACTIONS(8314), 1, sym_escape_sequence, - ACTIONS(8398), 1, + ACTIONS(8316), 1, sym__quoted_content_square, - STATE(5122), 1, + STATE(5110), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378513,13 +366543,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [248810] = 6, - ACTIONS(8400), 1, + ACTIONS(8318), 1, anon_sym_RBRACE, - ACTIONS(8402), 1, + ACTIONS(8320), 1, sym_escape_sequence, - ACTIONS(8404), 1, + ACTIONS(8322), 1, sym__quoted_content_curly, - STATE(5120), 1, + STATE(5108), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378528,13 +366558,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [248831] = 6, - ACTIONS(8406), 1, + ACTIONS(8324), 1, anon_sym_RPAREN, - ACTIONS(8408), 1, + ACTIONS(8326), 1, sym_escape_sequence, - ACTIONS(8410), 1, + ACTIONS(8328), 1, sym__quoted_content_parenthesis, - STATE(5079), 1, + STATE(5067), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378543,13 +366573,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [248852] = 6, - ACTIONS(8412), 1, + ACTIONS(8330), 1, anon_sym_DQUOTE, - ACTIONS(8414), 1, + ACTIONS(8332), 1, sym_escape_sequence, - ACTIONS(8416), 1, + ACTIONS(8334), 1, sym__quoted_content_double, - STATE(5080), 1, + STATE(5068), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378558,13 +366588,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [248873] = 6, - ACTIONS(8418), 1, + ACTIONS(8336), 1, anon_sym_SQUOTE, - ACTIONS(8420), 1, + ACTIONS(8338), 1, sym_escape_sequence, - ACTIONS(8422), 1, + ACTIONS(8340), 1, sym__quoted_content_single, - STATE(5081), 1, + STATE(5069), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378573,13 +366603,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [248894] = 6, - ACTIONS(8424), 1, + ACTIONS(8342), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8426), 1, + ACTIONS(8344), 1, sym_escape_sequence, - ACTIONS(8428), 1, + ACTIONS(8346), 1, sym__quoted_content_heredoc_single, - STATE(5082), 1, + STATE(5070), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378588,13 +366618,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [248915] = 6, - ACTIONS(8430), 1, + ACTIONS(8348), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8432), 1, + ACTIONS(8350), 1, sym_escape_sequence, - ACTIONS(8434), 1, + ACTIONS(8352), 1, sym__quoted_content_heredoc_double, - STATE(5083), 1, + STATE(5071), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378603,13 +366633,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [248936] = 6, - ACTIONS(8436), 1, + ACTIONS(8354), 1, anon_sym_RBRACE, - ACTIONS(8438), 1, + ACTIONS(8356), 1, sym_escape_sequence, - ACTIONS(8440), 1, + ACTIONS(8358), 1, sym__quoted_content_curly, - STATE(5084), 1, + STATE(5072), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378618,13 +366648,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [248957] = 6, - ACTIONS(8442), 1, + ACTIONS(8360), 1, anon_sym_RBRACK, - ACTIONS(8444), 1, + ACTIONS(8362), 1, sym_escape_sequence, - ACTIONS(8446), 1, + ACTIONS(8364), 1, sym__quoted_content_square, - STATE(5085), 1, + STATE(5073), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378633,13 +366663,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [248978] = 6, - ACTIONS(8448), 1, + ACTIONS(8366), 1, anon_sym_GT, - ACTIONS(8450), 1, + ACTIONS(8368), 1, sym_escape_sequence, - ACTIONS(8452), 1, + ACTIONS(8370), 1, sym__quoted_content_angle, - STATE(5086), 1, + STATE(5074), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378648,13 +366678,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [248999] = 6, - ACTIONS(8454), 1, + ACTIONS(8372), 1, anon_sym_PIPE, - ACTIONS(8456), 1, + ACTIONS(8374), 1, sym_escape_sequence, - ACTIONS(8458), 1, + ACTIONS(8376), 1, sym__quoted_content_bar, - STATE(5087), 1, + STATE(5075), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378663,13 +366693,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249020] = 6, - ACTIONS(8460), 1, + ACTIONS(8378), 1, anon_sym_SLASH, - ACTIONS(8462), 1, + ACTIONS(8380), 1, sym_escape_sequence, - ACTIONS(8464), 1, + ACTIONS(8382), 1, sym__quoted_content_slash, - STATE(5088), 1, + STATE(5076), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378678,7 +366708,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249041] = 4, - ACTIONS(8468), 1, + ACTIONS(8386), 1, sym__quoted_content_i_slash, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378686,18 +366716,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8466), 3, + ACTIONS(8384), 3, anon_sym_SLASH, anon_sym_POUND_LBRACE, sym_escape_sequence, [249058] = 6, - ACTIONS(8470), 1, + ACTIONS(8388), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8472), 1, + ACTIONS(8390), 1, sym_escape_sequence, - ACTIONS(8474), 1, + ACTIONS(8392), 1, sym__quoted_content_heredoc_double, - STATE(5118), 1, + STATE(5106), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378706,13 +366736,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249079] = 6, - ACTIONS(8476), 1, + ACTIONS(8394), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8478), 1, + ACTIONS(8396), 1, sym_escape_sequence, - ACTIONS(8480), 1, + ACTIONS(8398), 1, sym__quoted_content_heredoc_single, - STATE(5117), 1, + STATE(5105), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378721,13 +366751,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249100] = 6, - ACTIONS(8482), 1, + ACTIONS(8400), 1, anon_sym_DQUOTE, - ACTIONS(8484), 1, + ACTIONS(8402), 1, sym_escape_sequence, - ACTIONS(8486), 1, + ACTIONS(8404), 1, sym__quoted_content_double, - STATE(5113), 1, + STATE(5101), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378736,7 +366766,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249121] = 4, - ACTIONS(8468), 1, + ACTIONS(8386), 1, sym__quoted_content_i_bar, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378744,18 +366774,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8466), 3, + ACTIONS(8384), 3, anon_sym_PIPE, anon_sym_POUND_LBRACE, sym_escape_sequence, [249138] = 6, - ACTIONS(8488), 1, + ACTIONS(8406), 1, anon_sym_SQUOTE, - ACTIONS(8490), 1, + ACTIONS(8408), 1, sym_escape_sequence, - ACTIONS(8492), 1, + ACTIONS(8410), 1, sym__quoted_content_single, - STATE(5115), 1, + STATE(5103), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378764,13 +366794,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249159] = 6, - ACTIONS(8494), 1, + ACTIONS(8412), 1, anon_sym_DQUOTE, - ACTIONS(8496), 1, + ACTIONS(8414), 1, sym_escape_sequence, - ACTIONS(8498), 1, + ACTIONS(8416), 1, sym__quoted_content_double, - STATE(5099), 1, + STATE(5087), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378779,13 +366809,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249180] = 6, - ACTIONS(8500), 1, + ACTIONS(8418), 1, anon_sym_RPAREN, - ACTIONS(8502), 1, + ACTIONS(8420), 1, sym_escape_sequence, - ACTIONS(8504), 1, + ACTIONS(8422), 1, sym__quoted_content_parenthesis, - STATE(5096), 1, + STATE(5084), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378794,7 +366824,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249201] = 4, - ACTIONS(8468), 1, + ACTIONS(8386), 1, sym__quoted_content_i_angle, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378802,12 +366832,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8466), 3, + ACTIONS(8384), 3, anon_sym_GT, anon_sym_POUND_LBRACE, sym_escape_sequence, [249218] = 4, - ACTIONS(8468), 1, + ACTIONS(8386), 1, sym__quoted_content_i_square, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378815,12 +366845,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8466), 3, + ACTIONS(8384), 3, anon_sym_RBRACK, anon_sym_POUND_LBRACE, sym_escape_sequence, [249235] = 4, - ACTIONS(8468), 1, + ACTIONS(8386), 1, sym__quoted_content_i_curly, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378828,12 +366858,12 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8466), 3, + ACTIONS(8384), 3, anon_sym_RBRACE, anon_sym_POUND_LBRACE, sym_escape_sequence, [249252] = 4, - ACTIONS(8468), 1, + ACTIONS(8386), 1, sym__quoted_content_i_parenthesis, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378841,18 +366871,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8466), 3, + ACTIONS(8384), 3, anon_sym_RPAREN, anon_sym_POUND_LBRACE, sym_escape_sequence, [249269] = 6, - ACTIONS(8506), 1, + ACTIONS(8424), 1, anon_sym_RPAREN, - ACTIONS(8508), 1, + ACTIONS(8426), 1, sym_escape_sequence, - ACTIONS(8510), 1, + ACTIONS(8428), 1, sym__quoted_content_parenthesis, - STATE(5093), 1, + STATE(5081), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378861,13 +366891,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249290] = 6, - ACTIONS(8512), 1, + ACTIONS(8430), 1, anon_sym_DQUOTE, - ACTIONS(8514), 1, + ACTIONS(8432), 1, sym_escape_sequence, - ACTIONS(8516), 1, + ACTIONS(8434), 1, sym__quoted_content_double, - STATE(5094), 1, + STATE(5082), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378876,13 +366906,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249311] = 6, - ACTIONS(8518), 1, + ACTIONS(8436), 1, anon_sym_SQUOTE, - ACTIONS(8520), 1, + ACTIONS(8438), 1, sym_escape_sequence, - ACTIONS(8522), 1, + ACTIONS(8440), 1, sym__quoted_content_single, - STATE(5095), 1, + STATE(5083), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378891,13 +366921,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249332] = 6, - ACTIONS(8524), 1, + ACTIONS(8442), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8526), 1, + ACTIONS(8444), 1, sym_escape_sequence, - ACTIONS(8528), 1, + ACTIONS(8446), 1, sym__quoted_content_heredoc_single, - STATE(5097), 1, + STATE(5085), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378906,13 +366936,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249353] = 6, - ACTIONS(8530), 1, + ACTIONS(8448), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8532), 1, + ACTIONS(8450), 1, sym_escape_sequence, - ACTIONS(8534), 1, + ACTIONS(8452), 1, sym__quoted_content_heredoc_double, - STATE(5098), 1, + STATE(5086), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378921,13 +366951,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249374] = 6, - ACTIONS(8536), 1, + ACTIONS(8454), 1, anon_sym_RBRACE, - ACTIONS(8538), 1, + ACTIONS(8456), 1, sym_escape_sequence, - ACTIONS(8540), 1, + ACTIONS(8458), 1, sym__quoted_content_curly, - STATE(5100), 1, + STATE(5088), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378936,13 +366966,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249395] = 6, - ACTIONS(8542), 1, + ACTIONS(8460), 1, anon_sym_RBRACK, - ACTIONS(8544), 1, + ACTIONS(8462), 1, sym_escape_sequence, - ACTIONS(8546), 1, + ACTIONS(8464), 1, sym__quoted_content_square, - STATE(5101), 1, + STATE(5089), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378951,13 +366981,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249416] = 6, - ACTIONS(8548), 1, + ACTIONS(8466), 1, anon_sym_GT, - ACTIONS(8550), 1, + ACTIONS(8468), 1, sym_escape_sequence, - ACTIONS(8552), 1, + ACTIONS(8470), 1, sym__quoted_content_angle, - STATE(5102), 1, + STATE(5090), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378966,13 +366996,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249437] = 6, - ACTIONS(8372), 1, + ACTIONS(8290), 1, sym_escape_sequence, - ACTIONS(8374), 1, + ACTIONS(8292), 1, sym__quoted_content_parenthesis, - ACTIONS(8554), 1, + ACTIONS(8472), 1, anon_sym_RPAREN, - STATE(5309), 1, + STATE(5297), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378981,13 +367011,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249458] = 6, - ACTIONS(8556), 1, + ACTIONS(8474), 1, anon_sym_DQUOTE, - ACTIONS(8558), 1, + ACTIONS(8476), 1, sym_escape_sequence, - ACTIONS(8560), 1, + ACTIONS(8478), 1, sym__quoted_content_double, - STATE(5308), 1, + STATE(5296), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -378996,13 +367026,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249479] = 6, - ACTIONS(8562), 1, + ACTIONS(8480), 1, anon_sym_SQUOTE, - ACTIONS(8564), 1, + ACTIONS(8482), 1, sym_escape_sequence, - ACTIONS(8566), 1, + ACTIONS(8484), 1, sym__quoted_content_single, - STATE(5262), 1, + STATE(5250), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379011,13 +367041,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249500] = 6, - ACTIONS(8568), 1, + ACTIONS(8486), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8570), 1, + ACTIONS(8488), 1, sym_escape_sequence, - ACTIONS(8572), 1, + ACTIONS(8490), 1, sym__quoted_content_heredoc_single, - STATE(5092), 1, + STATE(5080), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379026,13 +367056,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249521] = 6, - ACTIONS(8574), 1, + ACTIONS(8492), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8576), 1, + ACTIONS(8494), 1, sym_escape_sequence, - ACTIONS(8578), 1, + ACTIONS(8496), 1, sym__quoted_content_heredoc_double, - STATE(5260), 1, + STATE(5248), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379041,13 +367071,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249542] = 6, - ACTIONS(8580), 1, + ACTIONS(8498), 1, anon_sym_RBRACE, - ACTIONS(8582), 1, + ACTIONS(8500), 1, sym_escape_sequence, - ACTIONS(8584), 1, + ACTIONS(8502), 1, sym__quoted_content_curly, - STATE(5259), 1, + STATE(5247), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379056,13 +367086,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249563] = 6, - ACTIONS(8586), 1, + ACTIONS(8504), 1, anon_sym_RBRACK, - ACTIONS(8588), 1, + ACTIONS(8506), 1, sym_escape_sequence, - ACTIONS(8590), 1, + ACTIONS(8508), 1, sym__quoted_content_square, - STATE(5231), 1, + STATE(5219), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379071,13 +367101,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249584] = 6, - ACTIONS(8592), 1, + ACTIONS(8510), 1, anon_sym_GT, - ACTIONS(8594), 1, + ACTIONS(8512), 1, sym_escape_sequence, - ACTIONS(8596), 1, + ACTIONS(8514), 1, sym__quoted_content_angle, - STATE(5230), 1, + STATE(5218), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379086,13 +367116,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249605] = 6, - ACTIONS(8598), 1, + ACTIONS(8516), 1, anon_sym_PIPE, - ACTIONS(8600), 1, + ACTIONS(8518), 1, sym_escape_sequence, - ACTIONS(8602), 1, + ACTIONS(8520), 1, sym__quoted_content_bar, - STATE(5205), 1, + STATE(5193), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379101,13 +367131,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249626] = 6, - ACTIONS(8604), 1, + ACTIONS(8522), 1, anon_sym_SLASH, - ACTIONS(8606), 1, + ACTIONS(8524), 1, sym_escape_sequence, - ACTIONS(8608), 1, + ACTIONS(8526), 1, sym__quoted_content_slash, - STATE(5204), 1, + STATE(5192), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379116,13 +367146,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249647] = 6, - ACTIONS(8610), 1, + ACTIONS(8528), 1, anon_sym_PIPE, - ACTIONS(8612), 1, + ACTIONS(8530), 1, sym_escape_sequence, - ACTIONS(8614), 1, + ACTIONS(8532), 1, sym__quoted_content_bar, - STATE(5103), 1, + STATE(5091), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379133,26 +367163,26 @@ static const uint16_t ts_small_parse_table[] = { [249668] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(259), 1, + ACTIONS(195), 1, anon_sym_DQUOTE, - ACTIONS(261), 1, + ACTIONS(197), 1, anon_sym_SQUOTE, - STATE(1487), 1, - sym__quoted_i_double, - STATE(1488), 1, + STATE(1405), 1, sym__quoted_i_single, + STATE(1406), 1, + sym__quoted_i_double, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, [249689] = 6, - ACTIONS(8616), 1, + ACTIONS(8534), 1, anon_sym_SLASH, - ACTIONS(8618), 1, + ACTIONS(8536), 1, sym_escape_sequence, - ACTIONS(8620), 1, + ACTIONS(8538), 1, sym__quoted_content_slash, - STATE(5104), 1, + STATE(5092), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379161,13 +367191,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249710] = 6, - ACTIONS(8622), 1, + ACTIONS(8540), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8624), 1, + ACTIONS(8542), 1, sym_escape_sequence, - ACTIONS(8627), 1, + ACTIONS(8545), 1, sym__quoted_content_heredoc_single, - STATE(5092), 1, + STATE(5080), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379176,13 +367206,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249731] = 6, - ACTIONS(8372), 1, + ACTIONS(8290), 1, sym_escape_sequence, - ACTIONS(8374), 1, + ACTIONS(8292), 1, sym__quoted_content_parenthesis, - ACTIONS(8630), 1, + ACTIONS(8548), 1, anon_sym_RPAREN, - STATE(5309), 1, + STATE(5297), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379191,13 +367221,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249752] = 6, - ACTIONS(8558), 1, + ACTIONS(8476), 1, sym_escape_sequence, - ACTIONS(8560), 1, + ACTIONS(8478), 1, sym__quoted_content_double, - ACTIONS(8632), 1, + ACTIONS(8550), 1, anon_sym_DQUOTE, - STATE(5308), 1, + STATE(5296), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379206,13 +367236,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249773] = 6, - ACTIONS(8564), 1, + ACTIONS(8482), 1, sym_escape_sequence, - ACTIONS(8566), 1, + ACTIONS(8484), 1, sym__quoted_content_single, - ACTIONS(8634), 1, + ACTIONS(8552), 1, anon_sym_SQUOTE, - STATE(5262), 1, + STATE(5250), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379221,13 +367251,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249794] = 6, - ACTIONS(8372), 1, + ACTIONS(8290), 1, sym_escape_sequence, - ACTIONS(8374), 1, + ACTIONS(8292), 1, sym__quoted_content_parenthesis, - ACTIONS(8636), 1, + ACTIONS(8554), 1, anon_sym_RPAREN, - STATE(5309), 1, + STATE(5297), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379236,13 +367266,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249815] = 6, - ACTIONS(8570), 1, + ACTIONS(8488), 1, sym_escape_sequence, - ACTIONS(8572), 1, + ACTIONS(8490), 1, sym__quoted_content_heredoc_single, - ACTIONS(8638), 1, + ACTIONS(8556), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5092), 1, + STATE(5080), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379251,13 +367281,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249836] = 6, - ACTIONS(8576), 1, + ACTIONS(8494), 1, sym_escape_sequence, - ACTIONS(8578), 1, + ACTIONS(8496), 1, sym__quoted_content_heredoc_double, - ACTIONS(8640), 1, + ACTIONS(8558), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5260), 1, + STATE(5248), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379266,13 +367296,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249857] = 6, - ACTIONS(8558), 1, + ACTIONS(8476), 1, sym_escape_sequence, - ACTIONS(8560), 1, + ACTIONS(8478), 1, sym__quoted_content_double, - ACTIONS(8642), 1, + ACTIONS(8560), 1, anon_sym_DQUOTE, - STATE(5308), 1, + STATE(5296), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379281,13 +367311,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249878] = 6, - ACTIONS(8582), 1, + ACTIONS(8500), 1, sym_escape_sequence, - ACTIONS(8584), 1, + ACTIONS(8502), 1, sym__quoted_content_curly, - ACTIONS(8644), 1, + ACTIONS(8562), 1, anon_sym_RBRACE, - STATE(5259), 1, + STATE(5247), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379296,13 +367326,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249899] = 6, - ACTIONS(8588), 1, + ACTIONS(8506), 1, sym_escape_sequence, - ACTIONS(8590), 1, + ACTIONS(8508), 1, sym__quoted_content_square, - ACTIONS(8646), 1, + ACTIONS(8564), 1, anon_sym_RBRACK, - STATE(5231), 1, + STATE(5219), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379311,13 +367341,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249920] = 6, - ACTIONS(8594), 1, + ACTIONS(8512), 1, sym_escape_sequence, - ACTIONS(8596), 1, + ACTIONS(8514), 1, sym__quoted_content_angle, - ACTIONS(8648), 1, + ACTIONS(8566), 1, anon_sym_GT, - STATE(5230), 1, + STATE(5218), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379326,13 +367356,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249941] = 6, - ACTIONS(8600), 1, + ACTIONS(8518), 1, sym_escape_sequence, - ACTIONS(8602), 1, + ACTIONS(8520), 1, sym__quoted_content_bar, - ACTIONS(8650), 1, + ACTIONS(8568), 1, anon_sym_PIPE, - STATE(5205), 1, + STATE(5193), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379341,13 +367371,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249962] = 6, - ACTIONS(8606), 1, + ACTIONS(8524), 1, sym_escape_sequence, - ACTIONS(8608), 1, + ACTIONS(8526), 1, sym__quoted_content_slash, - ACTIONS(8652), 1, + ACTIONS(8570), 1, anon_sym_SLASH, - STATE(5204), 1, + STATE(5192), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379356,13 +367386,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [249983] = 6, - ACTIONS(8606), 1, + ACTIONS(8524), 1, sym_escape_sequence, - ACTIONS(8608), 1, + ACTIONS(8526), 1, sym__quoted_content_slash, - ACTIONS(8654), 1, + ACTIONS(8572), 1, anon_sym_SLASH, - STATE(5204), 1, + STATE(5192), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379371,13 +367401,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250004] = 6, - ACTIONS(8600), 1, + ACTIONS(8518), 1, sym_escape_sequence, - ACTIONS(8602), 1, + ACTIONS(8520), 1, sym__quoted_content_bar, - ACTIONS(8656), 1, + ACTIONS(8574), 1, anon_sym_PIPE, - STATE(5205), 1, + STATE(5193), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379386,13 +367416,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250025] = 6, - ACTIONS(8594), 1, + ACTIONS(8512), 1, sym_escape_sequence, - ACTIONS(8596), 1, + ACTIONS(8514), 1, sym__quoted_content_angle, - ACTIONS(8658), 1, + ACTIONS(8576), 1, anon_sym_GT, - STATE(5230), 1, + STATE(5218), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379401,13 +367431,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250046] = 6, - ACTIONS(8588), 1, + ACTIONS(8506), 1, sym_escape_sequence, - ACTIONS(8590), 1, + ACTIONS(8508), 1, sym__quoted_content_square, - ACTIONS(8660), 1, + ACTIONS(8578), 1, anon_sym_RBRACK, - STATE(5231), 1, + STATE(5219), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379416,13 +367446,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250067] = 6, - ACTIONS(8582), 1, + ACTIONS(8500), 1, sym_escape_sequence, - ACTIONS(8584), 1, + ACTIONS(8502), 1, sym__quoted_content_curly, - ACTIONS(8662), 1, + ACTIONS(8580), 1, anon_sym_RBRACE, - STATE(5259), 1, + STATE(5247), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379431,13 +367461,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250088] = 6, - ACTIONS(8576), 1, + ACTIONS(8494), 1, sym_escape_sequence, - ACTIONS(8578), 1, + ACTIONS(8496), 1, sym__quoted_content_heredoc_double, - ACTIONS(8664), 1, + ACTIONS(8582), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5260), 1, + STATE(5248), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379446,13 +367476,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250109] = 6, - ACTIONS(8570), 1, + ACTIONS(8488), 1, sym_escape_sequence, - ACTIONS(8572), 1, + ACTIONS(8490), 1, sym__quoted_content_heredoc_single, - ACTIONS(8666), 1, + ACTIONS(8584), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5092), 1, + STATE(5080), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379461,13 +367491,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250130] = 6, - ACTIONS(8564), 1, + ACTIONS(8482), 1, sym_escape_sequence, - ACTIONS(8566), 1, + ACTIONS(8484), 1, sym__quoted_content_single, - ACTIONS(8668), 1, + ACTIONS(8586), 1, anon_sym_SQUOTE, - STATE(5262), 1, + STATE(5250), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379476,13 +367506,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250151] = 6, - ACTIONS(8558), 1, + ACTIONS(8476), 1, sym_escape_sequence, - ACTIONS(8560), 1, + ACTIONS(8478), 1, sym__quoted_content_double, - ACTIONS(8670), 1, + ACTIONS(8588), 1, anon_sym_DQUOTE, - STATE(5308), 1, + STATE(5296), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379491,13 +367521,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250172] = 6, - ACTIONS(8372), 1, + ACTIONS(8290), 1, sym_escape_sequence, - ACTIONS(8374), 1, + ACTIONS(8292), 1, sym__quoted_content_parenthesis, - ACTIONS(8672), 1, + ACTIONS(8590), 1, anon_sym_RPAREN, - STATE(5309), 1, + STATE(5297), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379506,13 +367536,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250193] = 6, - ACTIONS(8564), 1, + ACTIONS(8482), 1, sym_escape_sequence, - ACTIONS(8566), 1, + ACTIONS(8484), 1, sym__quoted_content_single, - ACTIONS(8674), 1, + ACTIONS(8592), 1, anon_sym_SQUOTE, - STATE(5262), 1, + STATE(5250), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379521,13 +367551,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250214] = 6, - ACTIONS(8676), 1, + ACTIONS(8594), 1, anon_sym_RPAREN, - ACTIONS(8678), 1, + ACTIONS(8596), 1, sym_escape_sequence, - ACTIONS(8680), 1, + ACTIONS(8598), 1, sym__quoted_content_parenthesis, - STATE(5336), 1, + STATE(5324), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379536,13 +367566,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250235] = 6, - ACTIONS(8570), 1, + ACTIONS(8488), 1, sym_escape_sequence, - ACTIONS(8572), 1, + ACTIONS(8490), 1, sym__quoted_content_heredoc_single, - ACTIONS(8682), 1, + ACTIONS(8600), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5092), 1, + STATE(5080), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379551,13 +367581,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250256] = 6, - ACTIONS(8576), 1, + ACTIONS(8494), 1, sym_escape_sequence, - ACTIONS(8578), 1, + ACTIONS(8496), 1, sym__quoted_content_heredoc_double, - ACTIONS(8684), 1, + ACTIONS(8602), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5260), 1, + STATE(5248), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379566,13 +367596,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250277] = 6, - ACTIONS(8686), 1, + ACTIONS(8604), 1, anon_sym_DQUOTE, - ACTIONS(8688), 1, + ACTIONS(8606), 1, sym_escape_sequence, - ACTIONS(8690), 1, + ACTIONS(8608), 1, sym__quoted_content_double, - STATE(5303), 1, + STATE(5291), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379581,13 +367611,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250298] = 6, - ACTIONS(8582), 1, + ACTIONS(8500), 1, sym_escape_sequence, - ACTIONS(8584), 1, + ACTIONS(8502), 1, sym__quoted_content_curly, - ACTIONS(8692), 1, + ACTIONS(8610), 1, anon_sym_RBRACE, - STATE(5259), 1, + STATE(5247), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379596,13 +367626,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250319] = 6, - ACTIONS(8694), 1, + ACTIONS(8612), 1, anon_sym_SQUOTE, - ACTIONS(8696), 1, + ACTIONS(8614), 1, sym_escape_sequence, - ACTIONS(8698), 1, + ACTIONS(8616), 1, sym__quoted_content_single, - STATE(5301), 1, + STATE(5289), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379611,13 +367641,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250340] = 6, - ACTIONS(8588), 1, + ACTIONS(8506), 1, sym_escape_sequence, - ACTIONS(8590), 1, + ACTIONS(8508), 1, sym__quoted_content_square, - ACTIONS(8700), 1, + ACTIONS(8618), 1, anon_sym_RBRACK, - STATE(5231), 1, + STATE(5219), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379626,13 +367656,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250361] = 6, - ACTIONS(8702), 1, + ACTIONS(8620), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8704), 1, + ACTIONS(8622), 1, sym_escape_sequence, - ACTIONS(8706), 1, + ACTIONS(8624), 1, sym__quoted_content_heredoc_single, - STATE(5300), 1, + STATE(5288), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379641,13 +367671,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250382] = 6, - ACTIONS(8594), 1, + ACTIONS(8512), 1, sym_escape_sequence, - ACTIONS(8596), 1, + ACTIONS(8514), 1, sym__quoted_content_angle, - ACTIONS(8708), 1, + ACTIONS(8626), 1, anon_sym_GT, - STATE(5230), 1, + STATE(5218), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379658,26 +367688,26 @@ static const uint16_t ts_small_parse_table[] = { [250403] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(515), 1, + ACTIONS(480), 1, anon_sym_DQUOTE, - ACTIONS(517), 1, + ACTIONS(482), 1, anon_sym_SQUOTE, - STATE(2717), 1, - sym__quoted_i_single, - STATE(2848), 1, + STATE(2708), 1, sym__quoted_i_double, + STATE(2827), 1, + sym__quoted_i_single, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, [250424] = 6, - ACTIONS(8710), 1, + ACTIONS(8628), 1, anon_sym_RPAREN, - ACTIONS(8712), 1, + ACTIONS(8630), 1, sym_escape_sequence, - ACTIONS(8714), 1, + ACTIONS(8632), 1, sym__quoted_content_parenthesis, - STATE(5142), 1, + STATE(5130), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379686,13 +367716,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250445] = 6, - ACTIONS(8716), 1, + ACTIONS(8634), 1, anon_sym_DQUOTE, - ACTIONS(8718), 1, + ACTIONS(8636), 1, sym_escape_sequence, - ACTIONS(8720), 1, + ACTIONS(8638), 1, sym__quoted_content_double, - STATE(5143), 1, + STATE(5131), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379701,13 +367731,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250466] = 6, - ACTIONS(8722), 1, + ACTIONS(8640), 1, anon_sym_SQUOTE, - ACTIONS(8724), 1, + ACTIONS(8642), 1, sym_escape_sequence, - ACTIONS(8726), 1, + ACTIONS(8644), 1, sym__quoted_content_single, - STATE(5144), 1, + STATE(5132), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379716,13 +367746,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250487] = 6, - ACTIONS(8728), 1, + ACTIONS(8646), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8730), 1, + ACTIONS(8648), 1, sym_escape_sequence, - ACTIONS(8732), 1, + ACTIONS(8650), 1, sym__quoted_content_heredoc_single, - STATE(5145), 1, + STATE(5133), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379731,13 +367761,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250508] = 6, - ACTIONS(8734), 1, + ACTIONS(8652), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8736), 1, + ACTIONS(8654), 1, sym_escape_sequence, - ACTIONS(8738), 1, + ACTIONS(8656), 1, sym__quoted_content_heredoc_double, - STATE(5146), 1, + STATE(5134), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379746,13 +367776,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250529] = 6, - ACTIONS(8740), 1, + ACTIONS(8658), 1, anon_sym_RBRACE, - ACTIONS(8742), 1, + ACTIONS(8660), 1, sym_escape_sequence, - ACTIONS(8744), 1, + ACTIONS(8662), 1, sym__quoted_content_curly, - STATE(5147), 1, + STATE(5135), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379761,13 +367791,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250550] = 6, - ACTIONS(8746), 1, + ACTIONS(8664), 1, anon_sym_RBRACK, - ACTIONS(8748), 1, + ACTIONS(8666), 1, sym_escape_sequence, - ACTIONS(8750), 1, + ACTIONS(8668), 1, sym__quoted_content_square, - STATE(5148), 1, + STATE(5136), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379776,13 +367806,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250571] = 6, - ACTIONS(8752), 1, + ACTIONS(8670), 1, anon_sym_GT, - ACTIONS(8754), 1, + ACTIONS(8672), 1, sym_escape_sequence, - ACTIONS(8756), 1, + ACTIONS(8674), 1, sym__quoted_content_angle, - STATE(5149), 1, + STATE(5137), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379791,13 +367821,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250592] = 6, - ACTIONS(8758), 1, + ACTIONS(8676), 1, anon_sym_PIPE, - ACTIONS(8760), 1, + ACTIONS(8678), 1, sym_escape_sequence, - ACTIONS(8762), 1, + ACTIONS(8680), 1, sym__quoted_content_bar, - STATE(5150), 1, + STATE(5138), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379806,13 +367836,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250613] = 6, - ACTIONS(8764), 1, + ACTIONS(8682), 1, anon_sym_SLASH, - ACTIONS(8766), 1, + ACTIONS(8684), 1, sym_escape_sequence, - ACTIONS(8768), 1, + ACTIONS(8686), 1, sym__quoted_content_slash, - STATE(5151), 1, + STATE(5139), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379821,13 +367851,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250634] = 6, - ACTIONS(8770), 1, + ACTIONS(8688), 1, anon_sym_SLASH, - ACTIONS(8772), 1, + ACTIONS(8690), 1, sym_escape_sequence, - ACTIONS(8774), 1, + ACTIONS(8692), 1, sym__quoted_content_slash, - STATE(5105), 1, + STATE(5093), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379836,13 +367866,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250655] = 6, - ACTIONS(8776), 1, + ACTIONS(8694), 1, anon_sym_PIPE, - ACTIONS(8778), 1, + ACTIONS(8696), 1, sym_escape_sequence, - ACTIONS(8780), 1, + ACTIONS(8698), 1, sym__quoted_content_bar, - STATE(5106), 1, + STATE(5094), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379851,13 +367881,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250676] = 6, - ACTIONS(8782), 1, + ACTIONS(8700), 1, anon_sym_GT, - ACTIONS(8784), 1, + ACTIONS(8702), 1, sym_escape_sequence, - ACTIONS(8786), 1, + ACTIONS(8704), 1, sym__quoted_content_angle, - STATE(5107), 1, + STATE(5095), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379866,13 +367896,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250697] = 6, - ACTIONS(8788), 1, + ACTIONS(8706), 1, anon_sym_RBRACK, - ACTIONS(8790), 1, + ACTIONS(8708), 1, sym_escape_sequence, - ACTIONS(8792), 1, + ACTIONS(8710), 1, sym__quoted_content_square, - STATE(5108), 1, + STATE(5096), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379881,13 +367911,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250718] = 6, - ACTIONS(8794), 1, + ACTIONS(8712), 1, anon_sym_RBRACE, - ACTIONS(8796), 1, + ACTIONS(8714), 1, sym_escape_sequence, - ACTIONS(8798), 1, + ACTIONS(8716), 1, sym__quoted_content_curly, - STATE(5109), 1, + STATE(5097), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379896,13 +367926,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250739] = 6, - ACTIONS(8800), 1, + ACTIONS(8718), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8802), 1, + ACTIONS(8720), 1, sym_escape_sequence, - ACTIONS(8804), 1, + ACTIONS(8722), 1, sym__quoted_content_heredoc_double, - STATE(5110), 1, + STATE(5098), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379911,13 +367941,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250760] = 6, - ACTIONS(8372), 1, + ACTIONS(8290), 1, sym_escape_sequence, - ACTIONS(8374), 1, + ACTIONS(8292), 1, sym__quoted_content_parenthesis, - ACTIONS(8806), 1, + ACTIONS(8724), 1, anon_sym_RPAREN, - STATE(5309), 1, + STATE(5297), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379926,13 +367956,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250781] = 6, - ACTIONS(8558), 1, + ACTIONS(8476), 1, sym_escape_sequence, - ACTIONS(8560), 1, + ACTIONS(8478), 1, sym__quoted_content_double, - ACTIONS(8808), 1, + ACTIONS(8726), 1, anon_sym_DQUOTE, - STATE(5308), 1, + STATE(5296), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379941,13 +367971,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250802] = 6, - ACTIONS(8564), 1, + ACTIONS(8482), 1, sym_escape_sequence, - ACTIONS(8566), 1, + ACTIONS(8484), 1, sym__quoted_content_single, - ACTIONS(8810), 1, + ACTIONS(8728), 1, anon_sym_SQUOTE, - STATE(5262), 1, + STATE(5250), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379956,13 +367986,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250823] = 6, - ACTIONS(8570), 1, + ACTIONS(8488), 1, sym_escape_sequence, - ACTIONS(8572), 1, + ACTIONS(8490), 1, sym__quoted_content_heredoc_single, - ACTIONS(8812), 1, + ACTIONS(8730), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5092), 1, + STATE(5080), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379971,13 +368001,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250844] = 6, - ACTIONS(8576), 1, + ACTIONS(8494), 1, sym_escape_sequence, - ACTIONS(8578), 1, + ACTIONS(8496), 1, sym__quoted_content_heredoc_double, - ACTIONS(8814), 1, + ACTIONS(8732), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5260), 1, + STATE(5248), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -379986,13 +368016,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250865] = 6, - ACTIONS(8582), 1, + ACTIONS(8500), 1, sym_escape_sequence, - ACTIONS(8584), 1, + ACTIONS(8502), 1, sym__quoted_content_curly, - ACTIONS(8816), 1, + ACTIONS(8734), 1, anon_sym_RBRACE, - STATE(5259), 1, + STATE(5247), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380001,13 +368031,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250886] = 6, - ACTIONS(8588), 1, + ACTIONS(8506), 1, sym_escape_sequence, - ACTIONS(8590), 1, + ACTIONS(8508), 1, sym__quoted_content_square, - ACTIONS(8818), 1, + ACTIONS(8736), 1, anon_sym_RBRACK, - STATE(5231), 1, + STATE(5219), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380016,13 +368046,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250907] = 6, - ACTIONS(8594), 1, + ACTIONS(8512), 1, sym_escape_sequence, - ACTIONS(8596), 1, + ACTIONS(8514), 1, sym__quoted_content_angle, - ACTIONS(8820), 1, + ACTIONS(8738), 1, anon_sym_GT, - STATE(5230), 1, + STATE(5218), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380031,13 +368061,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250928] = 6, - ACTIONS(8600), 1, + ACTIONS(8518), 1, sym_escape_sequence, - ACTIONS(8602), 1, + ACTIONS(8520), 1, sym__quoted_content_bar, - ACTIONS(8822), 1, + ACTIONS(8740), 1, anon_sym_PIPE, - STATE(5205), 1, + STATE(5193), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380046,13 +368076,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250949] = 6, - ACTIONS(8606), 1, + ACTIONS(8524), 1, sym_escape_sequence, - ACTIONS(8608), 1, + ACTIONS(8526), 1, sym__quoted_content_slash, - ACTIONS(8824), 1, + ACTIONS(8742), 1, anon_sym_SLASH, - STATE(5204), 1, + STATE(5192), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380061,13 +368091,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250970] = 6, - ACTIONS(8826), 1, + ACTIONS(8744), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8828), 1, + ACTIONS(8746), 1, sym_escape_sequence, - ACTIONS(8830), 1, + ACTIONS(8748), 1, sym__quoted_content_heredoc_single, - STATE(5111), 1, + STATE(5099), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380076,13 +368106,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [250991] = 6, - ACTIONS(8832), 1, + ACTIONS(8750), 1, anon_sym_SQUOTE, - ACTIONS(8834), 1, + ACTIONS(8752), 1, sym_escape_sequence, - ACTIONS(8836), 1, + ACTIONS(8754), 1, sym__quoted_content_single, - STATE(5112), 1, + STATE(5100), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380091,13 +368121,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251012] = 6, - ACTIONS(8838), 1, + ACTIONS(8756), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8840), 1, + ACTIONS(8758), 1, sym_escape_sequence, - ACTIONS(8842), 1, + ACTIONS(8760), 1, sym__quoted_content_heredoc_double, - STATE(5209), 1, + STATE(5197), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380106,13 +368136,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251033] = 6, - ACTIONS(8844), 1, + ACTIONS(8762), 1, anon_sym_RPAREN, - ACTIONS(8846), 1, + ACTIONS(8764), 1, sym_escape_sequence, - ACTIONS(8848), 1, + ACTIONS(8766), 1, sym__quoted_content_parenthesis, - STATE(5114), 1, + STATE(5102), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380121,13 +368151,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251054] = 6, - ACTIONS(8600), 1, + ACTIONS(8518), 1, sym_escape_sequence, - ACTIONS(8602), 1, + ACTIONS(8520), 1, sym__quoted_content_bar, - ACTIONS(8850), 1, + ACTIONS(8768), 1, anon_sym_PIPE, - STATE(5205), 1, + STATE(5193), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380136,13 +368166,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251075] = 6, - ACTIONS(8852), 1, + ACTIONS(8770), 1, anon_sym_RBRACE, - ACTIONS(8854), 1, + ACTIONS(8772), 1, sym_escape_sequence, - ACTIONS(8856), 1, + ACTIONS(8774), 1, sym__quoted_content_curly, - STATE(5257), 1, + STATE(5245), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380151,13 +368181,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251096] = 6, - ACTIONS(8606), 1, + ACTIONS(8524), 1, sym_escape_sequence, - ACTIONS(8608), 1, + ACTIONS(8526), 1, sym__quoted_content_slash, - ACTIONS(8858), 1, + ACTIONS(8776), 1, anon_sym_SLASH, - STATE(5204), 1, + STATE(5192), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380166,13 +368196,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251117] = 6, - ACTIONS(8860), 1, + ACTIONS(8778), 1, anon_sym_RBRACK, - ACTIONS(8862), 1, + ACTIONS(8780), 1, sym_escape_sequence, - ACTIONS(8864), 1, + ACTIONS(8782), 1, sym__quoted_content_square, - STATE(5255), 1, + STATE(5243), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380181,13 +368211,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251138] = 6, - ACTIONS(8866), 1, + ACTIONS(8784), 1, anon_sym_GT, - ACTIONS(8868), 1, + ACTIONS(8786), 1, sym_escape_sequence, - ACTIONS(8870), 1, + ACTIONS(8788), 1, sym__quoted_content_angle, - STATE(5254), 1, + STATE(5242), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380198,11 +368228,11 @@ static const uint16_t ts_small_parse_table[] = { [251159] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(8872), 1, + ACTIONS(8790), 1, anon_sym_COMMA, - STATE(5199), 1, + STATE(5187), 1, aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(8874), 2, + ACTIONS(8792), 2, anon_sym_when, anon_sym_DASH_GT, ACTIONS(3), 3, @@ -380210,13 +368240,13 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_comment, aux_sym__terminator_token1, [251178] = 6, - ACTIONS(8876), 1, + ACTIONS(8794), 1, anon_sym_PIPE, - ACTIONS(8878), 1, + ACTIONS(8796), 1, sym_escape_sequence, - ACTIONS(8880), 1, + ACTIONS(8798), 1, sym__quoted_content_bar, - STATE(5249), 1, + STATE(5237), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380225,13 +368255,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251199] = 6, - ACTIONS(8882), 1, + ACTIONS(8800), 1, anon_sym_SLASH, - ACTIONS(8884), 1, + ACTIONS(8802), 1, sym_escape_sequence, - ACTIONS(8886), 1, + ACTIONS(8804), 1, sym__quoted_content_slash, - STATE(5244), 1, + STATE(5232), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380240,13 +368270,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251220] = 6, - ACTIONS(8888), 1, + ACTIONS(8806), 1, anon_sym_PIPE, - ACTIONS(8890), 1, + ACTIONS(8808), 1, sym_escape_sequence, - ACTIONS(8892), 1, + ACTIONS(8810), 1, sym__quoted_content_bar, - STATE(5385), 1, + STATE(5373), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380257,13 +368287,13 @@ static const uint16_t ts_small_parse_table[] = { [251241] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(1077), 1, + ACTIONS(1025), 1, anon_sym_DQUOTE, - ACTIONS(1079), 1, + ACTIONS(1027), 1, anon_sym_SQUOTE, - STATE(3186), 1, + STATE(3174), 1, sym__quoted_i_single, - STATE(3187), 1, + STATE(3175), 1, sym__quoted_i_double, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -380272,20 +368302,20 @@ static const uint16_t ts_small_parse_table[] = { [251262] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(1147), 1, + ACTIONS(1089), 1, anon_sym_DQUOTE, - ACTIONS(1149), 1, + ACTIONS(1091), 1, anon_sym_SQUOTE, - STATE(4107), 1, + STATE(4095), 1, sym__quoted_i_double, - STATE(4108), 1, + STATE(4096), 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, + ACTIONS(8386), 1, sym__quoted_content_i_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380293,18 +368323,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8466), 3, + ACTIONS(8384), 3, anon_sym_SQUOTE, anon_sym_POUND_LBRACE, sym_escape_sequence, [251300] = 6, - ACTIONS(8606), 1, + ACTIONS(8524), 1, sym_escape_sequence, - ACTIONS(8608), 1, + ACTIONS(8526), 1, sym__quoted_content_slash, - ACTIONS(8894), 1, + ACTIONS(8812), 1, anon_sym_SLASH, - STATE(5204), 1, + STATE(5192), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380315,26 +368345,26 @@ static const uint16_t ts_small_parse_table[] = { [251321] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(621), 1, + ACTIONS(534), 1, anon_sym_DQUOTE, - ACTIONS(623), 1, + ACTIONS(536), 1, anon_sym_SQUOTE, - STATE(3304), 1, + STATE(3291), 1, sym__quoted_i_single, - STATE(3305), 1, + STATE(3292), 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, + ACTIONS(8518), 1, sym_escape_sequence, - ACTIONS(8602), 1, + ACTIONS(8520), 1, sym__quoted_content_bar, - ACTIONS(8896), 1, + ACTIONS(8814), 1, anon_sym_PIPE, - STATE(5205), 1, + STATE(5193), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380345,26 +368375,26 @@ static const uint16_t ts_small_parse_table[] = { [251363] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(79), 1, + ACTIONS(71), 1, anon_sym_DQUOTE, - ACTIONS(81), 1, + ACTIONS(73), 1, anon_sym_SQUOTE, - STATE(1624), 1, + STATE(1571), 1, sym__quoted_i_double, - STATE(1625), 1, + STATE(1601), 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, + ACTIONS(8816), 1, anon_sym_RPAREN, - ACTIONS(8900), 1, + ACTIONS(8818), 1, sym_escape_sequence, - ACTIONS(8902), 1, + ACTIONS(8820), 1, sym__quoted_content_parenthesis, - STATE(5188), 1, + STATE(5176), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380373,13 +368403,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251405] = 6, - ACTIONS(8904), 1, + ACTIONS(8822), 1, anon_sym_DQUOTE, - ACTIONS(8906), 1, + ACTIONS(8824), 1, sym_escape_sequence, - ACTIONS(8908), 1, + ACTIONS(8826), 1, sym__quoted_content_double, - STATE(5189), 1, + STATE(5177), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380388,13 +368418,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251426] = 6, - ACTIONS(8910), 1, + ACTIONS(8828), 1, anon_sym_SQUOTE, - ACTIONS(8912), 1, + ACTIONS(8830), 1, sym_escape_sequence, - ACTIONS(8914), 1, + ACTIONS(8832), 1, sym__quoted_content_single, - STATE(5190), 1, + STATE(5178), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380403,13 +368433,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251447] = 6, - ACTIONS(8916), 1, + ACTIONS(8834), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(8918), 1, + ACTIONS(8836), 1, sym_escape_sequence, - ACTIONS(8920), 1, + ACTIONS(8838), 1, sym__quoted_content_heredoc_single, - STATE(5191), 1, + STATE(5179), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380418,13 +368448,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251468] = 6, - ACTIONS(8922), 1, + ACTIONS(8840), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(8924), 1, + ACTIONS(8842), 1, sym_escape_sequence, - ACTIONS(8926), 1, + ACTIONS(8844), 1, sym__quoted_content_heredoc_double, - STATE(5192), 1, + STATE(5180), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380433,13 +368463,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251489] = 6, - ACTIONS(8928), 1, + ACTIONS(8846), 1, anon_sym_RBRACE, - ACTIONS(8930), 1, + ACTIONS(8848), 1, sym_escape_sequence, - ACTIONS(8932), 1, + ACTIONS(8850), 1, sym__quoted_content_curly, - STATE(5193), 1, + STATE(5181), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380448,13 +368478,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251510] = 6, - ACTIONS(8934), 1, + ACTIONS(8852), 1, anon_sym_RBRACK, - ACTIONS(8936), 1, + ACTIONS(8854), 1, sym_escape_sequence, - ACTIONS(8938), 1, + ACTIONS(8856), 1, sym__quoted_content_square, - STATE(5194), 1, + STATE(5182), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380463,13 +368493,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251531] = 6, - ACTIONS(8940), 1, + ACTIONS(8858), 1, anon_sym_GT, - ACTIONS(8942), 1, + ACTIONS(8860), 1, sym_escape_sequence, - ACTIONS(8944), 1, + ACTIONS(8862), 1, sym__quoted_content_angle, - STATE(5195), 1, + STATE(5183), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380478,13 +368508,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251552] = 6, - ACTIONS(8946), 1, + ACTIONS(8864), 1, anon_sym_PIPE, - ACTIONS(8948), 1, + ACTIONS(8866), 1, sym_escape_sequence, - ACTIONS(8950), 1, + ACTIONS(8868), 1, sym__quoted_content_bar, - STATE(5196), 1, + STATE(5184), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380493,13 +368523,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251573] = 6, - ACTIONS(8952), 1, + ACTIONS(8870), 1, anon_sym_SLASH, - ACTIONS(8954), 1, + ACTIONS(8872), 1, sym_escape_sequence, - ACTIONS(8956), 1, + ACTIONS(8874), 1, sym__quoted_content_slash, - STATE(5197), 1, + STATE(5185), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380508,13 +368538,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251594] = 6, - ACTIONS(8588), 1, + ACTIONS(8506), 1, sym_escape_sequence, - ACTIONS(8590), 1, + ACTIONS(8508), 1, sym__quoted_content_square, - ACTIONS(8958), 1, + ACTIONS(8876), 1, anon_sym_RBRACK, - STATE(5231), 1, + STATE(5219), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380525,11 +368555,11 @@ static const uint16_t ts_small_parse_table[] = { [251615] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(8960), 1, + ACTIONS(8878), 1, anon_sym_COMMA, - STATE(4926), 1, + STATE(4914), 1, aux_sym__items_with_trailing_separator_repeat1, - ACTIONS(1123), 2, + ACTIONS(1211), 2, anon_sym_RBRACE, anon_sym_RBRACK, ACTIONS(3), 3, @@ -380539,26 +368569,26 @@ static const uint16_t ts_small_parse_table[] = { [251634] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(566), 1, + ACTIONS(580), 1, anon_sym_DQUOTE, - ACTIONS(568), 1, + ACTIONS(582), 1, anon_sym_SQUOTE, - STATE(2729), 1, + STATE(2795), 1, sym__quoted_i_single, - STATE(2806), 1, + STATE(2800), 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, + ACTIONS(8500), 1, sym_escape_sequence, - ACTIONS(8584), 1, + ACTIONS(8502), 1, sym__quoted_content_curly, - ACTIONS(8962), 1, + ACTIONS(8880), 1, anon_sym_RBRACE, - STATE(5259), 1, + STATE(5247), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380567,13 +368597,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251676] = 6, - ACTIONS(8576), 1, + ACTIONS(8494), 1, sym_escape_sequence, - ACTIONS(8578), 1, + ACTIONS(8496), 1, sym__quoted_content_heredoc_double, - ACTIONS(8964), 1, + ACTIONS(8882), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5260), 1, + STATE(5248), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380582,13 +368612,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251697] = 6, - ACTIONS(8570), 1, + ACTIONS(8488), 1, sym_escape_sequence, - ACTIONS(8572), 1, + ACTIONS(8490), 1, sym__quoted_content_heredoc_single, - ACTIONS(8966), 1, + ACTIONS(8884), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5092), 1, + STATE(5080), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380597,13 +368627,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251718] = 6, - ACTIONS(8372), 1, + ACTIONS(8290), 1, sym_escape_sequence, - ACTIONS(8374), 1, + ACTIONS(8292), 1, sym__quoted_content_parenthesis, - ACTIONS(8968), 1, + ACTIONS(8886), 1, anon_sym_RPAREN, - STATE(5309), 1, + STATE(5297), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380612,13 +368642,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251739] = 6, - ACTIONS(8558), 1, + ACTIONS(8476), 1, sym_escape_sequence, - ACTIONS(8560), 1, + ACTIONS(8478), 1, sym__quoted_content_double, - ACTIONS(8970), 1, + ACTIONS(8888), 1, anon_sym_DQUOTE, - STATE(5308), 1, + STATE(5296), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380627,13 +368657,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251760] = 6, - ACTIONS(8564), 1, + ACTIONS(8482), 1, sym_escape_sequence, - ACTIONS(8566), 1, + ACTIONS(8484), 1, sym__quoted_content_single, - ACTIONS(8972), 1, + ACTIONS(8890), 1, anon_sym_SQUOTE, - STATE(5262), 1, + STATE(5250), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380642,13 +368672,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251781] = 6, - ACTIONS(8570), 1, + ACTIONS(8488), 1, sym_escape_sequence, - ACTIONS(8572), 1, + ACTIONS(8490), 1, sym__quoted_content_heredoc_single, - ACTIONS(8974), 1, + ACTIONS(8892), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5092), 1, + STATE(5080), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380657,13 +368687,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251802] = 6, - ACTIONS(8576), 1, + ACTIONS(8494), 1, sym_escape_sequence, - ACTIONS(8578), 1, + ACTIONS(8496), 1, sym__quoted_content_heredoc_double, - ACTIONS(8976), 1, + ACTIONS(8894), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5260), 1, + STATE(5248), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380672,13 +368702,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251823] = 6, - ACTIONS(8582), 1, + ACTIONS(8500), 1, sym_escape_sequence, - ACTIONS(8584), 1, + ACTIONS(8502), 1, sym__quoted_content_curly, - ACTIONS(8978), 1, + ACTIONS(8896), 1, anon_sym_RBRACE, - STATE(5259), 1, + STATE(5247), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380687,13 +368717,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251844] = 6, - ACTIONS(8588), 1, + ACTIONS(8506), 1, sym_escape_sequence, - ACTIONS(8590), 1, + ACTIONS(8508), 1, sym__quoted_content_square, - ACTIONS(8980), 1, + ACTIONS(8898), 1, anon_sym_RBRACK, - STATE(5231), 1, + STATE(5219), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380702,13 +368732,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251865] = 6, - ACTIONS(8594), 1, + ACTIONS(8512), 1, sym_escape_sequence, - ACTIONS(8596), 1, + ACTIONS(8514), 1, sym__quoted_content_angle, - ACTIONS(8982), 1, + ACTIONS(8900), 1, anon_sym_GT, - STATE(5230), 1, + STATE(5218), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380717,13 +368747,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251886] = 6, - ACTIONS(8600), 1, + ACTIONS(8518), 1, sym_escape_sequence, - ACTIONS(8602), 1, + ACTIONS(8520), 1, sym__quoted_content_bar, - ACTIONS(8984), 1, + ACTIONS(8902), 1, anon_sym_PIPE, - STATE(5205), 1, + STATE(5193), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380732,13 +368762,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251907] = 6, - ACTIONS(8606), 1, + ACTIONS(8524), 1, sym_escape_sequence, - ACTIONS(8608), 1, + ACTIONS(8526), 1, sym__quoted_content_slash, - ACTIONS(8986), 1, + ACTIONS(8904), 1, anon_sym_SLASH, - STATE(5204), 1, + STATE(5192), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380747,7 +368777,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [251928] = 4, - ACTIONS(8468), 1, + ACTIONS(8386), 1, sym__quoted_content_i_heredoc_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380755,18 +368785,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8466), 3, + ACTIONS(8384), 3, anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_POUND_LBRACE, sym_escape_sequence, [251945] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(8988), 1, + ACTIONS(8906), 1, anon_sym_COMMA, - STATE(5199), 1, + STATE(5187), 1, aux_sym__stab_clause_arguments_without_parentheses_repeat1, - ACTIONS(5012), 2, + ACTIONS(4930), 2, anon_sym_when, anon_sym_DASH_GT, ACTIONS(3), 3, @@ -380774,13 +368804,13 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_comment, aux_sym__terminator_token1, [251964] = 6, - ACTIONS(8564), 1, + ACTIONS(8482), 1, sym_escape_sequence, - ACTIONS(8566), 1, + ACTIONS(8484), 1, sym__quoted_content_single, - ACTIONS(8991), 1, + ACTIONS(8909), 1, anon_sym_SQUOTE, - STATE(5262), 1, + STATE(5250), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380791,26 +368821,26 @@ static const uint16_t ts_small_parse_table[] = { [251985] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(952), 1, + ACTIONS(902), 1, anon_sym_DQUOTE, - ACTIONS(954), 1, + ACTIONS(904), 1, anon_sym_SQUOTE, - STATE(1774), 1, + STATE(1767), 1, sym__quoted_i_double, - STATE(1775), 1, + STATE(1768), 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, + ACTIONS(8476), 1, sym_escape_sequence, - ACTIONS(8560), 1, + ACTIONS(8478), 1, sym__quoted_content_double, - ACTIONS(8993), 1, + ACTIONS(8911), 1, anon_sym_DQUOTE, - STATE(5308), 1, + STATE(5296), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380819,13 +368849,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252027] = 6, - ACTIONS(8372), 1, + ACTIONS(8290), 1, sym_escape_sequence, - ACTIONS(8374), 1, + ACTIONS(8292), 1, sym__quoted_content_parenthesis, - ACTIONS(8995), 1, + ACTIONS(8913), 1, anon_sym_RPAREN, - STATE(5309), 1, + STATE(5297), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380834,13 +368864,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252048] = 6, - ACTIONS(8997), 1, + ACTIONS(8915), 1, anon_sym_SLASH, - ACTIONS(8999), 1, + ACTIONS(8917), 1, sym_escape_sequence, - ACTIONS(9002), 1, + ACTIONS(8920), 1, sym__quoted_content_slash, - STATE(5204), 1, + STATE(5192), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380849,13 +368879,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252069] = 6, - ACTIONS(9005), 1, + ACTIONS(8923), 1, anon_sym_PIPE, - ACTIONS(9007), 1, + ACTIONS(8925), 1, sym_escape_sequence, - ACTIONS(9010), 1, + ACTIONS(8928), 1, sym__quoted_content_bar, - STATE(5205), 1, + STATE(5193), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380864,13 +368894,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252090] = 6, - ACTIONS(9013), 1, + ACTIONS(8931), 1, anon_sym_RPAREN, - ACTIONS(9015), 1, + ACTIONS(8933), 1, sym_escape_sequence, - ACTIONS(9017), 1, + ACTIONS(8935), 1, sym__quoted_content_parenthesis, - STATE(5344), 1, + STATE(5332), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380879,13 +368909,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252111] = 6, - ACTIONS(8606), 1, + ACTIONS(8524), 1, sym_escape_sequence, - ACTIONS(8608), 1, + ACTIONS(8526), 1, sym__quoted_content_slash, - ACTIONS(9019), 1, + ACTIONS(8937), 1, anon_sym_SLASH, - STATE(5204), 1, + STATE(5192), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380894,13 +368924,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252132] = 6, - ACTIONS(8600), 1, + ACTIONS(8518), 1, sym_escape_sequence, - ACTIONS(8602), 1, + ACTIONS(8520), 1, sym__quoted_content_bar, - ACTIONS(9021), 1, + ACTIONS(8939), 1, anon_sym_PIPE, - STATE(5205), 1, + STATE(5193), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380909,13 +368939,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252153] = 6, - ACTIONS(8576), 1, + ACTIONS(8494), 1, sym_escape_sequence, - ACTIONS(8578), 1, + ACTIONS(8496), 1, sym__quoted_content_heredoc_double, - ACTIONS(9023), 1, + ACTIONS(8941), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5260), 1, + STATE(5248), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380924,13 +368954,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252174] = 6, - ACTIONS(8594), 1, + ACTIONS(8512), 1, sym_escape_sequence, - ACTIONS(8596), 1, + ACTIONS(8514), 1, sym__quoted_content_angle, - ACTIONS(9025), 1, + ACTIONS(8943), 1, anon_sym_GT, - STATE(5230), 1, + STATE(5218), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380939,13 +368969,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252195] = 6, - ACTIONS(9027), 1, + ACTIONS(8945), 1, anon_sym_DQUOTE, - ACTIONS(9029), 1, + ACTIONS(8947), 1, sym_escape_sequence, - ACTIONS(9031), 1, + ACTIONS(8949), 1, sym__quoted_content_double, - STATE(5346), 1, + STATE(5334), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380954,13 +368984,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252216] = 6, - ACTIONS(8588), 1, + ACTIONS(8506), 1, sym_escape_sequence, - ACTIONS(8590), 1, + ACTIONS(8508), 1, sym__quoted_content_square, - ACTIONS(9033), 1, + ACTIONS(8951), 1, anon_sym_RBRACK, - STATE(5231), 1, + STATE(5219), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380969,13 +368999,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252237] = 6, - ACTIONS(8582), 1, + ACTIONS(8500), 1, sym_escape_sequence, - ACTIONS(8584), 1, + ACTIONS(8502), 1, sym__quoted_content_curly, - ACTIONS(9035), 1, + ACTIONS(8953), 1, anon_sym_RBRACE, - STATE(5259), 1, + STATE(5247), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380984,13 +369014,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252258] = 6, - ACTIONS(8576), 1, + ACTIONS(8494), 1, sym_escape_sequence, - ACTIONS(8578), 1, + ACTIONS(8496), 1, sym__quoted_content_heredoc_double, - ACTIONS(9037), 1, + ACTIONS(8955), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5260), 1, + STATE(5248), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -380999,13 +369029,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252279] = 6, - ACTIONS(8570), 1, + ACTIONS(8488), 1, sym_escape_sequence, - ACTIONS(8572), 1, + ACTIONS(8490), 1, sym__quoted_content_heredoc_single, - ACTIONS(9039), 1, + ACTIONS(8957), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5092), 1, + STATE(5080), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381014,13 +369044,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252300] = 6, - ACTIONS(8564), 1, + ACTIONS(8482), 1, sym_escape_sequence, - ACTIONS(8566), 1, + ACTIONS(8484), 1, sym__quoted_content_single, - ACTIONS(9041), 1, + ACTIONS(8959), 1, anon_sym_SQUOTE, - STATE(5262), 1, + STATE(5250), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381029,13 +369059,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252321] = 6, - ACTIONS(8558), 1, + ACTIONS(8476), 1, sym_escape_sequence, - ACTIONS(8560), 1, + ACTIONS(8478), 1, sym__quoted_content_double, - ACTIONS(9043), 1, + ACTIONS(8961), 1, anon_sym_DQUOTE, - STATE(5308), 1, + STATE(5296), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381044,13 +369074,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252342] = 6, - ACTIONS(9045), 1, + ACTIONS(8963), 1, anon_sym_RPAREN, - ACTIONS(9047), 1, + ACTIONS(8965), 1, sym_escape_sequence, - ACTIONS(9049), 1, + ACTIONS(8967), 1, sym__quoted_content_parenthesis, - STATE(5234), 1, + STATE(5222), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381059,13 +369089,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252363] = 6, - ACTIONS(9051), 1, + ACTIONS(8969), 1, anon_sym_DQUOTE, - ACTIONS(9053), 1, + ACTIONS(8971), 1, sym_escape_sequence, - ACTIONS(9055), 1, + ACTIONS(8973), 1, sym__quoted_content_double, - STATE(5235), 1, + STATE(5223), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381074,13 +369104,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252384] = 6, - ACTIONS(9057), 1, + ACTIONS(8975), 1, anon_sym_SQUOTE, - ACTIONS(9059), 1, + ACTIONS(8977), 1, sym_escape_sequence, - ACTIONS(9061), 1, + ACTIONS(8979), 1, sym__quoted_content_single, - STATE(5236), 1, + STATE(5224), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381089,13 +369119,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252405] = 6, - ACTIONS(9063), 1, + ACTIONS(8981), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9065), 1, + ACTIONS(8983), 1, sym_escape_sequence, - ACTIONS(9067), 1, + ACTIONS(8985), 1, sym__quoted_content_heredoc_single, - STATE(5237), 1, + STATE(5225), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381104,13 +369134,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252426] = 6, - ACTIONS(9069), 1, + ACTIONS(8987), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9071), 1, + ACTIONS(8989), 1, sym_escape_sequence, - ACTIONS(9073), 1, + ACTIONS(8991), 1, sym__quoted_content_heredoc_double, - STATE(5238), 1, + STATE(5226), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381119,13 +369149,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252447] = 6, - ACTIONS(9075), 1, + ACTIONS(8993), 1, anon_sym_RBRACE, - ACTIONS(9077), 1, + ACTIONS(8995), 1, sym_escape_sequence, - ACTIONS(9079), 1, + ACTIONS(8997), 1, sym__quoted_content_curly, - STATE(5239), 1, + STATE(5227), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381134,13 +369164,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252468] = 6, - ACTIONS(9081), 1, + ACTIONS(8999), 1, anon_sym_RBRACK, - ACTIONS(9083), 1, + ACTIONS(9001), 1, sym_escape_sequence, - ACTIONS(9085), 1, + ACTIONS(9003), 1, sym__quoted_content_square, - STATE(5240), 1, + STATE(5228), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381149,13 +369179,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252489] = 6, - ACTIONS(9087), 1, + ACTIONS(9005), 1, anon_sym_GT, - ACTIONS(9089), 1, + ACTIONS(9007), 1, sym_escape_sequence, - ACTIONS(9091), 1, + ACTIONS(9009), 1, sym__quoted_content_angle, - STATE(5241), 1, + STATE(5229), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381164,13 +369194,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252510] = 6, - ACTIONS(9093), 1, + ACTIONS(9011), 1, anon_sym_PIPE, - ACTIONS(9095), 1, + ACTIONS(9013), 1, sym_escape_sequence, - ACTIONS(9097), 1, + ACTIONS(9015), 1, sym__quoted_content_bar, - STATE(5242), 1, + STATE(5230), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381179,13 +369209,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252531] = 6, - ACTIONS(9099), 1, + ACTIONS(9017), 1, anon_sym_SLASH, - ACTIONS(9101), 1, + ACTIONS(9019), 1, sym_escape_sequence, - ACTIONS(9103), 1, + ACTIONS(9021), 1, sym__quoted_content_slash, - STATE(5243), 1, + STATE(5231), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381194,13 +369224,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252552] = 6, - ACTIONS(8372), 1, + ACTIONS(8290), 1, sym_escape_sequence, - ACTIONS(8374), 1, + ACTIONS(8292), 1, sym__quoted_content_parenthesis, - ACTIONS(9105), 1, + ACTIONS(9023), 1, anon_sym_RPAREN, - STATE(5309), 1, + STATE(5297), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381209,13 +369239,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252573] = 6, - ACTIONS(9107), 1, + ACTIONS(9025), 1, anon_sym_SQUOTE, - ACTIONS(9109), 1, + ACTIONS(9027), 1, sym_escape_sequence, - ACTIONS(9111), 1, + ACTIONS(9029), 1, sym__quoted_content_single, - STATE(5347), 1, + STATE(5335), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381224,13 +369254,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252594] = 6, - ACTIONS(9113), 1, + ACTIONS(9031), 1, anon_sym_GT, - ACTIONS(9115), 1, + ACTIONS(9033), 1, sym_escape_sequence, - ACTIONS(9118), 1, + ACTIONS(9036), 1, sym__quoted_content_angle, - STATE(5230), 1, + STATE(5218), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381239,13 +369269,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252615] = 6, - ACTIONS(9121), 1, + ACTIONS(9039), 1, anon_sym_RBRACK, - ACTIONS(9123), 1, + ACTIONS(9041), 1, sym_escape_sequence, - ACTIONS(9126), 1, + ACTIONS(9044), 1, sym__quoted_content_square, - STATE(5231), 1, + STATE(5219), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381254,13 +369284,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252636] = 6, - ACTIONS(9129), 1, + ACTIONS(9047), 1, anon_sym_SLASH, - ACTIONS(9131), 1, + ACTIONS(9049), 1, sym_escape_sequence, - ACTIONS(9133), 1, + ACTIONS(9051), 1, sym__quoted_content_slash, - STATE(5207), 1, + STATE(5195), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381269,13 +369299,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252657] = 6, - ACTIONS(9135), 1, + ACTIONS(9053), 1, anon_sym_PIPE, - ACTIONS(9137), 1, + ACTIONS(9055), 1, sym_escape_sequence, - ACTIONS(9139), 1, + ACTIONS(9057), 1, sym__quoted_content_bar, - STATE(5208), 1, + STATE(5196), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381284,13 +369314,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252678] = 6, - ACTIONS(8372), 1, + ACTIONS(8290), 1, sym_escape_sequence, - ACTIONS(8374), 1, + ACTIONS(8292), 1, sym__quoted_content_parenthesis, - ACTIONS(9141), 1, + ACTIONS(9059), 1, anon_sym_RPAREN, - STATE(5309), 1, + STATE(5297), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381299,13 +369329,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252699] = 6, - ACTIONS(8558), 1, + ACTIONS(8476), 1, sym_escape_sequence, - ACTIONS(8560), 1, + ACTIONS(8478), 1, sym__quoted_content_double, - ACTIONS(9143), 1, + ACTIONS(9061), 1, anon_sym_DQUOTE, - STATE(5308), 1, + STATE(5296), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381314,13 +369344,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252720] = 6, - ACTIONS(8564), 1, + ACTIONS(8482), 1, sym_escape_sequence, - ACTIONS(8566), 1, + ACTIONS(8484), 1, sym__quoted_content_single, - ACTIONS(9145), 1, + ACTIONS(9063), 1, anon_sym_SQUOTE, - STATE(5262), 1, + STATE(5250), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381329,13 +369359,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252741] = 6, - ACTIONS(8570), 1, + ACTIONS(8488), 1, sym_escape_sequence, - ACTIONS(8572), 1, + ACTIONS(8490), 1, sym__quoted_content_heredoc_single, - ACTIONS(9147), 1, + ACTIONS(9065), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5092), 1, + STATE(5080), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381344,13 +369374,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252762] = 6, - ACTIONS(8576), 1, + ACTIONS(8494), 1, sym_escape_sequence, - ACTIONS(8578), 1, + ACTIONS(8496), 1, sym__quoted_content_heredoc_double, - ACTIONS(9149), 1, + ACTIONS(9067), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5260), 1, + STATE(5248), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381359,13 +369389,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252783] = 6, - ACTIONS(8582), 1, + ACTIONS(8500), 1, sym_escape_sequence, - ACTIONS(8584), 1, + ACTIONS(8502), 1, sym__quoted_content_curly, - ACTIONS(9151), 1, + ACTIONS(9069), 1, anon_sym_RBRACE, - STATE(5259), 1, + STATE(5247), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381374,13 +369404,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252804] = 6, - ACTIONS(8588), 1, + ACTIONS(8506), 1, sym_escape_sequence, - ACTIONS(8590), 1, + ACTIONS(8508), 1, sym__quoted_content_square, - ACTIONS(9153), 1, + ACTIONS(9071), 1, anon_sym_RBRACK, - STATE(5231), 1, + STATE(5219), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381389,13 +369419,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252825] = 6, - ACTIONS(8594), 1, + ACTIONS(8512), 1, sym_escape_sequence, - ACTIONS(8596), 1, + ACTIONS(8514), 1, sym__quoted_content_angle, - ACTIONS(9155), 1, + ACTIONS(9073), 1, anon_sym_GT, - STATE(5230), 1, + STATE(5218), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381404,13 +369434,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252846] = 6, - ACTIONS(8600), 1, + ACTIONS(8518), 1, sym_escape_sequence, - ACTIONS(8602), 1, + ACTIONS(8520), 1, sym__quoted_content_bar, - ACTIONS(9157), 1, + ACTIONS(9075), 1, anon_sym_PIPE, - STATE(5205), 1, + STATE(5193), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381419,13 +369449,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252867] = 6, - ACTIONS(8606), 1, + ACTIONS(8524), 1, sym_escape_sequence, - ACTIONS(8608), 1, + ACTIONS(8526), 1, sym__quoted_content_slash, - ACTIONS(9159), 1, + ACTIONS(9077), 1, anon_sym_SLASH, - STATE(5204), 1, + STATE(5192), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381434,13 +369464,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252888] = 6, - ACTIONS(8606), 1, + ACTIONS(8524), 1, sym_escape_sequence, - ACTIONS(8608), 1, + ACTIONS(8526), 1, sym__quoted_content_slash, - ACTIONS(9161), 1, + ACTIONS(9079), 1, anon_sym_SLASH, - STATE(5204), 1, + STATE(5192), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381449,13 +369479,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252909] = 6, - ACTIONS(9163), 1, + ACTIONS(9081), 1, anon_sym_GT, - ACTIONS(9165), 1, + ACTIONS(9083), 1, sym_escape_sequence, - ACTIONS(9167), 1, + ACTIONS(9085), 1, sym__quoted_content_angle, - STATE(5210), 1, + STATE(5198), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381464,13 +369494,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252930] = 6, - ACTIONS(9169), 1, + ACTIONS(9087), 1, anon_sym_RBRACK, - ACTIONS(9171), 1, + ACTIONS(9089), 1, sym_escape_sequence, - ACTIONS(9173), 1, + ACTIONS(9091), 1, sym__quoted_content_square, - STATE(5212), 1, + STATE(5200), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381479,13 +369509,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252951] = 6, - ACTIONS(9175), 1, + ACTIONS(9093), 1, anon_sym_RBRACE, - ACTIONS(9177), 1, + ACTIONS(9095), 1, sym_escape_sequence, - ACTIONS(9179), 1, + ACTIONS(9097), 1, sym__quoted_content_curly, - STATE(5213), 1, + STATE(5201), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381494,13 +369524,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252972] = 6, - ACTIONS(9181), 1, + ACTIONS(9099), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9183), 1, + ACTIONS(9101), 1, sym_escape_sequence, - ACTIONS(9185), 1, + ACTIONS(9103), 1, sym__quoted_content_heredoc_double, - STATE(5214), 1, + STATE(5202), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381509,13 +369539,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [252993] = 6, - ACTIONS(8600), 1, + ACTIONS(8518), 1, sym_escape_sequence, - ACTIONS(8602), 1, + ACTIONS(8520), 1, sym__quoted_content_bar, - ACTIONS(9187), 1, + ACTIONS(9105), 1, anon_sym_PIPE, - STATE(5205), 1, + STATE(5193), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381524,13 +369554,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253014] = 6, - ACTIONS(9189), 1, + ACTIONS(9107), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9191), 1, + ACTIONS(9109), 1, sym_escape_sequence, - ACTIONS(9193), 1, + ACTIONS(9111), 1, sym__quoted_content_heredoc_single, - STATE(5215), 1, + STATE(5203), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381539,13 +369569,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253035] = 6, - ACTIONS(9195), 1, + ACTIONS(9113), 1, anon_sym_SQUOTE, - ACTIONS(9197), 1, + ACTIONS(9115), 1, sym_escape_sequence, - ACTIONS(9199), 1, + ACTIONS(9117), 1, sym__quoted_content_single, - STATE(5216), 1, + STATE(5204), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381554,13 +369584,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253056] = 6, - ACTIONS(9201), 1, + ACTIONS(9119), 1, anon_sym_DQUOTE, - ACTIONS(9203), 1, + ACTIONS(9121), 1, sym_escape_sequence, - ACTIONS(9205), 1, + ACTIONS(9123), 1, sym__quoted_content_double, - STATE(5217), 1, + STATE(5205), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381569,13 +369599,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253077] = 6, - ACTIONS(9207), 1, + ACTIONS(9125), 1, anon_sym_RPAREN, - ACTIONS(9209), 1, + ACTIONS(9127), 1, sym_escape_sequence, - ACTIONS(9211), 1, + ACTIONS(9129), 1, sym__quoted_content_parenthesis, - STATE(5228), 1, + STATE(5216), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381584,13 +369614,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253098] = 6, - ACTIONS(8594), 1, + ACTIONS(8512), 1, sym_escape_sequence, - ACTIONS(8596), 1, + ACTIONS(8514), 1, sym__quoted_content_angle, - ACTIONS(9213), 1, + ACTIONS(9131), 1, anon_sym_GT, - STATE(5230), 1, + STATE(5218), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381599,13 +369629,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253119] = 6, - ACTIONS(8588), 1, + ACTIONS(8506), 1, sym_escape_sequence, - ACTIONS(8590), 1, + ACTIONS(8508), 1, sym__quoted_content_square, - ACTIONS(9215), 1, + ACTIONS(9133), 1, anon_sym_RBRACK, - STATE(5231), 1, + STATE(5219), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381614,13 +369644,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253140] = 6, - ACTIONS(9217), 1, + ACTIONS(9135), 1, anon_sym_SLASH, - ACTIONS(9219), 1, + ACTIONS(9137), 1, sym_escape_sequence, - ACTIONS(9221), 1, + ACTIONS(9139), 1, sym__quoted_content_slash, - STATE(5388), 1, + STATE(5376), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381629,13 +369659,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253161] = 6, - ACTIONS(8582), 1, + ACTIONS(8500), 1, sym_escape_sequence, - ACTIONS(8584), 1, + ACTIONS(8502), 1, sym__quoted_content_curly, - ACTIONS(9223), 1, + ACTIONS(9141), 1, anon_sym_RBRACE, - STATE(5259), 1, + STATE(5247), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381644,7 +369674,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253182] = 4, - ACTIONS(8468), 1, + ACTIONS(8386), 1, sym__quoted_content_i_double, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381652,18 +369682,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8466), 3, + ACTIONS(8384), 3, anon_sym_DQUOTE, anon_sym_POUND_LBRACE, sym_escape_sequence, [253199] = 6, - ACTIONS(9225), 1, + ACTIONS(9143), 1, anon_sym_RBRACE, - ACTIONS(9227), 1, + ACTIONS(9145), 1, sym_escape_sequence, - ACTIONS(9230), 1, + ACTIONS(9148), 1, sym__quoted_content_curly, - STATE(5259), 1, + STATE(5247), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381672,13 +369702,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253220] = 6, - ACTIONS(9233), 1, + ACTIONS(9151), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9235), 1, + ACTIONS(9153), 1, sym_escape_sequence, - ACTIONS(9238), 1, + ACTIONS(9156), 1, sym__quoted_content_heredoc_double, - STATE(5260), 1, + STATE(5248), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381687,13 +369717,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253241] = 6, - ACTIONS(9241), 1, + ACTIONS(9159), 1, anon_sym_RPAREN, - ACTIONS(9243), 1, + ACTIONS(9161), 1, sym_escape_sequence, - ACTIONS(9245), 1, + ACTIONS(9163), 1, sym__quoted_content_parenthesis, - STATE(5042), 1, + STATE(5030), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381702,13 +369732,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253262] = 6, - ACTIONS(9247), 1, + ACTIONS(9165), 1, anon_sym_SQUOTE, - ACTIONS(9249), 1, + ACTIONS(9167), 1, sym_escape_sequence, - ACTIONS(9252), 1, + ACTIONS(9170), 1, sym__quoted_content_single, - STATE(5262), 1, + STATE(5250), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381717,13 +369747,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253283] = 6, - ACTIONS(9255), 1, + ACTIONS(9173), 1, anon_sym_DQUOTE, - ACTIONS(9257), 1, + ACTIONS(9175), 1, sym_escape_sequence, - ACTIONS(9259), 1, + ACTIONS(9177), 1, sym__quoted_content_double, - STATE(5390), 1, + STATE(5378), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381732,13 +369762,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253304] = 6, - ACTIONS(9261), 1, + ACTIONS(9179), 1, anon_sym_RPAREN, - ACTIONS(9263), 1, + ACTIONS(9181), 1, sym_escape_sequence, - ACTIONS(9265), 1, + ACTIONS(9183), 1, sym__quoted_content_parenthesis, - STATE(5280), 1, + STATE(5268), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381747,13 +369777,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253325] = 6, - ACTIONS(9267), 1, + ACTIONS(9185), 1, anon_sym_DQUOTE, - ACTIONS(9269), 1, + ACTIONS(9187), 1, sym_escape_sequence, - ACTIONS(9271), 1, + ACTIONS(9189), 1, sym__quoted_content_double, - STATE(5281), 1, + STATE(5269), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381762,13 +369792,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253346] = 6, - ACTIONS(9273), 1, + ACTIONS(9191), 1, anon_sym_SQUOTE, - ACTIONS(9275), 1, + ACTIONS(9193), 1, sym_escape_sequence, - ACTIONS(9277), 1, + ACTIONS(9195), 1, sym__quoted_content_single, - STATE(5282), 1, + STATE(5270), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381777,13 +369807,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253367] = 6, - ACTIONS(9279), 1, + ACTIONS(9197), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9281), 1, + ACTIONS(9199), 1, sym_escape_sequence, - ACTIONS(9283), 1, + ACTIONS(9201), 1, sym__quoted_content_heredoc_single, - STATE(5283), 1, + STATE(5271), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381792,13 +369822,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253388] = 6, - ACTIONS(9285), 1, + ACTIONS(9203), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9287), 1, + ACTIONS(9205), 1, sym_escape_sequence, - ACTIONS(9289), 1, + ACTIONS(9207), 1, sym__quoted_content_heredoc_double, - STATE(5284), 1, + STATE(5272), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381807,13 +369837,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253409] = 6, - ACTIONS(9291), 1, + ACTIONS(9209), 1, anon_sym_RBRACE, - ACTIONS(9293), 1, + ACTIONS(9211), 1, sym_escape_sequence, - ACTIONS(9295), 1, + ACTIONS(9213), 1, sym__quoted_content_curly, - STATE(5285), 1, + STATE(5273), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381822,13 +369852,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253430] = 6, - ACTIONS(9297), 1, + ACTIONS(9215), 1, anon_sym_RBRACK, - ACTIONS(9299), 1, + ACTIONS(9217), 1, sym_escape_sequence, - ACTIONS(9301), 1, + ACTIONS(9219), 1, sym__quoted_content_square, - STATE(5286), 1, + STATE(5274), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381837,13 +369867,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253451] = 6, - ACTIONS(9303), 1, + ACTIONS(9221), 1, anon_sym_GT, - ACTIONS(9305), 1, + ACTIONS(9223), 1, sym_escape_sequence, - ACTIONS(9307), 1, + ACTIONS(9225), 1, sym__quoted_content_angle, - STATE(5287), 1, + STATE(5275), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381852,13 +369882,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253472] = 6, - ACTIONS(9309), 1, + ACTIONS(9227), 1, anon_sym_PIPE, - ACTIONS(9311), 1, + ACTIONS(9229), 1, sym_escape_sequence, - ACTIONS(9313), 1, + ACTIONS(9231), 1, sym__quoted_content_bar, - STATE(5288), 1, + STATE(5276), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381867,13 +369897,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253493] = 6, - ACTIONS(9315), 1, + ACTIONS(9233), 1, anon_sym_SLASH, - ACTIONS(9317), 1, + ACTIONS(9235), 1, sym_escape_sequence, - ACTIONS(9319), 1, + ACTIONS(9237), 1, sym__quoted_content_slash, - STATE(5289), 1, + STATE(5277), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381882,13 +369912,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253514] = 6, - ACTIONS(9321), 1, + ACTIONS(9239), 1, anon_sym_SQUOTE, - ACTIONS(9323), 1, + ACTIONS(9241), 1, sym_escape_sequence, - ACTIONS(9325), 1, + ACTIONS(9243), 1, sym__quoted_content_single, - STATE(5393), 1, + STATE(5381), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381897,13 +369927,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253535] = 6, - ACTIONS(9327), 1, + ACTIONS(9245), 1, anon_sym_RPAREN, - ACTIONS(9329), 1, + ACTIONS(9247), 1, sym_escape_sequence, - ACTIONS(9331), 1, + ACTIONS(9249), 1, sym__quoted_content_parenthesis, - STATE(5320), 1, + STATE(5308), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381912,13 +369942,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253556] = 6, - ACTIONS(9333), 1, + ACTIONS(9251), 1, anon_sym_DQUOTE, - ACTIONS(9335), 1, + ACTIONS(9253), 1, sym_escape_sequence, - ACTIONS(9337), 1, + ACTIONS(9255), 1, sym__quoted_content_double, - STATE(5321), 1, + STATE(5309), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381927,13 +369957,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253577] = 6, - ACTIONS(9339), 1, + ACTIONS(9257), 1, anon_sym_SQUOTE, - ACTIONS(9341), 1, + ACTIONS(9259), 1, sym_escape_sequence, - ACTIONS(9343), 1, + ACTIONS(9261), 1, sym__quoted_content_single, - STATE(5345), 1, + STATE(5333), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381942,13 +369972,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253598] = 6, - ACTIONS(9345), 1, + ACTIONS(9263), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9347), 1, + ACTIONS(9265), 1, sym_escape_sequence, - ACTIONS(9349), 1, + ACTIONS(9267), 1, sym__quoted_content_heredoc_single, - STATE(5394), 1, + STATE(5382), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381957,13 +369987,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253619] = 6, - ACTIONS(9351), 1, + ACTIONS(9269), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9353), 1, + ACTIONS(9271), 1, sym_escape_sequence, - ACTIONS(9355), 1, + ACTIONS(9273), 1, sym__quoted_content_heredoc_double, - STATE(5395), 1, + STATE(5383), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381972,13 +370002,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253640] = 6, - ACTIONS(8372), 1, + ACTIONS(8290), 1, sym_escape_sequence, - ACTIONS(8374), 1, + ACTIONS(8292), 1, sym__quoted_content_parenthesis, - ACTIONS(9357), 1, + ACTIONS(9275), 1, anon_sym_RPAREN, - STATE(5309), 1, + STATE(5297), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -381987,13 +370017,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253661] = 6, - ACTIONS(8558), 1, + ACTIONS(8476), 1, sym_escape_sequence, - ACTIONS(8560), 1, + ACTIONS(8478), 1, sym__quoted_content_double, - ACTIONS(9359), 1, + ACTIONS(9277), 1, anon_sym_DQUOTE, - STATE(5308), 1, + STATE(5296), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -382002,13 +370032,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253682] = 6, - ACTIONS(8564), 1, + ACTIONS(8482), 1, sym_escape_sequence, - ACTIONS(8566), 1, + ACTIONS(8484), 1, sym__quoted_content_single, - ACTIONS(9361), 1, + ACTIONS(9279), 1, anon_sym_SQUOTE, - STATE(5262), 1, + STATE(5250), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -382017,13 +370047,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253703] = 6, - ACTIONS(8570), 1, + ACTIONS(8488), 1, sym_escape_sequence, - ACTIONS(8572), 1, + ACTIONS(8490), 1, sym__quoted_content_heredoc_single, - ACTIONS(9363), 1, + ACTIONS(9281), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5092), 1, + STATE(5080), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -382032,13 +370062,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253724] = 6, - ACTIONS(8576), 1, + ACTIONS(8494), 1, sym_escape_sequence, - ACTIONS(8578), 1, + ACTIONS(8496), 1, sym__quoted_content_heredoc_double, - ACTIONS(9365), 1, + ACTIONS(9283), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5260), 1, + STATE(5248), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -382047,13 +370077,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253745] = 6, - ACTIONS(8582), 1, + ACTIONS(8500), 1, sym_escape_sequence, - ACTIONS(8584), 1, + ACTIONS(8502), 1, sym__quoted_content_curly, - ACTIONS(9367), 1, + ACTIONS(9285), 1, anon_sym_RBRACE, - STATE(5259), 1, + STATE(5247), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -382062,13 +370092,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253766] = 6, - ACTIONS(8588), 1, + ACTIONS(8506), 1, sym_escape_sequence, - ACTIONS(8590), 1, + ACTIONS(8508), 1, sym__quoted_content_square, - ACTIONS(9369), 1, + ACTIONS(9287), 1, anon_sym_RBRACK, - STATE(5231), 1, + STATE(5219), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -382077,13 +370107,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253787] = 6, - ACTIONS(8594), 1, + ACTIONS(8512), 1, sym_escape_sequence, - ACTIONS(8596), 1, + ACTIONS(8514), 1, sym__quoted_content_angle, - ACTIONS(9371), 1, + ACTIONS(9289), 1, anon_sym_GT, - STATE(5230), 1, + STATE(5218), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -382092,13 +370122,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253808] = 6, - ACTIONS(8600), 1, + ACTIONS(8518), 1, sym_escape_sequence, - ACTIONS(8602), 1, + ACTIONS(8520), 1, sym__quoted_content_bar, - ACTIONS(9373), 1, + ACTIONS(9291), 1, anon_sym_PIPE, - STATE(5205), 1, + STATE(5193), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -382107,13 +370137,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253829] = 6, - ACTIONS(8606), 1, + ACTIONS(8524), 1, sym_escape_sequence, - ACTIONS(8608), 1, + ACTIONS(8526), 1, sym__quoted_content_slash, - ACTIONS(9375), 1, + ACTIONS(9293), 1, anon_sym_SLASH, - STATE(5204), 1, + STATE(5192), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -382122,13 +370152,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253850] = 6, - ACTIONS(9377), 1, + ACTIONS(9295), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9379), 1, + ACTIONS(9297), 1, sym_escape_sequence, - ACTIONS(9381), 1, + ACTIONS(9299), 1, sym__quoted_content_heredoc_single, - STATE(5352), 1, + STATE(5340), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -382137,13 +370167,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253871] = 6, - ACTIONS(9383), 1, + ACTIONS(9301), 1, anon_sym_RBRACE, - ACTIONS(9385), 1, + ACTIONS(9303), 1, sym_escape_sequence, - ACTIONS(9387), 1, + ACTIONS(9305), 1, sym__quoted_content_curly, - STATE(5397), 1, + STATE(5385), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -382152,13 +370182,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253892] = 6, - ACTIONS(9389), 1, + ACTIONS(9307), 1, anon_sym_RBRACK, - ACTIONS(9391), 1, + ACTIONS(9309), 1, sym_escape_sequence, - ACTIONS(9393), 1, + ACTIONS(9311), 1, sym__quoted_content_square, - STATE(5398), 1, + STATE(5386), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -382167,13 +370197,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253913] = 6, - ACTIONS(9395), 1, + ACTIONS(9313), 1, anon_sym_GT, - ACTIONS(9397), 1, + ACTIONS(9315), 1, sym_escape_sequence, - ACTIONS(9399), 1, + ACTIONS(9317), 1, sym__quoted_content_angle, - STATE(5399), 1, + STATE(5387), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -382182,13 +370212,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253934] = 6, - ACTIONS(9401), 1, + ACTIONS(9319), 1, anon_sym_PIPE, - ACTIONS(9403), 1, + ACTIONS(9321), 1, sym_escape_sequence, - ACTIONS(9405), 1, + ACTIONS(9323), 1, sym__quoted_content_bar, - STATE(5400), 1, + STATE(5388), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -382197,13 +370227,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253955] = 6, - ACTIONS(9407), 1, + ACTIONS(9325), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9409), 1, + ACTIONS(9327), 1, sym_escape_sequence, - ACTIONS(9411), 1, + ACTIONS(9329), 1, sym__quoted_content_heredoc_single, - STATE(5349), 1, + STATE(5337), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -382212,13 +370242,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253976] = 6, - ACTIONS(9413), 1, + ACTIONS(9331), 1, anon_sym_SLASH, - ACTIONS(9415), 1, + ACTIONS(9333), 1, sym_escape_sequence, - ACTIONS(9417), 1, + ACTIONS(9335), 1, sym__quoted_content_slash, - STATE(5402), 1, + STATE(5390), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -382227,13 +370257,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [253997] = 6, - ACTIONS(9419), 1, + ACTIONS(9337), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9421), 1, + ACTIONS(9339), 1, sym_escape_sequence, - ACTIONS(9423), 1, + ACTIONS(9341), 1, sym__quoted_content_heredoc_double, - STATE(5386), 1, + STATE(5374), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -382242,956 +370272,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [254018] = 6, - ACTIONS(9425), 1, + ACTIONS(9343), 1, anon_sym_RBRACE, - ACTIONS(9427), 1, + ACTIONS(9345), 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, + ACTIONS(9347), 1, sym__quoted_content_curly, STATE(5377), 1, aux_sym__quoted_curly_repeat1, @@ -383201,14 +370286,959 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - [255362] = 6, - ACTIONS(9669), 1, - anon_sym_RBRACK, - ACTIONS(9671), 1, + [254039] = 6, + ACTIONS(8524), 1, sym_escape_sequence, - ACTIONS(9673), 1, + ACTIONS(8526), 1, + sym__quoted_content_slash, + ACTIONS(9349), 1, + anon_sym_SLASH, + STATE(5192), 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(8488), 1, + sym_escape_sequence, + ACTIONS(8490), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9351), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5080), 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(8482), 1, + sym_escape_sequence, + ACTIONS(8484), 1, + sym__quoted_content_single, + ACTIONS(9353), 1, + anon_sym_SQUOTE, + STATE(5250), 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(9355), 1, + anon_sym_GT, + ACTIONS(9357), 1, + sym_escape_sequence, + ACTIONS(9359), 1, + sym__quoted_content_angle, + STATE(5372), 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(8476), 1, + sym_escape_sequence, + ACTIONS(8478), 1, + sym__quoted_content_double, + ACTIONS(9361), 1, + anon_sym_DQUOTE, + STATE(5296), 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(9363), 1, + anon_sym_RBRACK, + ACTIONS(9365), 1, + sym_escape_sequence, + ACTIONS(9367), 1, sym__quoted_content_square, - STATE(5378), 1, + STATE(5379), 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(9369), 1, + anon_sym_GT, + ACTIONS(9371), 1, + sym_escape_sequence, + ACTIONS(9373), 1, + sym__quoted_content_angle, + STATE(5380), 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(8512), 1, + sym_escape_sequence, + ACTIONS(8514), 1, + sym__quoted_content_angle, + ACTIONS(9375), 1, + anon_sym_GT, + STATE(5218), 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(9377), 1, + anon_sym_SLASH, + ACTIONS(9379), 1, + sym_escape_sequence, + ACTIONS(9381), 1, + sym__quoted_content_slash, + STATE(5391), 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(9383), 1, + anon_sym_DQUOTE, + ACTIONS(9385), 1, + sym_escape_sequence, + ACTIONS(9388), 1, + sym__quoted_content_double, + STATE(5296), 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(9391), 1, + anon_sym_RPAREN, + ACTIONS(9393), 1, + sym_escape_sequence, + ACTIONS(9396), 1, + sym__quoted_content_parenthesis, + STATE(5297), 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(9399), 1, + anon_sym_RPAREN, + ACTIONS(9401), 1, + sym_escape_sequence, + ACTIONS(9403), 1, + sym__quoted_content_parenthesis, + STATE(5314), 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(9405), 1, + anon_sym_DQUOTE, + ACTIONS(9407), 1, + sym_escape_sequence, + ACTIONS(9409), 1, + sym__quoted_content_double, + STATE(5315), 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(9411), 1, + anon_sym_SQUOTE, + ACTIONS(9413), 1, + sym_escape_sequence, + ACTIONS(9415), 1, + sym__quoted_content_single, + STATE(5316), 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(9417), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9419), 1, + sym_escape_sequence, + ACTIONS(9421), 1, + sym__quoted_content_heredoc_single, + STATE(5317), 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(9423), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9425), 1, + sym_escape_sequence, + ACTIONS(9427), 1, + sym__quoted_content_heredoc_double, + STATE(5318), 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(9429), 1, + anon_sym_RBRACE, + ACTIONS(9431), 1, + sym_escape_sequence, + ACTIONS(9433), 1, + sym__quoted_content_curly, + STATE(5319), 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(9435), 1, + anon_sym_RBRACK, + ACTIONS(9437), 1, + sym_escape_sequence, + ACTIONS(9439), 1, + sym__quoted_content_square, + STATE(5320), 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(9441), 1, + anon_sym_GT, + ACTIONS(9443), 1, + sym_escape_sequence, + ACTIONS(9445), 1, + sym__quoted_content_angle, + STATE(5321), 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(9447), 1, + anon_sym_PIPE, + ACTIONS(9449), 1, + sym_escape_sequence, + ACTIONS(9451), 1, + sym__quoted_content_bar, + STATE(5322), 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(9453), 1, + anon_sym_SLASH, + ACTIONS(9455), 1, + sym_escape_sequence, + ACTIONS(9457), 1, + sym__quoted_content_slash, + STATE(5323), 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(8290), 1, + sym_escape_sequence, + ACTIONS(8292), 1, + sym__quoted_content_parenthesis, + ACTIONS(9459), 1, + anon_sym_RPAREN, + STATE(5297), 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(8476), 1, + sym_escape_sequence, + ACTIONS(8478), 1, + sym__quoted_content_double, + ACTIONS(9461), 1, + anon_sym_DQUOTE, + STATE(5296), 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(8524), 1, + sym_escape_sequence, + ACTIONS(8526), 1, + sym__quoted_content_slash, + ACTIONS(9463), 1, + anon_sym_SLASH, + STATE(5192), 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(8518), 1, + sym_escape_sequence, + ACTIONS(8520), 1, + sym__quoted_content_bar, + ACTIONS(9465), 1, + anon_sym_PIPE, + STATE(5193), 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(8512), 1, + sym_escape_sequence, + ACTIONS(8514), 1, + sym__quoted_content_angle, + ACTIONS(9467), 1, + anon_sym_GT, + STATE(5218), 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(8506), 1, + sym_escape_sequence, + ACTIONS(8508), 1, + sym__quoted_content_square, + ACTIONS(9469), 1, + anon_sym_RBRACK, + STATE(5219), 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(8290), 1, + sym_escape_sequence, + ACTIONS(8292), 1, + sym__quoted_content_parenthesis, + ACTIONS(9471), 1, + anon_sym_RPAREN, + STATE(5297), 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(8476), 1, + sym_escape_sequence, + ACTIONS(8478), 1, + sym__quoted_content_double, + ACTIONS(9473), 1, + anon_sym_DQUOTE, + STATE(5296), 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(8482), 1, + sym_escape_sequence, + ACTIONS(8484), 1, + sym__quoted_content_single, + ACTIONS(9475), 1, + anon_sym_SQUOTE, + STATE(5250), 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(8488), 1, + sym_escape_sequence, + ACTIONS(8490), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9477), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5080), 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(8494), 1, + sym_escape_sequence, + ACTIONS(8496), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9479), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5248), 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(8500), 1, + sym_escape_sequence, + ACTIONS(8502), 1, + sym__quoted_content_curly, + ACTIONS(9481), 1, + anon_sym_RBRACE, + STATE(5247), 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(8506), 1, + sym_escape_sequence, + ACTIONS(8508), 1, + sym__quoted_content_square, + ACTIONS(9483), 1, + anon_sym_RBRACK, + STATE(5219), 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(8512), 1, + sym_escape_sequence, + ACTIONS(8514), 1, + sym__quoted_content_angle, + ACTIONS(9485), 1, + anon_sym_GT, + STATE(5218), 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(8518), 1, + sym_escape_sequence, + ACTIONS(8520), 1, + sym__quoted_content_bar, + ACTIONS(9487), 1, + anon_sym_PIPE, + STATE(5193), 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(8524), 1, + sym_escape_sequence, + ACTIONS(8526), 1, + sym__quoted_content_slash, + ACTIONS(9489), 1, + anon_sym_SLASH, + STATE(5192), 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(8290), 1, + sym_escape_sequence, + ACTIONS(8292), 1, + sym__quoted_content_parenthesis, + ACTIONS(9491), 1, + anon_sym_RPAREN, + STATE(5297), 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(8500), 1, + sym_escape_sequence, + ACTIONS(8502), 1, + sym__quoted_content_curly, + ACTIONS(9493), 1, + anon_sym_RBRACE, + STATE(5247), 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(8494), 1, + sym_escape_sequence, + ACTIONS(8496), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9495), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5248), 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(8488), 1, + sym_escape_sequence, + ACTIONS(8490), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9497), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5080), 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(8482), 1, + sym_escape_sequence, + ACTIONS(8484), 1, + sym__quoted_content_single, + ACTIONS(9499), 1, + anon_sym_SQUOTE, + STATE(5250), 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(9501), 1, + anon_sym_RBRACK, + ACTIONS(9503), 1, + sym_escape_sequence, + ACTIONS(9505), 1, + sym__quoted_content_square, + STATE(5371), 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(8476), 1, + sym_escape_sequence, + ACTIONS(8478), 1, + sym__quoted_content_double, + ACTIONS(9507), 1, + anon_sym_DQUOTE, + STATE(5296), 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(8290), 1, + sym_escape_sequence, + ACTIONS(8292), 1, + sym__quoted_content_parenthesis, + ACTIONS(9509), 1, + anon_sym_RPAREN, + STATE(5297), 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(8290), 1, + sym_escape_sequence, + ACTIONS(8292), 1, + sym__quoted_content_parenthesis, + ACTIONS(9511), 1, + anon_sym_RPAREN, + STATE(5297), 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(8482), 1, + sym_escape_sequence, + ACTIONS(8484), 1, + sym__quoted_content_single, + ACTIONS(9513), 1, + anon_sym_SQUOTE, + STATE(5250), 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(8476), 1, + sym_escape_sequence, + ACTIONS(8478), 1, + sym__quoted_content_double, + ACTIONS(9515), 1, + anon_sym_DQUOTE, + STATE(5296), 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(8482), 1, + sym_escape_sequence, + ACTIONS(8484), 1, + sym__quoted_content_single, + ACTIONS(9517), 1, + anon_sym_SQUOTE, + STATE(5250), 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(9519), 1, + anon_sym_RBRACE, + ACTIONS(9521), 1, + sym_escape_sequence, + ACTIONS(9523), 1, + sym__quoted_content_curly, + STATE(5339), 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(8488), 1, + sym_escape_sequence, + ACTIONS(8490), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9525), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5080), 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(8494), 1, + sym_escape_sequence, + ACTIONS(8496), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9527), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5248), 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(8500), 1, + sym_escape_sequence, + ACTIONS(8502), 1, + sym__quoted_content_curly, + ACTIONS(9529), 1, + anon_sym_RBRACE, + STATE(5247), 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(8488), 1, + sym_escape_sequence, + ACTIONS(8490), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9531), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5080), 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(9533), 1, + anon_sym_SLASH, + ACTIONS(9535), 1, + sym_escape_sequence, + ACTIONS(9537), 1, + sym__quoted_content_slash, + STATE(5310), 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(9539), 1, + anon_sym_PIPE, + ACTIONS(9541), 1, + sym_escape_sequence, + ACTIONS(9543), 1, + sym__quoted_content_bar, + STATE(5311), 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(9545), 1, + anon_sym_SLASH, + ACTIONS(9547), 1, + sym_escape_sequence, + ACTIONS(9549), 1, + sym__quoted_content_slash, + STATE(5146), 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(9551), 1, + anon_sym_RPAREN, + ACTIONS(9553), 1, + sym_escape_sequence, + ACTIONS(9555), 1, + sym__quoted_content_parenthesis, + STATE(5360), 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(9557), 1, + anon_sym_DQUOTE, + ACTIONS(9559), 1, + sym_escape_sequence, + ACTIONS(9561), 1, + sym__quoted_content_double, + STATE(5361), 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(9563), 1, + anon_sym_SQUOTE, + ACTIONS(9565), 1, + sym_escape_sequence, + ACTIONS(9567), 1, + sym__quoted_content_single, + STATE(5362), 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(9569), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9571), 1, + sym_escape_sequence, + ACTIONS(9573), 1, + sym__quoted_content_heredoc_single, + STATE(5363), 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(9575), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9577), 1, + sym_escape_sequence, + ACTIONS(9579), 1, + sym__quoted_content_heredoc_double, + STATE(5364), 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(9581), 1, + anon_sym_RBRACE, + ACTIONS(9583), 1, + sym_escape_sequence, + ACTIONS(9585), 1, + sym__quoted_content_curly, + STATE(5365), 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(9587), 1, + anon_sym_RBRACK, + ACTIONS(9589), 1, + sym_escape_sequence, + ACTIONS(9591), 1, + sym__quoted_content_square, + STATE(5366), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383217,13 +371247,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [255383] = 6, - ACTIONS(9675), 1, + ACTIONS(9593), 1, anon_sym_GT, - ACTIONS(9677), 1, + ACTIONS(9595), 1, sym_escape_sequence, - ACTIONS(9679), 1, + ACTIONS(9597), 1, sym__quoted_content_angle, - STATE(5379), 1, + STATE(5367), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383232,13 +371262,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [255404] = 6, - ACTIONS(9681), 1, + ACTIONS(9599), 1, anon_sym_PIPE, - ACTIONS(9683), 1, + ACTIONS(9601), 1, sym_escape_sequence, - ACTIONS(9685), 1, + ACTIONS(9603), 1, sym__quoted_content_bar, - STATE(5380), 1, + STATE(5368), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383247,13 +371277,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [255425] = 6, - ACTIONS(9687), 1, + ACTIONS(9605), 1, anon_sym_SLASH, - ACTIONS(9689), 1, + ACTIONS(9607), 1, sym_escape_sequence, - ACTIONS(9691), 1, + ACTIONS(9609), 1, sym__quoted_content_slash, - STATE(5381), 1, + STATE(5369), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383262,13 +371292,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [255446] = 6, - ACTIONS(9693), 1, + ACTIONS(9611), 1, anon_sym_RBRACK, - ACTIONS(9695), 1, + ACTIONS(9613), 1, sym_escape_sequence, - ACTIONS(9697), 1, + ACTIONS(9615), 1, sym__quoted_content_square, - STATE(5325), 1, + STATE(5313), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383277,13 +371307,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [255467] = 6, - ACTIONS(9699), 1, + ACTIONS(9617), 1, anon_sym_RBRACE, - ACTIONS(9701), 1, + ACTIONS(9619), 1, sym_escape_sequence, - ACTIONS(9703), 1, + ACTIONS(9621), 1, sym__quoted_content_curly, - STATE(5337), 1, + STATE(5325), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383292,11 +371322,296 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [255488] = 6, - ACTIONS(9705), 1, + ACTIONS(9623), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9707), 1, + ACTIONS(9625), 1, sym_escape_sequence, - ACTIONS(9709), 1, + ACTIONS(9627), 1, + sym__quoted_content_heredoc_double, + STATE(5326), 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(9629), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + ACTIONS(9631), 1, + sym_escape_sequence, + ACTIONS(9633), 1, + sym__quoted_content_heredoc_single, + STATE(5327), 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(9635), 1, + anon_sym_SQUOTE, + ACTIONS(9637), 1, + sym_escape_sequence, + ACTIONS(9639), 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, + [255551] = 6, + ACTIONS(9641), 1, + anon_sym_DQUOTE, + ACTIONS(9643), 1, + sym_escape_sequence, + ACTIONS(9645), 1, + sym__quoted_content_double, + STATE(5330), 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(8290), 1, + sym_escape_sequence, + ACTIONS(8292), 1, + sym__quoted_content_parenthesis, + ACTIONS(9647), 1, + anon_sym_RPAREN, + STATE(5297), 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(8476), 1, + sym_escape_sequence, + ACTIONS(8478), 1, + sym__quoted_content_double, + ACTIONS(9649), 1, + anon_sym_DQUOTE, + STATE(5296), 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(8482), 1, + sym_escape_sequence, + ACTIONS(8484), 1, + sym__quoted_content_single, + ACTIONS(9651), 1, + anon_sym_SQUOTE, + STATE(5250), 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(8488), 1, + sym_escape_sequence, + ACTIONS(8490), 1, + sym__quoted_content_heredoc_single, + ACTIONS(9653), 1, + anon_sym_SQUOTE_SQUOTE_SQUOTE, + STATE(5080), 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(8494), 1, + sym_escape_sequence, + ACTIONS(8496), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9655), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5248), 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(8500), 1, + sym_escape_sequence, + ACTIONS(8502), 1, + sym__quoted_content_curly, + ACTIONS(9657), 1, + anon_sym_RBRACE, + STATE(5247), 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(8506), 1, + sym_escape_sequence, + ACTIONS(8508), 1, + sym__quoted_content_square, + ACTIONS(9659), 1, + anon_sym_RBRACK, + STATE(5219), 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(8512), 1, + sym_escape_sequence, + ACTIONS(8514), 1, + sym__quoted_content_angle, + ACTIONS(9661), 1, + anon_sym_GT, + STATE(5218), 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(8518), 1, + sym_escape_sequence, + ACTIONS(8520), 1, + sym__quoted_content_bar, + ACTIONS(9663), 1, + anon_sym_PIPE, + STATE(5193), 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(8524), 1, + sym_escape_sequence, + ACTIONS(8526), 1, + sym__quoted_content_slash, + ACTIONS(9665), 1, + anon_sym_SLASH, + STATE(5192), 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(9667), 1, + anon_sym_RPAREN, + ACTIONS(9669), 1, + sym_escape_sequence, + ACTIONS(9671), 1, + sym__quoted_content_parenthesis, + STATE(5331), 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(8506), 1, + sym_escape_sequence, + ACTIONS(8508), 1, + sym__quoted_content_square, + ACTIONS(9673), 1, + anon_sym_RBRACK, + STATE(5219), 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(8512), 1, + sym_escape_sequence, + ACTIONS(8514), 1, + sym__quoted_content_angle, + ACTIONS(9675), 1, + anon_sym_GT, + STATE(5218), 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(8518), 1, + sym_escape_sequence, + ACTIONS(8520), 1, + sym__quoted_content_bar, + ACTIONS(9677), 1, + anon_sym_PIPE, + STATE(5193), 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(8494), 1, + sym_escape_sequence, + ACTIONS(8496), 1, + sym__quoted_content_heredoc_double, + ACTIONS(9679), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(5248), 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(9681), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(9683), 1, + sym_escape_sequence, + ACTIONS(9685), 1, sym__quoted_content_heredoc_double, STATE(5338), 1, aux_sym__quoted_heredoc_double_repeat1, @@ -383306,299 +371621,14 @@ static const uint16_t ts_small_parse_table[] = { 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, + ACTIONS(8524), 1, sym_escape_sequence, - ACTIONS(8608), 1, + ACTIONS(8526), 1, sym__quoted_content_slash, - ACTIONS(9769), 1, + ACTIONS(9687), 1, anon_sym_SLASH, - STATE(5204), 1, + STATE(5192), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383607,13 +371637,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [255929] = 6, - ACTIONS(8582), 1, + ACTIONS(8500), 1, sym_escape_sequence, - ACTIONS(8584), 1, + ACTIONS(8502), 1, sym__quoted_content_curly, - ACTIONS(9771), 1, + ACTIONS(9689), 1, anon_sym_RBRACE, - STATE(5259), 1, + STATE(5247), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383622,13 +371652,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [255950] = 6, - ACTIONS(8558), 1, + ACTIONS(8476), 1, sym_escape_sequence, - ACTIONS(8560), 1, + ACTIONS(8478), 1, sym__quoted_content_double, - ACTIONS(9773), 1, + ACTIONS(9691), 1, anon_sym_DQUOTE, - STATE(5308), 1, + STATE(5296), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383637,13 +371667,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [255971] = 6, - ACTIONS(8588), 1, + ACTIONS(8506), 1, sym_escape_sequence, - ACTIONS(8590), 1, + ACTIONS(8508), 1, sym__quoted_content_square, - ACTIONS(9775), 1, + ACTIONS(9693), 1, anon_sym_RBRACK, - STATE(5231), 1, + STATE(5219), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383652,13 +371682,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [255992] = 6, - ACTIONS(8594), 1, + ACTIONS(8512), 1, sym_escape_sequence, - ACTIONS(8596), 1, + ACTIONS(8514), 1, sym__quoted_content_angle, - ACTIONS(9777), 1, + ACTIONS(9695), 1, anon_sym_GT, - STATE(5230), 1, + STATE(5218), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383667,13 +371697,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256013] = 6, - ACTIONS(8564), 1, + ACTIONS(8482), 1, sym_escape_sequence, - ACTIONS(8566), 1, + ACTIONS(8484), 1, sym__quoted_content_single, - ACTIONS(9779), 1, + ACTIONS(9697), 1, anon_sym_SQUOTE, - STATE(5262), 1, + STATE(5250), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383682,13 +371712,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256034] = 6, - ACTIONS(8570), 1, + ACTIONS(8488), 1, sym_escape_sequence, - ACTIONS(8572), 1, + ACTIONS(8490), 1, sym__quoted_content_heredoc_single, - ACTIONS(9781), 1, + ACTIONS(9699), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5092), 1, + STATE(5080), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383697,13 +371727,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256055] = 6, - ACTIONS(8576), 1, + ACTIONS(8494), 1, sym_escape_sequence, - ACTIONS(8578), 1, + ACTIONS(8496), 1, sym__quoted_content_heredoc_double, - ACTIONS(9783), 1, + ACTIONS(9701), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5260), 1, + STATE(5248), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383712,13 +371742,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256076] = 6, - ACTIONS(8600), 1, + ACTIONS(8518), 1, sym_escape_sequence, - ACTIONS(8602), 1, + ACTIONS(8520), 1, sym__quoted_content_bar, - ACTIONS(9785), 1, + ACTIONS(9703), 1, anon_sym_PIPE, - STATE(5205), 1, + STATE(5193), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383727,13 +371757,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256097] = 6, - ACTIONS(8582), 1, + ACTIONS(8500), 1, sym_escape_sequence, - ACTIONS(8584), 1, + ACTIONS(8502), 1, sym__quoted_content_curly, - ACTIONS(9787), 1, + ACTIONS(9705), 1, anon_sym_RBRACE, - STATE(5259), 1, + STATE(5247), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383742,13 +371772,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256118] = 6, - ACTIONS(8588), 1, + ACTIONS(8506), 1, sym_escape_sequence, - ACTIONS(8590), 1, + ACTIONS(8508), 1, sym__quoted_content_square, - ACTIONS(9789), 1, + ACTIONS(9707), 1, anon_sym_RBRACK, - STATE(5231), 1, + STATE(5219), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383757,13 +371787,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256139] = 6, - ACTIONS(8594), 1, + ACTIONS(8512), 1, sym_escape_sequence, - ACTIONS(8596), 1, + ACTIONS(8514), 1, sym__quoted_content_angle, - ACTIONS(9791), 1, + ACTIONS(9709), 1, anon_sym_GT, - STATE(5230), 1, + STATE(5218), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383772,13 +371802,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256160] = 6, - ACTIONS(8600), 1, + ACTIONS(8518), 1, sym_escape_sequence, - ACTIONS(8602), 1, + ACTIONS(8520), 1, sym__quoted_content_bar, - ACTIONS(9793), 1, + ACTIONS(9711), 1, anon_sym_PIPE, - STATE(5205), 1, + STATE(5193), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383789,26 +371819,26 @@ static const uint16_t ts_small_parse_table[] = { [256181] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(377), 1, + ACTIONS(353), 1, anon_sym_DQUOTE, - ACTIONS(379), 1, + ACTIONS(355), 1, anon_sym_SQUOTE, - STATE(2181), 1, + STATE(2178), 1, sym__quoted_i_double, - STATE(2184), 1, + STATE(2179), 1, sym__quoted_i_single, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, [256202] = 6, - ACTIONS(8606), 1, + ACTIONS(8524), 1, sym_escape_sequence, - ACTIONS(8608), 1, + ACTIONS(8526), 1, sym__quoted_content_slash, - ACTIONS(9795), 1, + ACTIONS(9713), 1, anon_sym_SLASH, - STATE(5204), 1, + STATE(5192), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383817,13 +371847,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256223] = 6, - ACTIONS(8606), 1, + ACTIONS(8524), 1, sym_escape_sequence, - ACTIONS(8608), 1, + ACTIONS(8526), 1, sym__quoted_content_slash, - ACTIONS(9797), 1, + ACTIONS(9715), 1, anon_sym_SLASH, - STATE(5204), 1, + STATE(5192), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383834,20 +371864,20 @@ static const uint16_t ts_small_parse_table[] = { [256244] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(838), 1, + ACTIONS(790), 1, anon_sym_DQUOTE, - ACTIONS(840), 1, + ACTIONS(792), 1, anon_sym_SQUOTE, - STATE(3837), 1, + STATE(3825), 1, sym__quoted_i_single, - STATE(3839), 1, + STATE(3827), 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, + ACTIONS(8386), 1, sym__quoted_content_i_heredoc_single, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383855,18 +371885,18 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, aux_sym__terminator_token1, sym_comment, - ACTIONS(8466), 3, + ACTIONS(8384), 3, anon_sym_SQUOTE_SQUOTE_SQUOTE, anon_sym_POUND_LBRACE, sym_escape_sequence, [256282] = 6, - ACTIONS(9799), 1, + ACTIONS(9717), 1, anon_sym_SLASH, - ACTIONS(9801), 1, + ACTIONS(9719), 1, sym_escape_sequence, - ACTIONS(9803), 1, + ACTIONS(9721), 1, sym__quoted_content_slash, - STATE(5168), 1, + STATE(5156), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383877,26 +371907,26 @@ static const uint16_t ts_small_parse_table[] = { [256303] = 6, ACTIONS(5), 1, sym_comment, - ACTIONS(207), 1, + ACTIONS(246), 1, anon_sym_DQUOTE, - ACTIONS(209), 1, + ACTIONS(248), 1, anon_sym_SQUOTE, - STATE(1224), 1, - sym__quoted_i_single, - STATE(1225), 1, + STATE(1161), 1, sym__quoted_i_double, + STATE(1162), 1, + sym__quoted_i_single, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, [256324] = 6, - ACTIONS(9805), 1, + ACTIONS(9723), 1, anon_sym_PIPE, - ACTIONS(9807), 1, + ACTIONS(9725), 1, sym_escape_sequence, - ACTIONS(9809), 1, + ACTIONS(9727), 1, sym__quoted_content_bar, - STATE(5170), 1, + STATE(5158), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383905,13 +371935,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256345] = 6, - ACTIONS(9811), 1, + ACTIONS(9729), 1, anon_sym_GT, - ACTIONS(9813), 1, + ACTIONS(9731), 1, sym_escape_sequence, - ACTIONS(9815), 1, + ACTIONS(9733), 1, sym__quoted_content_angle, - STATE(5306), 1, + STATE(5294), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383920,13 +371950,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256366] = 6, - ACTIONS(8372), 1, + ACTIONS(8290), 1, sym_escape_sequence, - ACTIONS(8374), 1, + ACTIONS(8292), 1, sym__quoted_content_parenthesis, - ACTIONS(9817), 1, + ACTIONS(9735), 1, anon_sym_RPAREN, - STATE(5309), 1, + STATE(5297), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383935,13 +371965,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256387] = 6, - ACTIONS(8600), 1, + ACTIONS(8518), 1, sym_escape_sequence, - ACTIONS(8602), 1, + ACTIONS(8520), 1, sym__quoted_content_bar, - ACTIONS(9819), 1, + ACTIONS(9737), 1, anon_sym_PIPE, - STATE(5205), 1, + STATE(5193), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383950,13 +371980,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256408] = 6, - ACTIONS(8594), 1, + ACTIONS(8512), 1, sym_escape_sequence, - ACTIONS(8596), 1, + ACTIONS(8514), 1, sym__quoted_content_angle, - ACTIONS(9821), 1, + ACTIONS(9739), 1, anon_sym_GT, - STATE(5230), 1, + STATE(5218), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383965,13 +371995,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256429] = 6, - ACTIONS(8588), 1, + ACTIONS(8506), 1, sym_escape_sequence, - ACTIONS(8590), 1, + ACTIONS(8508), 1, sym__quoted_content_square, - ACTIONS(9823), 1, + ACTIONS(9741), 1, anon_sym_RBRACK, - STATE(5231), 1, + STATE(5219), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383980,13 +372010,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256450] = 6, - ACTIONS(8582), 1, + ACTIONS(8500), 1, sym_escape_sequence, - ACTIONS(8584), 1, + ACTIONS(8502), 1, sym__quoted_content_curly, - ACTIONS(9825), 1, + ACTIONS(9743), 1, anon_sym_RBRACE, - STATE(5259), 1, + STATE(5247), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -383995,13 +372025,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256471] = 6, - ACTIONS(8576), 1, + ACTIONS(8494), 1, sym_escape_sequence, - ACTIONS(8578), 1, + ACTIONS(8496), 1, sym__quoted_content_heredoc_double, - ACTIONS(9827), 1, + ACTIONS(9745), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(5260), 1, + STATE(5248), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384010,13 +372040,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256492] = 6, - ACTIONS(8570), 1, + ACTIONS(8488), 1, sym_escape_sequence, - ACTIONS(8572), 1, + ACTIONS(8490), 1, sym__quoted_content_heredoc_single, - ACTIONS(9829), 1, + ACTIONS(9747), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - STATE(5092), 1, + STATE(5080), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384025,13 +372055,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256513] = 6, - ACTIONS(8564), 1, + ACTIONS(8482), 1, sym_escape_sequence, - ACTIONS(8566), 1, + ACTIONS(8484), 1, sym__quoted_content_single, - ACTIONS(9831), 1, + ACTIONS(9749), 1, anon_sym_SQUOTE, - STATE(5262), 1, + STATE(5250), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384040,13 +372070,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256534] = 6, - ACTIONS(8558), 1, + ACTIONS(8476), 1, sym_escape_sequence, - ACTIONS(8560), 1, + ACTIONS(8478), 1, sym__quoted_content_double, - ACTIONS(9833), 1, + ACTIONS(9751), 1, anon_sym_DQUOTE, - STATE(5308), 1, + STATE(5296), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384055,13 +372085,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256555] = 6, - ACTIONS(9835), 1, + ACTIONS(9753), 1, anon_sym_PIPE, - ACTIONS(9837), 1, + ACTIONS(9755), 1, sym_escape_sequence, - ACTIONS(9839), 1, + ACTIONS(9757), 1, sym__quoted_content_bar, - STATE(5396), 1, + STATE(5384), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384070,13 +372100,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256576] = 6, - ACTIONS(9841), 1, + ACTIONS(9759), 1, anon_sym_RBRACK, - ACTIONS(9843), 1, + ACTIONS(9761), 1, sym_escape_sequence, - ACTIONS(9845), 1, + ACTIONS(9763), 1, sym__quoted_content_square, - STATE(5182), 1, + STATE(5170), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384085,13 +372115,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256597] = 6, - ACTIONS(9847), 1, + ACTIONS(9765), 1, anon_sym_RBRACE, - ACTIONS(9849), 1, + ACTIONS(9767), 1, sym_escape_sequence, - ACTIONS(9851), 1, + ACTIONS(9769), 1, sym__quoted_content_curly, - STATE(5185), 1, + STATE(5173), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384100,13 +372130,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256618] = 6, - ACTIONS(9853), 1, + ACTIONS(9771), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9855), 1, + ACTIONS(9773), 1, sym_escape_sequence, - ACTIONS(9857), 1, + ACTIONS(9775), 1, sym__quoted_content_heredoc_double, - STATE(5186), 1, + STATE(5174), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384115,13 +372145,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256639] = 6, - ACTIONS(9859), 1, + ACTIONS(9777), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9861), 1, + ACTIONS(9779), 1, sym_escape_sequence, - ACTIONS(9863), 1, + ACTIONS(9781), 1, sym__quoted_content_heredoc_single, - STATE(5187), 1, + STATE(5175), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384130,13 +372160,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256660] = 6, - ACTIONS(9865), 1, + ACTIONS(9783), 1, anon_sym_SQUOTE, - ACTIONS(9867), 1, + ACTIONS(9785), 1, sym_escape_sequence, - ACTIONS(9869), 1, + ACTIONS(9787), 1, sym__quoted_content_single, - STATE(5200), 1, + STATE(5188), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384145,13 +372175,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256681] = 6, - ACTIONS(9871), 1, + ACTIONS(9789), 1, anon_sym_DQUOTE, - ACTIONS(9873), 1, + ACTIONS(9791), 1, sym_escape_sequence, - ACTIONS(9875), 1, + ACTIONS(9793), 1, sym__quoted_content_double, - STATE(5202), 1, + STATE(5190), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384160,13 +372190,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256702] = 6, - ACTIONS(9877), 1, + ACTIONS(9795), 1, anon_sym_SLASH, - ACTIONS(9879), 1, + ACTIONS(9797), 1, sym_escape_sequence, - ACTIONS(9881), 1, + ACTIONS(9799), 1, sym__quoted_content_slash, - STATE(5299), 1, + STATE(5287), 1, aux_sym__quoted_slash_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384175,13 +372205,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256723] = 6, - ACTIONS(9883), 1, + ACTIONS(9801), 1, anon_sym_PIPE, - ACTIONS(9885), 1, + ACTIONS(9803), 1, sym_escape_sequence, - ACTIONS(9887), 1, + ACTIONS(9805), 1, sym__quoted_content_bar, - STATE(5411), 1, + STATE(5399), 1, aux_sym__quoted_bar_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384190,13 +372220,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256744] = 6, - ACTIONS(9889), 1, + ACTIONS(9807), 1, anon_sym_GT, - ACTIONS(9891), 1, + ACTIONS(9809), 1, sym_escape_sequence, - ACTIONS(9893), 1, + ACTIONS(9811), 1, sym__quoted_content_angle, - STATE(5412), 1, + STATE(5400), 1, aux_sym__quoted_angle_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384205,13 +372235,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256765] = 6, - ACTIONS(9895), 1, + ACTIONS(9813), 1, anon_sym_RBRACK, - ACTIONS(9897), 1, + ACTIONS(9815), 1, sym_escape_sequence, - ACTIONS(9899), 1, + ACTIONS(9817), 1, sym__quoted_content_square, - STATE(5413), 1, + STATE(5401), 1, aux_sym__quoted_square_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384220,13 +372250,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256786] = 6, - ACTIONS(9901), 1, + ACTIONS(9819), 1, anon_sym_RBRACE, - ACTIONS(9903), 1, + ACTIONS(9821), 1, sym_escape_sequence, - ACTIONS(9905), 1, + ACTIONS(9823), 1, sym__quoted_content_curly, - STATE(5414), 1, + STATE(5402), 1, aux_sym__quoted_curly_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384235,13 +372265,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256807] = 6, - ACTIONS(9907), 1, + ACTIONS(9825), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(9909), 1, + ACTIONS(9827), 1, sym_escape_sequence, - ACTIONS(9911), 1, + ACTIONS(9829), 1, sym__quoted_content_heredoc_double, - STATE(5415), 1, + STATE(5403), 1, aux_sym__quoted_heredoc_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384250,13 +372280,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256828] = 6, - ACTIONS(9913), 1, + ACTIONS(9831), 1, anon_sym_SQUOTE_SQUOTE_SQUOTE, - ACTIONS(9915), 1, + ACTIONS(9833), 1, sym_escape_sequence, - ACTIONS(9917), 1, + ACTIONS(9835), 1, sym__quoted_content_heredoc_single, - STATE(5416), 1, + STATE(5404), 1, aux_sym__quoted_heredoc_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384265,13 +372295,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256849] = 6, - ACTIONS(9919), 1, + ACTIONS(9837), 1, anon_sym_SQUOTE, - ACTIONS(9921), 1, + ACTIONS(9839), 1, sym_escape_sequence, - ACTIONS(9923), 1, + ACTIONS(9841), 1, sym__quoted_content_single, - STATE(5417), 1, + STATE(5405), 1, aux_sym__quoted_single_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384280,13 +372310,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256870] = 6, - ACTIONS(9925), 1, + ACTIONS(9843), 1, anon_sym_DQUOTE, - ACTIONS(9927), 1, + ACTIONS(9845), 1, sym_escape_sequence, - ACTIONS(9929), 1, + ACTIONS(9847), 1, sym__quoted_content_double, - STATE(5418), 1, + STATE(5406), 1, aux_sym__quoted_double_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384295,13 +372325,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256891] = 6, - ACTIONS(9931), 1, + ACTIONS(9849), 1, anon_sym_RPAREN, - ACTIONS(9933), 1, + ACTIONS(9851), 1, sym_escape_sequence, - ACTIONS(9935), 1, + ACTIONS(9853), 1, sym__quoted_content_parenthesis, - STATE(5410), 1, + STATE(5398), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384310,13 +372340,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__terminator_token1, sym_comment, [256912] = 6, - ACTIONS(9937), 1, + ACTIONS(9855), 1, anon_sym_RPAREN, - ACTIONS(9939), 1, + ACTIONS(9857), 1, sym_escape_sequence, - ACTIONS(9941), 1, + ACTIONS(9859), 1, sym__quoted_content_parenthesis, - STATE(5203), 1, + STATE(5191), 1, aux_sym__quoted_parenthesis_repeat1, ACTIONS(3), 2, sym__newline_before_binary_operator, @@ -384327,11 +372357,11 @@ static const uint16_t ts_small_parse_table[] = { [256933] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(9943), 1, + ACTIONS(9861), 1, anon_sym_RPAREN, - ACTIONS(9945), 1, + ACTIONS(9863), 1, anon_sym_COMMA, - STATE(5449), 1, + STATE(5437), 1, aux_sym__stab_clause_arguments_with_parentheses_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -384340,11 +372370,11 @@ static const uint16_t ts_small_parse_table[] = { [256951] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(9947), 1, + ACTIONS(9865), 1, anon_sym_RPAREN, - ACTIONS(9949), 1, + ACTIONS(9867), 1, anon_sym_COMMA, - STATE(4926), 1, + STATE(4914), 1, aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -384353,11 +372383,11 @@ static const uint16_t ts_small_parse_table[] = { [256969] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3136), 1, + ACTIONS(3313), 1, anon_sym_GT_GT, - ACTIONS(9951), 1, + ACTIONS(9869), 1, anon_sym_COMMA, - STATE(5439), 1, + STATE(5427), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -384366,11 +372396,11 @@ static const uint16_t ts_small_parse_table[] = { [256987] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5900), 1, + ACTIONS(5818), 1, anon_sym_GT_GT, - ACTIONS(9954), 1, + ACTIONS(9872), 1, anon_sym_COMMA, - STATE(5439), 1, + STATE(5427), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -384379,11 +372409,11 @@ static const uint16_t ts_small_parse_table[] = { [257005] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3459), 1, + ACTIONS(3030), 1, anon_sym_GT_GT, - ACTIONS(9956), 1, + ACTIONS(9874), 1, anon_sym_COMMA, - STATE(5441), 1, + STATE(5429), 1, aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -384392,11 +372422,11 @@ static const uint16_t ts_small_parse_table[] = { [257023] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(8360), 1, + ACTIONS(8278), 1, anon_sym_GT_GT, - ACTIONS(9959), 1, + ACTIONS(9877), 1, anon_sym_COMMA, - STATE(5440), 1, + STATE(5428), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -384405,9 +372435,9 @@ static const uint16_t ts_small_parse_table[] = { [257041] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9961), 1, + ACTIONS(9879), 1, anon_sym_RPAREN, - ACTIONS(2918), 2, + ACTIONS(2836), 2, anon_sym_when, anon_sym_DASH_GT, ACTIONS(3), 3, @@ -384417,11 +372447,11 @@ static const uint16_t ts_small_parse_table[] = { [257057] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3221), 1, + ACTIONS(3393), 1, anon_sym_RPAREN, - ACTIONS(9963), 1, + ACTIONS(9881), 1, anon_sym_COMMA, - STATE(5446), 1, + STATE(5434), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -384430,11 +372460,11 @@ static const uint16_t ts_small_parse_table[] = { [257075] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(1123), 1, + ACTIONS(1211), 1, anon_sym_GT_GT, - ACTIONS(9965), 1, + ACTIONS(9883), 1, anon_sym_COMMA, - STATE(5441), 1, + STATE(5429), 1, aux_sym__items_with_trailing_separator_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -384443,11 +372473,11 @@ static const uint16_t ts_small_parse_table[] = { [257093] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(3151), 1, + ACTIONS(3403), 1, anon_sym_RPAREN, - ACTIONS(9963), 1, + ACTIONS(9881), 1, anon_sym_COMMA, - STATE(4990), 1, + STATE(4978), 1, aux_sym_keywords_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -384460,7 +372490,7 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(1121), 3, + ACTIONS(1199), 3, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_GT_GT, @@ -384471,18 +372501,18 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(4895), 3, + ACTIONS(4815), 3, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_GT_GT, [257139] = 5, ACTIONS(5), 1, sym_comment, - ACTIONS(5004), 1, + ACTIONS(4922), 1, anon_sym_RPAREN, - ACTIONS(9967), 1, + ACTIONS(9885), 1, anon_sym_COMMA, - STATE(5449), 1, + STATE(5437), 1, aux_sym__stab_clause_arguments_with_parentheses_repeat1, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -384495,16 +372525,16 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - ACTIONS(9970), 3, + ACTIONS(9888), 3, anon_sym_RBRACE, anon_sym_RBRACK, anon_sym_GT_GT, [257171] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(9972), 1, + ACTIONS(9890), 1, anon_sym_RPAREN, - ACTIONS(9974), 2, + ACTIONS(9892), 2, anon_sym_when, anon_sym_DASH_GT, ACTIONS(3), 3, @@ -384514,15 +372544,715 @@ static const uint16_t ts_small_parse_table[] = { [257187] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(592), 1, + ACTIONS(617), 1, anon_sym_do, - STATE(3739), 1, + STATE(3727), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, [257202] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9894), 1, + aux_sym_sigil_token1, + ACTIONS(9896), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257217] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9898), 1, + aux_sym__terminator_token1, + ACTIONS(3), 2, + sym__newline_before_binary_operator, + sym__newline_before_comment, + ACTIONS(8208), 2, + anon_sym_SEMI, + anon_sym_end, + [257232] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9900), 1, + aux_sym_sigil_token1, + ACTIONS(9902), 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(9904), 1, + anon_sym_LPAREN, + STATE(3564), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257262] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9906), 2, + anon_sym_when, + anon_sym_DASH_GT, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257275] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(387), 1, + anon_sym_do, + STATE(2571), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257290] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9908), 1, + anon_sym_LPAREN, + STATE(3638), 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(387), 1, + anon_sym_do, + STATE(2979), 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(617), 1, + anon_sym_do, + STATE(3321), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257335] = 3, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9910), 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(9912), 1, + aux_sym_sigil_token1, + ACTIONS(9914), 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(617), 1, + anon_sym_do, + STATE(3726), 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(617), 1, + anon_sym_do, + STATE(3725), 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(9916), 1, + anon_sym_LPAREN, + STATE(1434), 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(2986), 1, + anon_sym_LPAREN, + STATE(1142), 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(3558), 1, + anon_sym_LPAREN, + STATE(1809), 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(2836), 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(387), 1, + anon_sym_do, + STATE(2978), 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(9918), 1, + aux_sym_sigil_token1, + ACTIONS(9920), 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(9922), 1, + anon_sym_when, + ACTIONS(9924), 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(9924), 1, + anon_sym_DASH_GT, + ACTIONS(9926), 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(9928), 1, + aux_sym_sigil_token1, + ACTIONS(9930), 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(387), 1, + anon_sym_do, + STATE(2977), 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(560), 1, + anon_sym_do, + STATE(4117), 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(291), 1, + anon_sym_do, + STATE(1937), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [257571] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(291), 1, + anon_sym_do, + STATE(1936), 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(291), 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, + [257601] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(291), 1, + anon_sym_do, + STATE(1934), 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(291), 1, + anon_sym_do, + STATE(1933), 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(387), 1, + anon_sym_do, + STATE(2572), 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(291), 1, + anon_sym_do, + STATE(1931), 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(291), 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, + [257676] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(617), 1, + anon_sym_do, + STATE(3624), 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(617), 1, + anon_sym_do, + STATE(3724), 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(617), 1, + anon_sym_do, + STATE(3723), 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(560), 1, + anon_sym_do, + STATE(4116), 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(560), 1, + anon_sym_do, + STATE(3940), 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(9932), 1, + aux_sym_sigil_token1, + ACTIONS(9934), 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(560), 1, + anon_sym_do, + STATE(4114), 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(560), 1, + anon_sym_do, + STATE(4112), 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(9936), 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(560), 1, + anon_sym_do, + STATE(4109), 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(9938), 1, + aux_sym_sigil_token1, + ACTIONS(9940), 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(387), 1, + anon_sym_do, + STATE(2975), 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(560), 1, + anon_sym_do, + STATE(3944), 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(4172), 1, + anon_sym_LPAREN, + STATE(3109), 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(9942), 1, + aux_sym_sigil_token1, + ACTIONS(9944), 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(3913), 1, + anon_sym_LPAREN, + STATE(2340), 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(9946), 1, + aux_sym_sigil_token1, + ACTIONS(9948), 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(291), 1, + anon_sym_do, + STATE(1878), 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(9950), 1, + aux_sym_sigil_token1, + ACTIONS(9952), 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(287), 1, + anon_sym_do, + STATE(1611), 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(9954), 1, + aux_sym_sigil_token1, + ACTIONS(9956), 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(387), 1, + anon_sym_do, + STATE(2974), 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(2894), 1, + anon_sym_LPAREN, + STATE(1098), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258019] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(514), 1, + anon_sym_do, + STATE(3526), 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(9958), 1, + aux_sym_sigil_token1, + ACTIONS(9960), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258049] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9962), 1, + aux_sym_sigil_token1, + ACTIONS(9964), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258064] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(560), 1, + anon_sym_do, + STATE(4010), 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(9966), 1, + aux_sym_sigil_token1, + ACTIONS(9968), 1, + aux_sym_sigil_token2, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258094] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9970), 1, + aux_sym_sigil_token1, + ACTIONS(9972), 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(387), 1, + anon_sym_do, + STATE(3061), 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(514), 1, + anon_sym_do, + STATE(3838), 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(9974), 1, + anon_sym_LPAREN, + STATE(2500), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258154] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(9976), 1, @@ -384533,7 +373263,29 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [257217] = 4, + [258169] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(287), 1, + anon_sym_do, + STATE(1355), 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(514), 1, + anon_sym_do, + STATE(3836), 1, + sym_do_block, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258199] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(9980), 1, @@ -384544,767 +373296,45 @@ static const uint16_t ts_small_parse_table[] = { sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [257232] = 4, + [258214] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9984), 1, - aux_sym_sigil_token1, - ACTIONS(9986), 1, - aux_sym_sigil_token2, + ACTIONS(9984), 2, + anon_sym_when, + anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, aux_sym__terminator_token1, - [257247] = 4, + [258227] = 4, + ACTIONS(5), 1, + sym_comment, + ACTIONS(9986), 1, + anon_sym_LPAREN, + STATE(1662), 1, + sym__call_arguments_with_parentheses, + ACTIONS(3), 3, + sym__newline_before_binary_operator, + sym__newline_before_comment, + aux_sym__terminator_token1, + [258242] = 4, ACTIONS(5), 1, sym_comment, ACTIONS(9988), 1, - anon_sym_LPAREN, - STATE(3576), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [257262] = 3, - ACTIONS(5), 1, - sym_comment, - 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, - [257275] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(414), 1, - anon_sym_do, - STATE(2582), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [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(3659), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [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, + ACTIONS(9990), 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(1944), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [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(1124), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [258019] = 4, - ACTIONS(5), 1, - sym_comment, - 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(10044), 1, - aux_sym_sigil_token2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [258049] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10046), 1, - aux_sym_sigil_token1, - ACTIONS(10048), 1, - aux_sym_sigil_token2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [258064] = 4, - ACTIONS(5), 1, - sym_comment, - 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(10052), 1, - aux_sym_sigil_token2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [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(3769), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [258199] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10060), 1, - aux_sym_sigil_token1, - ACTIONS(10062), 1, - aux_sym_sigil_token2, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [258214] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(552), 1, - anon_sym_do, - STATE(3848), 1, - sym_do_block, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [258229] = 4, - ACTIONS(5), 1, - sym_comment, - ACTIONS(10064), 1, - anon_sym_LPAREN, - STATE(1673), 1, - sym__call_arguments_with_parentheses, - ACTIONS(3), 3, - sym__newline_before_binary_operator, - sym__newline_before_comment, - aux_sym__terminator_token1, - [258244] = 3, - ACTIONS(5), 1, - sym_comment, - 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, [258257] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10068), 1, - aux_sym_sigil_token1, - ACTIONS(10070), 1, - aux_sym_sigil_token2, + ACTIONS(514), 1, + anon_sym_do, + STATE(3822), 1, + sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385312,9 +373342,9 @@ static const uint16_t ts_small_parse_table[] = { [258272] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(552), 1, + ACTIONS(617), 1, anon_sym_do, - STATE(3834), 1, + STATE(3757), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385323,20 +373353,20 @@ static const uint16_t ts_small_parse_table[] = { [258287] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10072), 1, - aux_sym__terminator_token1, - ACTIONS(3), 2, + ACTIONS(514), 1, + anon_sym_do, + STATE(3523), 1, + sym_do_block, + ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, - ACTIONS(8284), 2, - anon_sym_SEMI, - anon_sym_end, + aux_sym__terminator_token1, [258302] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(552), 1, + ACTIONS(514), 1, anon_sym_do, - STATE(3535), 1, + STATE(3820), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385345,7 +373375,7 @@ static const uint16_t ts_small_parse_table[] = { [258317] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(9974), 2, + ACTIONS(9892), 2, anon_sym_when, anon_sym_DASH_GT, ACTIONS(3), 3, @@ -385355,9 +373385,9 @@ static const uint16_t ts_small_parse_table[] = { [258330] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(233), 1, + ACTIONS(287), 1, anon_sym_do, - STATE(1539), 1, + STATE(1678), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385366,9 +373396,9 @@ static const uint16_t ts_small_parse_table[] = { [258345] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(233), 1, + ACTIONS(287), 1, anon_sym_do, - STATE(1550), 1, + STATE(1677), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385377,9 +373407,9 @@ static const uint16_t ts_small_parse_table[] = { [258360] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(10074), 1, + ACTIONS(9992), 1, anon_sym_LPAREN, - STATE(3899), 1, + STATE(3887), 1, sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385388,9 +373418,9 @@ static const uint16_t ts_small_parse_table[] = { [258375] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(233), 1, + ACTIONS(287), 1, anon_sym_do, - STATE(1468), 1, + STATE(1349), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385399,7 +373429,7 @@ static const uint16_t ts_small_parse_table[] = { [258390] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(3794), 2, + ACTIONS(3652), 2, anon_sym_when, anon_sym_DASH_GT, ACTIONS(3), 3, @@ -385409,9 +373439,9 @@ static const uint16_t ts_small_parse_table[] = { [258403] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(3967), 1, + ACTIONS(3885), 1, anon_sym_LPAREN, - STATE(2658), 1, + STATE(2646), 1, sym__call_arguments_with_parentheses, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385420,9 +373450,9 @@ static const uint16_t ts_small_parse_table[] = { [258418] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(233), 1, + ACTIONS(287), 1, anon_sym_do, - STATE(1551), 1, + STATE(1676), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385431,9 +373461,9 @@ static const uint16_t ts_small_parse_table[] = { [258433] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(233), 1, + ACTIONS(287), 1, anon_sym_do, - STATE(1653), 1, + STATE(1675), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385442,9 +373472,9 @@ static const uint16_t ts_small_parse_table[] = { [258448] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(552), 1, + ACTIONS(514), 1, anon_sym_do, - STATE(3832), 1, + STATE(3819), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385453,9 +373483,9 @@ static const uint16_t ts_small_parse_table[] = { [258463] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(233), 1, + ACTIONS(287), 1, anon_sym_do, - STATE(1557), 1, + STATE(1674), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385464,9 +373494,9 @@ static const uint16_t ts_small_parse_table[] = { [258478] = 4, ACTIONS(5), 1, sym_comment, - ACTIONS(552), 1, + ACTIONS(514), 1, anon_sym_do, - STATE(3831), 1, + STATE(3937), 1, sym_do_block, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385475,7 +373505,7 @@ static const uint16_t ts_small_parse_table[] = { [258493] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10076), 1, + ACTIONS(9994), 1, sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385484,7 +373514,7 @@ static const uint16_t ts_small_parse_table[] = { [258505] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10078), 1, + ACTIONS(9996), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385493,8 +373523,8 @@ static const uint16_t ts_small_parse_table[] = { [258517] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10080), 1, - sym_integer, + ACTIONS(9998), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385502,7 +373532,7 @@ static const uint16_t ts_small_parse_table[] = { [258529] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10082), 1, + ACTIONS(10000), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385511,7 +373541,7 @@ static const uint16_t ts_small_parse_table[] = { [258541] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10084), 1, + ACTIONS(10002), 1, anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385520,7 +373550,7 @@ static const uint16_t ts_small_parse_table[] = { [258553] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10086), 1, + ACTIONS(10004), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385529,7 +373559,7 @@ static const uint16_t ts_small_parse_table[] = { [258565] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10088), 1, + ACTIONS(10006), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385538,7 +373568,7 @@ static const uint16_t ts_small_parse_table[] = { [258577] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(2651), 1, + ACTIONS(2565), 1, aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385547,7 +373577,7 @@ static const uint16_t ts_small_parse_table[] = { [258589] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10090), 1, + ACTIONS(10008), 1, anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385556,7 +373586,7 @@ static const uint16_t ts_small_parse_table[] = { [258601] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10092), 1, + ACTIONS(10010), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385565,7 +373595,7 @@ static const uint16_t ts_small_parse_table[] = { [258613] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10094), 1, + ACTIONS(10012), 1, anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385574,8 +373604,8 @@ static const uint16_t ts_small_parse_table[] = { [258625] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10096), 1, - anon_sym_RPAREN, + ACTIONS(10014), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385583,8 +373613,8 @@ static const uint16_t ts_small_parse_table[] = { [258637] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10098), 1, - anon_sym_RBRACE, + ACTIONS(10016), 1, + anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385592,7 +373622,7 @@ static const uint16_t ts_small_parse_table[] = { [258649] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10100), 1, + ACTIONS(10018), 1, sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385601,7 +373631,7 @@ static const uint16_t ts_small_parse_table[] = { [258661] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10102), 1, + ACTIONS(10020), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385610,8 +373640,8 @@ static const uint16_t ts_small_parse_table[] = { [258673] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10104), 1, - anon_sym_RBRACK, + ACTIONS(10022), 1, + anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385619,7 +373649,7 @@ static const uint16_t ts_small_parse_table[] = { [258685] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10106), 1, + ACTIONS(10024), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385628,8 +373658,8 @@ static const uint16_t ts_small_parse_table[] = { [258697] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10108), 1, - anon_sym_GT_GT, + ACTIONS(3000), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385637,7 +373667,7 @@ static const uint16_t ts_small_parse_table[] = { [258709] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10110), 1, + ACTIONS(10026), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385646,8 +373676,8 @@ static const uint16_t ts_small_parse_table[] = { [258721] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(3010), 1, - aux_sym_quoted_keyword_token1, + ACTIONS(10028), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385655,7 +373685,7 @@ static const uint16_t ts_small_parse_table[] = { [258733] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10112), 1, + ACTIONS(10030), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385664,8 +373694,8 @@ static const uint16_t ts_small_parse_table[] = { [258745] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10114), 1, - anon_sym_RBRACE, + ACTIONS(10032), 1, + sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385673,7 +373703,7 @@ static const uint16_t ts_small_parse_table[] = { [258757] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10116), 1, + ACTIONS(10034), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385682,7 +373712,7 @@ static const uint16_t ts_small_parse_table[] = { [258769] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10118), 1, + ACTIONS(10036), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385691,8 +373721,8 @@ static const uint16_t ts_small_parse_table[] = { [258781] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10120), 1, - sym_integer, + ACTIONS(3006), 1, + aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385700,8 +373730,8 @@ static const uint16_t ts_small_parse_table[] = { [258793] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(3004), 1, - aux_sym_quoted_keyword_token1, + ACTIONS(10038), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385709,7 +373739,7 @@ static const uint16_t ts_small_parse_table[] = { [258805] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10122), 1, + ACTIONS(10040), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385718,7 +373748,7 @@ static const uint16_t ts_small_parse_table[] = { [258817] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10124), 1, + ACTIONS(10042), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385727,7 +373757,7 @@ static const uint16_t ts_small_parse_table[] = { [258829] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10126), 1, + ACTIONS(10044), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385736,7 +373766,7 @@ static const uint16_t ts_small_parse_table[] = { [258841] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10128), 1, + ACTIONS(10046), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385745,7 +373775,7 @@ static const uint16_t ts_small_parse_table[] = { [258853] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10130), 1, + ACTIONS(10048), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385754,8 +373784,8 @@ static const uint16_t ts_small_parse_table[] = { [258865] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10132), 1, - anon_sym_RBRACE, + ACTIONS(10050), 1, + sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -385763,7 +373793,7 @@ static const uint16_t ts_small_parse_table[] = { [258877] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10134), 1, + ACTIONS(10052), 1, anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385772,7 +373802,7 @@ static const uint16_t ts_small_parse_table[] = { [258889] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10136), 1, + ACTIONS(10054), 1, anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385781,7 +373811,7 @@ static const uint16_t ts_small_parse_table[] = { [258901] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10138), 1, + ACTIONS(10056), 1, sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385790,7 +373820,7 @@ static const uint16_t ts_small_parse_table[] = { [258913] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10140), 1, + ACTIONS(10058), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385799,7 +373829,7 @@ static const uint16_t ts_small_parse_table[] = { [258925] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10142), 1, + ACTIONS(10060), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385808,7 +373838,7 @@ static const uint16_t ts_small_parse_table[] = { [258937] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10144), 1, + ACTIONS(10062), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385817,7 +373847,7 @@ static const uint16_t ts_small_parse_table[] = { [258949] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10146), 1, + ACTIONS(10064), 1, anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385826,7 +373856,7 @@ static const uint16_t ts_small_parse_table[] = { [258961] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10148), 1, + ACTIONS(10066), 1, anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385835,7 +373865,7 @@ static const uint16_t ts_small_parse_table[] = { [258973] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10150), 1, + ACTIONS(10068), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385844,7 +373874,7 @@ static const uint16_t ts_small_parse_table[] = { [258985] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10152), 1, + ACTIONS(10070), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385853,7 +373883,7 @@ static const uint16_t ts_small_parse_table[] = { [258997] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10154), 1, + ACTIONS(10072), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385862,7 +373892,7 @@ static const uint16_t ts_small_parse_table[] = { [259009] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10156), 1, + ACTIONS(10074), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385871,7 +373901,7 @@ static const uint16_t ts_small_parse_table[] = { [259021] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10158), 1, + ACTIONS(10076), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385880,7 +373910,7 @@ static const uint16_t ts_small_parse_table[] = { [259033] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10160), 1, + ACTIONS(10078), 1, sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385889,7 +373919,7 @@ static const uint16_t ts_small_parse_table[] = { [259045] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10162), 1, + ACTIONS(10080), 1, sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385898,7 +373928,7 @@ static const uint16_t ts_small_parse_table[] = { [259057] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10164), 1, + ACTIONS(10082), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385907,7 +373937,7 @@ static const uint16_t ts_small_parse_table[] = { [259069] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10166), 1, + ACTIONS(10084), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385916,7 +373946,7 @@ static const uint16_t ts_small_parse_table[] = { [259081] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10168), 1, + ACTIONS(10086), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385925,7 +373955,7 @@ static const uint16_t ts_small_parse_table[] = { [259093] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10170), 1, + ACTIONS(10088), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385934,7 +373964,7 @@ static const uint16_t ts_small_parse_table[] = { [259105] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10172), 1, + ACTIONS(10090), 1, anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385943,7 +373973,7 @@ static const uint16_t ts_small_parse_table[] = { [259117] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10174), 1, + ACTIONS(10092), 1, anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385952,7 +373982,7 @@ static const uint16_t ts_small_parse_table[] = { [259129] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10176), 1, + ACTIONS(10094), 1, sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385961,7 +373991,7 @@ static const uint16_t ts_small_parse_table[] = { [259141] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10178), 1, + ACTIONS(10096), 1, anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385970,7 +374000,7 @@ static const uint16_t ts_small_parse_table[] = { [259153] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10180), 1, + ACTIONS(10098), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385979,7 +374009,7 @@ static const uint16_t ts_small_parse_table[] = { [259165] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10182), 1, + ACTIONS(10100), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385988,7 +374018,7 @@ static const uint16_t ts_small_parse_table[] = { [259177] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10184), 1, + ACTIONS(10102), 1, anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -385997,7 +374027,7 @@ static const uint16_t ts_small_parse_table[] = { [259189] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10186), 1, + ACTIONS(10104), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386006,7 +374036,7 @@ static const uint16_t ts_small_parse_table[] = { [259201] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10188), 1, + ACTIONS(10106), 1, anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386015,7 +374045,7 @@ static const uint16_t ts_small_parse_table[] = { [259213] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10190), 1, + ACTIONS(10108), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386024,7 +374054,7 @@ static const uint16_t ts_small_parse_table[] = { [259225] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10192), 1, + ACTIONS(10110), 1, anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386033,7 +374063,7 @@ static const uint16_t ts_small_parse_table[] = { [259237] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10194), 1, + ACTIONS(10112), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386042,7 +374072,7 @@ static const uint16_t ts_small_parse_table[] = { [259249] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10196), 1, + ACTIONS(10114), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386051,7 +374081,7 @@ static const uint16_t ts_small_parse_table[] = { [259261] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10198), 1, + ACTIONS(10116), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386060,8 +374090,8 @@ static const uint16_t ts_small_parse_table[] = { [259273] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10200), 1, - anon_sym_RBRACE, + ACTIONS(10118), 1, + anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -386069,7 +374099,7 @@ static const uint16_t ts_small_parse_table[] = { [259285] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10202), 1, + ACTIONS(10120), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386078,7 +374108,7 @@ static const uint16_t ts_small_parse_table[] = { [259297] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10204), 1, + ACTIONS(10122), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386087,7 +374117,7 @@ static const uint16_t ts_small_parse_table[] = { [259309] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10206), 1, + ACTIONS(10124), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386096,7 +374126,7 @@ static const uint16_t ts_small_parse_table[] = { [259321] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10208), 1, + ACTIONS(10126), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386105,7 +374135,7 @@ static const uint16_t ts_small_parse_table[] = { [259333] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10210), 1, + ACTIONS(10128), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386114,7 +374144,7 @@ static const uint16_t ts_small_parse_table[] = { [259345] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10212), 1, + ACTIONS(10130), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386123,7 +374153,7 @@ static const uint16_t ts_small_parse_table[] = { [259357] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10214), 1, + ACTIONS(10132), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386132,7 +374162,7 @@ static const uint16_t ts_small_parse_table[] = { [259369] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10216), 1, + ACTIONS(10134), 1, anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386141,7 +374171,7 @@ static const uint16_t ts_small_parse_table[] = { [259381] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10218), 1, + ACTIONS(10136), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386150,7 +374180,7 @@ static const uint16_t ts_small_parse_table[] = { [259393] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10220), 1, + ACTIONS(10138), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386159,7 +374189,7 @@ static const uint16_t ts_small_parse_table[] = { [259405] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10222), 1, + ACTIONS(10140), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386168,7 +374198,7 @@ static const uint16_t ts_small_parse_table[] = { [259417] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10224), 1, + ACTIONS(10142), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386177,7 +374207,7 @@ static const uint16_t ts_small_parse_table[] = { [259429] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10226), 1, + ACTIONS(10144), 1, anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386186,7 +374216,7 @@ static const uint16_t ts_small_parse_table[] = { [259441] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10226), 1, + ACTIONS(10144), 1, anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386195,7 +374225,7 @@ static const uint16_t ts_small_parse_table[] = { [259453] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10228), 1, + ACTIONS(10146), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386204,7 +374234,7 @@ static const uint16_t ts_small_parse_table[] = { [259465] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10230), 1, + ACTIONS(10148), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386213,7 +374243,7 @@ static const uint16_t ts_small_parse_table[] = { [259477] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10232), 1, + ACTIONS(10150), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386222,7 +374252,7 @@ static const uint16_t ts_small_parse_table[] = { [259489] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10234), 1, + ACTIONS(10152), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386231,7 +374261,7 @@ static const uint16_t ts_small_parse_table[] = { [259501] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10236), 1, + ACTIONS(10154), 1, anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386240,7 +374270,7 @@ static const uint16_t ts_small_parse_table[] = { [259513] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10238), 1, + ACTIONS(10156), 1, sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386249,7 +374279,7 @@ static const uint16_t ts_small_parse_table[] = { [259525] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10240), 1, + ACTIONS(10158), 1, anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386258,7 +374288,7 @@ static const uint16_t ts_small_parse_table[] = { [259537] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10242), 1, + ACTIONS(10160), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386267,7 +374297,7 @@ static const uint16_t ts_small_parse_table[] = { [259549] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10244), 1, + ACTIONS(10162), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386276,7 +374306,7 @@ static const uint16_t ts_small_parse_table[] = { [259561] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10246), 1, + ACTIONS(10164), 1, anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386285,7 +374315,7 @@ static const uint16_t ts_small_parse_table[] = { [259573] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10248), 1, + ACTIONS(10166), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386294,7 +374324,7 @@ static const uint16_t ts_small_parse_table[] = { [259585] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10250), 1, + ACTIONS(10168), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386303,7 +374333,7 @@ static const uint16_t ts_small_parse_table[] = { [259597] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10252), 1, + ACTIONS(10170), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386312,7 +374342,7 @@ static const uint16_t ts_small_parse_table[] = { [259609] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10254), 1, + ACTIONS(10172), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386321,7 +374351,7 @@ static const uint16_t ts_small_parse_table[] = { [259621] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10256), 1, + ACTIONS(10174), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386330,7 +374360,7 @@ static const uint16_t ts_small_parse_table[] = { [259633] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10258), 1, + ACTIONS(10176), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386339,7 +374369,7 @@ static const uint16_t ts_small_parse_table[] = { [259645] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10260), 1, + ACTIONS(10178), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386348,7 +374378,7 @@ static const uint16_t ts_small_parse_table[] = { [259657] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10262), 1, + ACTIONS(10180), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386357,7 +374387,7 @@ static const uint16_t ts_small_parse_table[] = { [259669] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10264), 1, + ACTIONS(10182), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386366,7 +374396,7 @@ static const uint16_t ts_small_parse_table[] = { [259681] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10266), 1, + ACTIONS(10184), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386375,7 +374405,7 @@ static const uint16_t ts_small_parse_table[] = { [259693] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10268), 1, + ACTIONS(10186), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386384,7 +374414,7 @@ static const uint16_t ts_small_parse_table[] = { [259705] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10270), 1, + ACTIONS(10188), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386393,7 +374423,7 @@ static const uint16_t ts_small_parse_table[] = { [259717] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(2631), 1, + ACTIONS(2545), 1, aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386402,7 +374432,7 @@ static const uint16_t ts_small_parse_table[] = { [259729] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10272), 1, + ACTIONS(10190), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386411,7 +374441,7 @@ static const uint16_t ts_small_parse_table[] = { [259741] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10274), 1, + ACTIONS(10192), 1, anon_sym_LBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386420,7 +374450,7 @@ static const uint16_t ts_small_parse_table[] = { [259753] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10276), 1, + ACTIONS(10194), 1, anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386429,7 +374459,7 @@ static const uint16_t ts_small_parse_table[] = { [259765] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10278), 1, + ACTIONS(10196), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386438,7 +374468,7 @@ static const uint16_t ts_small_parse_table[] = { [259777] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10280), 1, + ACTIONS(10198), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386447,8 +374477,8 @@ static const uint16_t ts_small_parse_table[] = { [259789] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10282), 1, - anon_sym_RBRACK, + ACTIONS(10200), 1, + anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -386456,8 +374486,8 @@ static const uint16_t ts_small_parse_table[] = { [259801] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10284), 1, - anon_sym_RBRACE, + ACTIONS(10202), 1, + anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, sym__newline_before_comment, @@ -386465,7 +374495,7 @@ static const uint16_t ts_small_parse_table[] = { [259813] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10286), 1, + ACTIONS(10204), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386474,7 +374504,7 @@ static const uint16_t ts_small_parse_table[] = { [259825] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10288), 1, + ACTIONS(10206), 1, anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386483,7 +374513,7 @@ static const uint16_t ts_small_parse_table[] = { [259837] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10290), 1, + ACTIONS(10208), 1, sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386492,7 +374522,7 @@ static const uint16_t ts_small_parse_table[] = { [259849] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10292), 1, + ACTIONS(10210), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386501,7 +374531,7 @@ static const uint16_t ts_small_parse_table[] = { [259861] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10294), 1, + ACTIONS(10212), 1, anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386510,7 +374540,7 @@ static const uint16_t ts_small_parse_table[] = { [259873] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10296), 1, + ACTIONS(10214), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386519,7 +374549,7 @@ static const uint16_t ts_small_parse_table[] = { [259885] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10298), 1, + ACTIONS(10216), 1, anon_sym_DASH_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386528,7 +374558,7 @@ static const uint16_t ts_small_parse_table[] = { [259897] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10300), 1, + ACTIONS(10218), 1, anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386537,7 +374567,7 @@ static const uint16_t ts_small_parse_table[] = { [259909] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10302), 1, + ACTIONS(10220), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386546,7 +374576,7 @@ static const uint16_t ts_small_parse_table[] = { [259921] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10304), 1, + ACTIONS(10222), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386555,7 +374585,7 @@ static const uint16_t ts_small_parse_table[] = { [259933] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10306), 1, + ACTIONS(10224), 1, ts_builtin_sym_end, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386564,7 +374594,7 @@ static const uint16_t ts_small_parse_table[] = { [259945] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10308), 1, + ACTIONS(10226), 1, anon_sym_RBRACE, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386573,7 +374603,7 @@ static const uint16_t ts_small_parse_table[] = { [259957] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10310), 1, + ACTIONS(10228), 1, anon_sym_RPAREN, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386582,7 +374612,7 @@ static const uint16_t ts_small_parse_table[] = { [259969] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10312), 1, + ACTIONS(10230), 1, sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386591,7 +374621,7 @@ static const uint16_t ts_small_parse_table[] = { [259981] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10314), 1, + ACTIONS(10232), 1, anon_sym_GT_GT, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386600,7 +374630,7 @@ static const uint16_t ts_small_parse_table[] = { [259993] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10316), 1, + ACTIONS(10234), 1, anon_sym_RBRACK, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386609,7 +374639,7 @@ static const uint16_t ts_small_parse_table[] = { [260005] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(2647), 1, + ACTIONS(2573), 1, aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386618,7 +374648,7 @@ static const uint16_t ts_small_parse_table[] = { [260017] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(2611), 1, + ACTIONS(2581), 1, aux_sym_quoted_keyword_token1, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386627,7 +374657,7 @@ static const uint16_t ts_small_parse_table[] = { [260029] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(10318), 1, + ACTIONS(10236), 1, sym_integer, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386636,7 +374666,7 @@ static const uint16_t ts_small_parse_table[] = { [260041] = 3, ACTIONS(5), 1, sym_comment, - ACTIONS(2645), 1, + ACTIONS(2551), 1, anon_sym_SLASH, ACTIONS(3), 3, sym__newline_before_binary_operator, @@ -386645,4585 +374675,4585 @@ static const uint16_t ts_small_parse_table[] = { }; static const uint32_t ts_small_parse_table_map[] = { - [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, + [SMALL_STATE(1079)] = 0, + [SMALL_STATE(1080)] = 73, + [SMALL_STATE(1081)] = 146, + [SMALL_STATE(1082)] = 221, + [SMALL_STATE(1083)] = 294, + [SMALL_STATE(1084)] = 369, + [SMALL_STATE(1085)] = 448, + [SMALL_STATE(1086)] = 521, + [SMALL_STATE(1087)] = 596, + [SMALL_STATE(1088)] = 725, + [SMALL_STATE(1089)] = 804, + [SMALL_STATE(1090)] = 933, + [SMALL_STATE(1091)] = 1008, + [SMALL_STATE(1092)] = 1087, + [SMALL_STATE(1093)] = 1216, + [SMALL_STATE(1094)] = 1345, + [SMALL_STATE(1095)] = 1420, + [SMALL_STATE(1096)] = 1495, + [SMALL_STATE(1097)] = 1568, + [SMALL_STATE(1098)] = 1647, + [SMALL_STATE(1099)] = 1720, + [SMALL_STATE(1100)] = 1793, + [SMALL_STATE(1101)] = 1872, + [SMALL_STATE(1102)] = 2001, + [SMALL_STATE(1103)] = 2076, + [SMALL_STATE(1104)] = 2149, + [SMALL_STATE(1105)] = 2222, + [SMALL_STATE(1106)] = 2295, + [SMALL_STATE(1107)] = 2424, + [SMALL_STATE(1108)] = 2553, + [SMALL_STATE(1109)] = 2626, + [SMALL_STATE(1110)] = 2755, + [SMALL_STATE(1111)] = 2832, + [SMALL_STATE(1112)] = 2905, + [SMALL_STATE(1113)] = 2982, + [SMALL_STATE(1114)] = 3055, + [SMALL_STATE(1115)] = 3132, + [SMALL_STATE(1116)] = 3207, + [SMALL_STATE(1117)] = 3282, + [SMALL_STATE(1118)] = 3355, + [SMALL_STATE(1119)] = 3428, + [SMALL_STATE(1120)] = 3501, + [SMALL_STATE(1121)] = 3574, + [SMALL_STATE(1122)] = 3647, + [SMALL_STATE(1123)] = 3720, + [SMALL_STATE(1124)] = 3799, + [SMALL_STATE(1125)] = 3878, + [SMALL_STATE(1126)] = 3954, + [SMALL_STATE(1127)] = 4026, + [SMALL_STATE(1128)] = 4098, + [SMALL_STATE(1129)] = 4170, + [SMALL_STATE(1130)] = 4246, + [SMALL_STATE(1131)] = 4322, + [SMALL_STATE(1132)] = 4396, + [SMALL_STATE(1133)] = 4474, + [SMALL_STATE(1134)] = 4552, + [SMALL_STATE(1135)] = 4626, + [SMALL_STATE(1136)] = 4704, + [SMALL_STATE(1137)] = 4782, + [SMALL_STATE(1138)] = 4856, + [SMALL_STATE(1139)] = 4930, + [SMALL_STATE(1140)] = 5008, + [SMALL_STATE(1141)] = 5080, + [SMALL_STATE(1142)] = 5154, + [SMALL_STATE(1143)] = 5226, + [SMALL_STATE(1144)] = 5298, + [SMALL_STATE(1145)] = 5370, + [SMALL_STATE(1146)] = 5442, + [SMALL_STATE(1147)] = 5514, + [SMALL_STATE(1148)] = 5586, + [SMALL_STATE(1149)] = 5658, + [SMALL_STATE(1150)] = 5730, + [SMALL_STATE(1151)] = 5802, + [SMALL_STATE(1152)] = 5874, + [SMALL_STATE(1153)] = 5946, + [SMALL_STATE(1154)] = 6018, + [SMALL_STATE(1155)] = 6090, + [SMALL_STATE(1156)] = 6162, + [SMALL_STATE(1157)] = 6234, + [SMALL_STATE(1158)] = 6306, + [SMALL_STATE(1159)] = 6378, + [SMALL_STATE(1160)] = 6450, + [SMALL_STATE(1161)] = 6522, + [SMALL_STATE(1162)] = 6594, + [SMALL_STATE(1163)] = 6666, + [SMALL_STATE(1164)] = 6738, + [SMALL_STATE(1165)] = 6810, + [SMALL_STATE(1166)] = 6882, + [SMALL_STATE(1167)] = 6954, + [SMALL_STATE(1168)] = 7026, + [SMALL_STATE(1169)] = 7098, + [SMALL_STATE(1170)] = 7170, + [SMALL_STATE(1171)] = 7242, + [SMALL_STATE(1172)] = 7314, + [SMALL_STATE(1173)] = 7386, + [SMALL_STATE(1174)] = 7458, + [SMALL_STATE(1175)] = 7530, + [SMALL_STATE(1176)] = 7602, + [SMALL_STATE(1177)] = 7674, + [SMALL_STATE(1178)] = 7746, + [SMALL_STATE(1179)] = 7818, + [SMALL_STATE(1180)] = 7890, + [SMALL_STATE(1181)] = 7962, + [SMALL_STATE(1182)] = 8034, + [SMALL_STATE(1183)] = 8106, + [SMALL_STATE(1184)] = 8178, + [SMALL_STATE(1185)] = 8250, + [SMALL_STATE(1186)] = 8322, + [SMALL_STATE(1187)] = 8394, + [SMALL_STATE(1188)] = 8466, + [SMALL_STATE(1189)] = 8538, + [SMALL_STATE(1190)] = 8610, + [SMALL_STATE(1191)] = 8682, + [SMALL_STATE(1192)] = 8754, + [SMALL_STATE(1193)] = 8826, + [SMALL_STATE(1194)] = 8898, + [SMALL_STATE(1195)] = 8970, + [SMALL_STATE(1196)] = 9042, + [SMALL_STATE(1197)] = 9114, + [SMALL_STATE(1198)] = 9186, + [SMALL_STATE(1199)] = 9258, + [SMALL_STATE(1200)] = 9330, + [SMALL_STATE(1201)] = 9402, + [SMALL_STATE(1202)] = 9474, + [SMALL_STATE(1203)] = 9546, + [SMALL_STATE(1204)] = 9618, + [SMALL_STATE(1205)] = 9692, + [SMALL_STATE(1206)] = 9766, + [SMALL_STATE(1207)] = 9840, + [SMALL_STATE(1208)] = 9914, + [SMALL_STATE(1209)] = 9988, + [SMALL_STATE(1210)] = 10060, + [SMALL_STATE(1211)] = 10132, + [SMALL_STATE(1212)] = 10206, + [SMALL_STATE(1213)] = 10278, + [SMALL_STATE(1214)] = 10350, + [SMALL_STATE(1215)] = 10422, + [SMALL_STATE(1216)] = 10494, + [SMALL_STATE(1217)] = 10566, + [SMALL_STATE(1218)] = 10638, + [SMALL_STATE(1219)] = 10710, + [SMALL_STATE(1220)] = 10782, + [SMALL_STATE(1221)] = 10854, + [SMALL_STATE(1222)] = 10926, + [SMALL_STATE(1223)] = 11000, + [SMALL_STATE(1224)] = 11072, + [SMALL_STATE(1225)] = 11146, + [SMALL_STATE(1226)] = 11218, + [SMALL_STATE(1227)] = 11292, + [SMALL_STATE(1228)] = 11366, + [SMALL_STATE(1229)] = 11438, + [SMALL_STATE(1230)] = 11512, + [SMALL_STATE(1231)] = 11586, + [SMALL_STATE(1232)] = 11658, + [SMALL_STATE(1233)] = 11730, + [SMALL_STATE(1234)] = 11802, + [SMALL_STATE(1235)] = 11874, + [SMALL_STATE(1236)] = 11946, + [SMALL_STATE(1237)] = 12018, + [SMALL_STATE(1238)] = 12090, + [SMALL_STATE(1239)] = 12162, + [SMALL_STATE(1240)] = 12234, + [SMALL_STATE(1241)] = 12306, + [SMALL_STATE(1242)] = 12380, + [SMALL_STATE(1243)] = 12452, + [SMALL_STATE(1244)] = 12524, + [SMALL_STATE(1245)] = 12596, + [SMALL_STATE(1246)] = 12668, + [SMALL_STATE(1247)] = 12740, + [SMALL_STATE(1248)] = 12812, + [SMALL_STATE(1249)] = 12886, + [SMALL_STATE(1250)] = 12960, + [SMALL_STATE(1251)] = 13034, + [SMALL_STATE(1252)] = 13106, + [SMALL_STATE(1253)] = 13224, + [SMALL_STATE(1254)] = 13296, + [SMALL_STATE(1255)] = 13370, + [SMALL_STATE(1256)] = 13444, + [SMALL_STATE(1257)] = 13516, + [SMALL_STATE(1258)] = 13588, + [SMALL_STATE(1259)] = 13660, + [SMALL_STATE(1260)] = 13732, + [SMALL_STATE(1261)] = 13804, + [SMALL_STATE(1262)] = 13876, + [SMALL_STATE(1263)] = 13948, + [SMALL_STATE(1264)] = 14020, + [SMALL_STATE(1265)] = 14092, + [SMALL_STATE(1266)] = 14164, + [SMALL_STATE(1267)] = 14236, + [SMALL_STATE(1268)] = 14308, + [SMALL_STATE(1269)] = 14380, + [SMALL_STATE(1270)] = 14452, + [SMALL_STATE(1271)] = 14524, + [SMALL_STATE(1272)] = 14596, + [SMALL_STATE(1273)] = 14668, + [SMALL_STATE(1274)] = 14744, + [SMALL_STATE(1275)] = 14816, + [SMALL_STATE(1276)] = 14892, + [SMALL_STATE(1277)] = 14964, + [SMALL_STATE(1278)] = 15036, + [SMALL_STATE(1279)] = 15108, + [SMALL_STATE(1280)] = 15182, + [SMALL_STATE(1281)] = 15254, + [SMALL_STATE(1282)] = 15326, + [SMALL_STATE(1283)] = 15398, + [SMALL_STATE(1284)] = 15470, + [SMALL_STATE(1285)] = 15542, + [SMALL_STATE(1286)] = 15618, + [SMALL_STATE(1287)] = 15690, + [SMALL_STATE(1288)] = 15762, + [SMALL_STATE(1289)] = 15834, + [SMALL_STATE(1290)] = 15906, + [SMALL_STATE(1291)] = 15978, + [SMALL_STATE(1292)] = 16054, + [SMALL_STATE(1293)] = 16130, + [SMALL_STATE(1294)] = 16204, + [SMALL_STATE(1295)] = 16276, + [SMALL_STATE(1296)] = 16348, + [SMALL_STATE(1297)] = 16420, + [SMALL_STATE(1298)] = 16492, + [SMALL_STATE(1299)] = 16564, + [SMALL_STATE(1300)] = 16636, + [SMALL_STATE(1301)] = 16708, + [SMALL_STATE(1302)] = 16780, + [SMALL_STATE(1303)] = 16854, + [SMALL_STATE(1304)] = 16928, + [SMALL_STATE(1305)] = 17000, + [SMALL_STATE(1306)] = 17072, + [SMALL_STATE(1307)] = 17144, + [SMALL_STATE(1308)] = 17216, + [SMALL_STATE(1309)] = 17288, + [SMALL_STATE(1310)] = 17360, + [SMALL_STATE(1311)] = 17431, + [SMALL_STATE(1312)] = 17502, + [SMALL_STATE(1313)] = 17573, + [SMALL_STATE(1314)] = 17646, + [SMALL_STATE(1315)] = 17721, + [SMALL_STATE(1316)] = 17794, + [SMALL_STATE(1317)] = 17865, + [SMALL_STATE(1318)] = 17940, + [SMALL_STATE(1319)] = 18015, + [SMALL_STATE(1320)] = 18090, + [SMALL_STATE(1321)] = 18165, + [SMALL_STATE(1322)] = 18240, + [SMALL_STATE(1323)] = 18313, + [SMALL_STATE(1324)] = 18386, + [SMALL_STATE(1325)] = 18459, + [SMALL_STATE(1326)] = 18576, + [SMALL_STATE(1327)] = 18649, + [SMALL_STATE(1328)] = 18722, + [SMALL_STATE(1329)] = 18795, + [SMALL_STATE(1330)] = 18866, + [SMALL_STATE(1331)] = 18937, + [SMALL_STATE(1332)] = 19008, + [SMALL_STATE(1333)] = 19081, + [SMALL_STATE(1334)] = 19152, + [SMALL_STATE(1335)] = 19225, + [SMALL_STATE(1336)] = 19298, + [SMALL_STATE(1337)] = 19369, + [SMALL_STATE(1338)] = 19440, + [SMALL_STATE(1339)] = 19511, + [SMALL_STATE(1340)] = 19586, + [SMALL_STATE(1341)] = 19657, + [SMALL_STATE(1342)] = 19730, + [SMALL_STATE(1343)] = 19801, + [SMALL_STATE(1344)] = 19872, + [SMALL_STATE(1345)] = 19947, + [SMALL_STATE(1346)] = 20022, + [SMALL_STATE(1347)] = 20093, + [SMALL_STATE(1348)] = 20166, + [SMALL_STATE(1349)] = 20239, + [SMALL_STATE(1350)] = 20310, + [SMALL_STATE(1351)] = 20383, + [SMALL_STATE(1352)] = 20454, + [SMALL_STATE(1353)] = 20525, + [SMALL_STATE(1354)] = 20598, + [SMALL_STATE(1355)] = 20671, + [SMALL_STATE(1356)] = 20742, + [SMALL_STATE(1357)] = 20813, + [SMALL_STATE(1358)] = 20886, + [SMALL_STATE(1359)] = 20959, + [SMALL_STATE(1360)] = 21032, + [SMALL_STATE(1361)] = 21103, + [SMALL_STATE(1362)] = 21174, + [SMALL_STATE(1363)] = 21247, + [SMALL_STATE(1364)] = 21320, + [SMALL_STATE(1365)] = 21391, + [SMALL_STATE(1366)] = 21462, + [SMALL_STATE(1367)] = 21533, + [SMALL_STATE(1368)] = 21604, + [SMALL_STATE(1369)] = 21679, + [SMALL_STATE(1370)] = 21750, + [SMALL_STATE(1371)] = 21821, + [SMALL_STATE(1372)] = 21892, + [SMALL_STATE(1373)] = 21963, + [SMALL_STATE(1374)] = 22034, + [SMALL_STATE(1375)] = 22105, + [SMALL_STATE(1376)] = 22176, + [SMALL_STATE(1377)] = 22247, + [SMALL_STATE(1378)] = 22318, + [SMALL_STATE(1379)] = 22389, + [SMALL_STATE(1380)] = 22460, + [SMALL_STATE(1381)] = 22531, + [SMALL_STATE(1382)] = 22602, + [SMALL_STATE(1383)] = 22673, + [SMALL_STATE(1384)] = 22744, + [SMALL_STATE(1385)] = 22815, + [SMALL_STATE(1386)] = 22886, + [SMALL_STATE(1387)] = 22961, + [SMALL_STATE(1388)] = 23032, + [SMALL_STATE(1389)] = 23103, + [SMALL_STATE(1390)] = 23174, + [SMALL_STATE(1391)] = 23245, + [SMALL_STATE(1392)] = 23316, + [SMALL_STATE(1393)] = 23387, + [SMALL_STATE(1394)] = 23458, + [SMALL_STATE(1395)] = 23529, + [SMALL_STATE(1396)] = 23600, + [SMALL_STATE(1397)] = 23671, + [SMALL_STATE(1398)] = 23742, + [SMALL_STATE(1399)] = 23813, + [SMALL_STATE(1400)] = 23884, + [SMALL_STATE(1401)] = 23955, + [SMALL_STATE(1402)] = 24026, + [SMALL_STATE(1403)] = 24097, + [SMALL_STATE(1404)] = 24168, + [SMALL_STATE(1405)] = 24239, + [SMALL_STATE(1406)] = 24310, + [SMALL_STATE(1407)] = 24381, + [SMALL_STATE(1408)] = 24452, + [SMALL_STATE(1409)] = 24523, + [SMALL_STATE(1410)] = 24594, + [SMALL_STATE(1411)] = 24665, + [SMALL_STATE(1412)] = 24736, + [SMALL_STATE(1413)] = 24807, + [SMALL_STATE(1414)] = 24878, + [SMALL_STATE(1415)] = 24949, + [SMALL_STATE(1416)] = 25020, + [SMALL_STATE(1417)] = 25091, + [SMALL_STATE(1418)] = 25162, + [SMALL_STATE(1419)] = 25233, + [SMALL_STATE(1420)] = 25304, + [SMALL_STATE(1421)] = 25375, + [SMALL_STATE(1422)] = 25446, + [SMALL_STATE(1423)] = 25517, + [SMALL_STATE(1424)] = 25588, + [SMALL_STATE(1425)] = 25659, + [SMALL_STATE(1426)] = 25730, + [SMALL_STATE(1427)] = 25801, + [SMALL_STATE(1428)] = 25872, + [SMALL_STATE(1429)] = 25943, + [SMALL_STATE(1430)] = 26014, + [SMALL_STATE(1431)] = 26085, + [SMALL_STATE(1432)] = 26156, + [SMALL_STATE(1433)] = 26227, + [SMALL_STATE(1434)] = 26298, + [SMALL_STATE(1435)] = 26369, + [SMALL_STATE(1436)] = 26440, + [SMALL_STATE(1437)] = 26511, + [SMALL_STATE(1438)] = 26582, + [SMALL_STATE(1439)] = 26653, + [SMALL_STATE(1440)] = 26724, + [SMALL_STATE(1441)] = 26795, + [SMALL_STATE(1442)] = 26866, + [SMALL_STATE(1443)] = 26949, + [SMALL_STATE(1444)] = 27034, + [SMALL_STATE(1445)] = 27105, + [SMALL_STATE(1446)] = 27176, + [SMALL_STATE(1447)] = 27247, + [SMALL_STATE(1448)] = 27318, + [SMALL_STATE(1449)] = 27409, + [SMALL_STATE(1450)] = 27504, + [SMALL_STATE(1451)] = 27601, + [SMALL_STATE(1452)] = 27672, + [SMALL_STATE(1453)] = 27743, + [SMALL_STATE(1454)] = 27814, + [SMALL_STATE(1455)] = 27901, + [SMALL_STATE(1456)] = 27994, + [SMALL_STATE(1457)] = 28065, + [SMALL_STATE(1458)] = 28172, + [SMALL_STATE(1459)] = 28243, + [SMALL_STATE(1460)] = 28320, + [SMALL_STATE(1461)] = 28399, + [SMALL_STATE(1462)] = 28470, + [SMALL_STATE(1463)] = 28581, + [SMALL_STATE(1464)] = 28692, + [SMALL_STATE(1465)] = 28763, + [SMALL_STATE(1466)] = 28834, + [SMALL_STATE(1467)] = 28905, + [SMALL_STATE(1468)] = 28976, + [SMALL_STATE(1469)] = 29089, + [SMALL_STATE(1470)] = 29160, + [SMALL_STATE(1471)] = 29231, + [SMALL_STATE(1472)] = 29302, + [SMALL_STATE(1473)] = 29373, + [SMALL_STATE(1474)] = 29444, + [SMALL_STATE(1475)] = 29515, + [SMALL_STATE(1476)] = 29624, + [SMALL_STATE(1477)] = 29695, + [SMALL_STATE(1478)] = 29800, + [SMALL_STATE(1479)] = 29871, + [SMALL_STATE(1480)] = 29942, + [SMALL_STATE(1481)] = 30013, + [SMALL_STATE(1482)] = 30084, + [SMALL_STATE(1483)] = 30169, + [SMALL_STATE(1484)] = 30240, + [SMALL_STATE(1485)] = 30311, + [SMALL_STATE(1486)] = 30382, + [SMALL_STATE(1487)] = 30485, + [SMALL_STATE(1488)] = 30556, + [SMALL_STATE(1489)] = 30669, + [SMALL_STATE(1490)] = 30740, + [SMALL_STATE(1491)] = 30811, + [SMALL_STATE(1492)] = 30924, + [SMALL_STATE(1493)] = 30995, + [SMALL_STATE(1494)] = 31066, + [SMALL_STATE(1495)] = 31137, + [SMALL_STATE(1496)] = 31208, + [SMALL_STATE(1497)] = 31279, + [SMALL_STATE(1498)] = 31350, + [SMALL_STATE(1499)] = 31449, + [SMALL_STATE(1500)] = 31520, + [SMALL_STATE(1501)] = 31591, + [SMALL_STATE(1502)] = 31662, + [SMALL_STATE(1503)] = 31733, + [SMALL_STATE(1504)] = 31804, + [SMALL_STATE(1505)] = 31875, + [SMALL_STATE(1506)] = 31946, + [SMALL_STATE(1507)] = 32016, + [SMALL_STATE(1508)] = 32086, + [SMALL_STATE(1509)] = 32156, + [SMALL_STATE(1510)] = 32230, + [SMALL_STATE(1511)] = 32304, + [SMALL_STATE(1512)] = 32378, + [SMALL_STATE(1513)] = 32452, + [SMALL_STATE(1514)] = 32522, + [SMALL_STATE(1515)] = 32592, + [SMALL_STATE(1516)] = 32662, + [SMALL_STATE(1517)] = 32732, + [SMALL_STATE(1518)] = 32802, + [SMALL_STATE(1519)] = 32872, + [SMALL_STATE(1520)] = 32942, + [SMALL_STATE(1521)] = 33012, + [SMALL_STATE(1522)] = 33082, + [SMALL_STATE(1523)] = 33152, + [SMALL_STATE(1524)] = 33222, + [SMALL_STATE(1525)] = 33292, + [SMALL_STATE(1526)] = 33362, + [SMALL_STATE(1527)] = 33432, + [SMALL_STATE(1528)] = 33560, + [SMALL_STATE(1529)] = 33630, + [SMALL_STATE(1530)] = 33700, + [SMALL_STATE(1531)] = 33770, + [SMALL_STATE(1532)] = 33840, + [SMALL_STATE(1533)] = 33910, + [SMALL_STATE(1534)] = 33980, + [SMALL_STATE(1535)] = 34050, + [SMALL_STATE(1536)] = 34120, + [SMALL_STATE(1537)] = 34190, + [SMALL_STATE(1538)] = 34260, + [SMALL_STATE(1539)] = 34330, + [SMALL_STATE(1540)] = 34400, + [SMALL_STATE(1541)] = 34470, + [SMALL_STATE(1542)] = 34540, + [SMALL_STATE(1543)] = 34612, + [SMALL_STATE(1544)] = 34684, + [SMALL_STATE(1545)] = 34756, + [SMALL_STATE(1546)] = 34828, + [SMALL_STATE(1547)] = 34900, + [SMALL_STATE(1548)] = 34972, + [SMALL_STATE(1549)] = 35044, + [SMALL_STATE(1550)] = 35116, + [SMALL_STATE(1551)] = 35188, + [SMALL_STATE(1552)] = 35260, + [SMALL_STATE(1553)] = 35332, + [SMALL_STATE(1554)] = 35404, + [SMALL_STATE(1555)] = 35476, + [SMALL_STATE(1556)] = 35550, + [SMALL_STATE(1557)] = 35622, + [SMALL_STATE(1558)] = 35694, + [SMALL_STATE(1559)] = 35766, + [SMALL_STATE(1560)] = 35838, + [SMALL_STATE(1561)] = 35910, + [SMALL_STATE(1562)] = 35984, + [SMALL_STATE(1563)] = 36068, + [SMALL_STATE(1564)] = 36152, + [SMALL_STATE(1565)] = 36222, + [SMALL_STATE(1566)] = 36312, + [SMALL_STATE(1567)] = 36406, + [SMALL_STATE(1568)] = 36518, + [SMALL_STATE(1569)] = 36588, + [SMALL_STATE(1570)] = 36660, + [SMALL_STATE(1571)] = 36730, + [SMALL_STATE(1572)] = 36800, + [SMALL_STATE(1573)] = 36870, + [SMALL_STATE(1574)] = 36940, + [SMALL_STATE(1575)] = 37010, + [SMALL_STATE(1576)] = 37080, + [SMALL_STATE(1577)] = 37150, + [SMALL_STATE(1578)] = 37220, + [SMALL_STATE(1579)] = 37332, + [SMALL_STATE(1580)] = 37402, + [SMALL_STATE(1581)] = 37472, + [SMALL_STATE(1582)] = 37542, + [SMALL_STATE(1583)] = 37612, + [SMALL_STATE(1584)] = 37684, + [SMALL_STATE(1585)] = 37754, + [SMALL_STATE(1586)] = 37824, + [SMALL_STATE(1587)] = 37894, + [SMALL_STATE(1588)] = 37966, + [SMALL_STATE(1589)] = 38038, + [SMALL_STATE(1590)] = 38108, + [SMALL_STATE(1591)] = 38178, + [SMALL_STATE(1592)] = 38248, + [SMALL_STATE(1593)] = 38318, + [SMALL_STATE(1594)] = 38388, + [SMALL_STATE(1595)] = 38458, + [SMALL_STATE(1596)] = 38528, + [SMALL_STATE(1597)] = 38610, + [SMALL_STATE(1598)] = 38680, + [SMALL_STATE(1599)] = 38750, + [SMALL_STATE(1600)] = 38820, + [SMALL_STATE(1601)] = 38890, + [SMALL_STATE(1602)] = 38960, + [SMALL_STATE(1603)] = 39030, + [SMALL_STATE(1604)] = 39102, + [SMALL_STATE(1605)] = 39174, + [SMALL_STATE(1606)] = 39244, + [SMALL_STATE(1607)] = 39314, + [SMALL_STATE(1608)] = 39384, + [SMALL_STATE(1609)] = 39456, + [SMALL_STATE(1610)] = 39526, + [SMALL_STATE(1611)] = 39596, + [SMALL_STATE(1612)] = 39666, + [SMALL_STATE(1613)] = 39736, + [SMALL_STATE(1614)] = 39806, + [SMALL_STATE(1615)] = 39876, + [SMALL_STATE(1616)] = 39946, + [SMALL_STATE(1617)] = 40016, + [SMALL_STATE(1618)] = 40112, + [SMALL_STATE(1619)] = 40182, + [SMALL_STATE(1620)] = 40252, + [SMALL_STATE(1621)] = 40322, + [SMALL_STATE(1622)] = 40392, + [SMALL_STATE(1623)] = 40462, + [SMALL_STATE(1624)] = 40532, + [SMALL_STATE(1625)] = 40602, + [SMALL_STATE(1626)] = 40672, + [SMALL_STATE(1627)] = 40742, + [SMALL_STATE(1628)] = 40812, + [SMALL_STATE(1629)] = 40882, + [SMALL_STATE(1630)] = 40952, + [SMALL_STATE(1631)] = 41038, + [SMALL_STATE(1632)] = 41136, + [SMALL_STATE(1633)] = 41238, + [SMALL_STATE(1634)] = 41308, + [SMALL_STATE(1635)] = 41378, + [SMALL_STATE(1636)] = 41498, + [SMALL_STATE(1637)] = 41602, + [SMALL_STATE(1638)] = 41676, + [SMALL_STATE(1639)] = 41750, + [SMALL_STATE(1640)] = 41824, + [SMALL_STATE(1641)] = 41932, + [SMALL_STATE(1642)] = 42042, + [SMALL_STATE(1643)] = 42112, + [SMALL_STATE(1644)] = 42222, + [SMALL_STATE(1645)] = 42300, + [SMALL_STATE(1646)] = 42376, + [SMALL_STATE(1647)] = 42446, + [SMALL_STATE(1648)] = 42516, + [SMALL_STATE(1649)] = 42586, + [SMALL_STATE(1650)] = 42656, + [SMALL_STATE(1651)] = 42726, + [SMALL_STATE(1652)] = 42796, + [SMALL_STATE(1653)] = 42866, + [SMALL_STATE(1654)] = 42936, + [SMALL_STATE(1655)] = 43042, + [SMALL_STATE(1656)] = 43112, + [SMALL_STATE(1657)] = 43182, + [SMALL_STATE(1658)] = 43252, + [SMALL_STATE(1659)] = 43322, + [SMALL_STATE(1660)] = 43392, + [SMALL_STATE(1661)] = 43462, + [SMALL_STATE(1662)] = 43554, + [SMALL_STATE(1663)] = 43624, + [SMALL_STATE(1664)] = 43694, + [SMALL_STATE(1665)] = 43764, + [SMALL_STATE(1666)] = 43834, + [SMALL_STATE(1667)] = 43954, + [SMALL_STATE(1668)] = 44024, + [SMALL_STATE(1669)] = 44094, + [SMALL_STATE(1670)] = 44164, + [SMALL_STATE(1671)] = 44234, + [SMALL_STATE(1672)] = 44304, + [SMALL_STATE(1673)] = 44374, + [SMALL_STATE(1674)] = 44444, + [SMALL_STATE(1675)] = 44514, + [SMALL_STATE(1676)] = 44584, + [SMALL_STATE(1677)] = 44654, + [SMALL_STATE(1678)] = 44724, + [SMALL_STATE(1679)] = 44794, + [SMALL_STATE(1680)] = 44864, + [SMALL_STATE(1681)] = 44934, + [SMALL_STATE(1682)] = 45004, + [SMALL_STATE(1683)] = 45074, + [SMALL_STATE(1684)] = 45144, + [SMALL_STATE(1685)] = 45214, + [SMALL_STATE(1686)] = 45284, + [SMALL_STATE(1687)] = 45360, + [SMALL_STATE(1688)] = 45436, + [SMALL_STATE(1689)] = 45506, + [SMALL_STATE(1690)] = 45576, + [SMALL_STATE(1691)] = 45646, + [SMALL_STATE(1692)] = 45716, + [SMALL_STATE(1693)] = 45786, + [SMALL_STATE(1694)] = 45856, + [SMALL_STATE(1695)] = 45926, + [SMALL_STATE(1696)] = 45996, + [SMALL_STATE(1697)] = 46066, + [SMALL_STATE(1698)] = 46136, + [SMALL_STATE(1699)] = 46206, + [SMALL_STATE(1700)] = 46276, + [SMALL_STATE(1701)] = 46404, + [SMALL_STATE(1702)] = 46476, + [SMALL_STATE(1703)] = 46546, + [SMALL_STATE(1704)] = 46616, + [SMALL_STATE(1705)] = 46686, + [SMALL_STATE(1706)] = 46798, + [SMALL_STATE(1707)] = 46867, + [SMALL_STATE(1708)] = 46936, + [SMALL_STATE(1709)] = 47061, + [SMALL_STATE(1710)] = 47134, + [SMALL_STATE(1711)] = 47207, + [SMALL_STATE(1712)] = 47280, + [SMALL_STATE(1713)] = 47349, + [SMALL_STATE(1714)] = 47418, + [SMALL_STATE(1715)] = 47487, + [SMALL_STATE(1716)] = 47556, + [SMALL_STATE(1717)] = 47625, + [SMALL_STATE(1718)] = 47750, + [SMALL_STATE(1719)] = 47823, + [SMALL_STATE(1720)] = 47896, + [SMALL_STATE(1721)] = 47969, + [SMALL_STATE(1722)] = 48094, + [SMALL_STATE(1723)] = 48219, + [SMALL_STATE(1724)] = 48344, + [SMALL_STATE(1725)] = 48469, + [SMALL_STATE(1726)] = 48594, + [SMALL_STATE(1727)] = 48719, + [SMALL_STATE(1728)] = 48844, + [SMALL_STATE(1729)] = 48969, + [SMALL_STATE(1730)] = 49094, + [SMALL_STATE(1731)] = 49219, + [SMALL_STATE(1732)] = 49344, + [SMALL_STATE(1733)] = 49469, + [SMALL_STATE(1734)] = 49594, + [SMALL_STATE(1735)] = 49719, + [SMALL_STATE(1736)] = 49844, + [SMALL_STATE(1737)] = 49969, + [SMALL_STATE(1738)] = 50094, + [SMALL_STATE(1739)] = 50219, + [SMALL_STATE(1740)] = 50344, + [SMALL_STATE(1741)] = 50469, + [SMALL_STATE(1742)] = 50594, + [SMALL_STATE(1743)] = 50719, + [SMALL_STATE(1744)] = 50788, + [SMALL_STATE(1745)] = 50857, + [SMALL_STATE(1746)] = 50926, + [SMALL_STATE(1747)] = 50995, + [SMALL_STATE(1748)] = 51064, + [SMALL_STATE(1749)] = 51133, + [SMALL_STATE(1750)] = 51202, + [SMALL_STATE(1751)] = 51271, + [SMALL_STATE(1752)] = 51340, + [SMALL_STATE(1753)] = 51409, + [SMALL_STATE(1754)] = 51478, + [SMALL_STATE(1755)] = 51547, + [SMALL_STATE(1756)] = 51616, + [SMALL_STATE(1757)] = 51685, + [SMALL_STATE(1758)] = 51754, + [SMALL_STATE(1759)] = 51823, + [SMALL_STATE(1760)] = 51892, + [SMALL_STATE(1761)] = 51961, + [SMALL_STATE(1762)] = 52030, + [SMALL_STATE(1763)] = 52099, + [SMALL_STATE(1764)] = 52168, + [SMALL_STATE(1765)] = 52237, + [SMALL_STATE(1766)] = 52306, + [SMALL_STATE(1767)] = 52375, + [SMALL_STATE(1768)] = 52444, + [SMALL_STATE(1769)] = 52513, + [SMALL_STATE(1770)] = 52582, + [SMALL_STATE(1771)] = 52653, + [SMALL_STATE(1772)] = 52724, + [SMALL_STATE(1773)] = 52793, + [SMALL_STATE(1774)] = 52862, + [SMALL_STATE(1775)] = 52931, + [SMALL_STATE(1776)] = 53000, + [SMALL_STATE(1777)] = 53069, + [SMALL_STATE(1778)] = 53138, + [SMALL_STATE(1779)] = 53207, + [SMALL_STATE(1780)] = 53276, + [SMALL_STATE(1781)] = 53345, + [SMALL_STATE(1782)] = 53414, + [SMALL_STATE(1783)] = 53483, + [SMALL_STATE(1784)] = 53552, + [SMALL_STATE(1785)] = 53621, + [SMALL_STATE(1786)] = 53690, + [SMALL_STATE(1787)] = 53759, + [SMALL_STATE(1788)] = 53828, + [SMALL_STATE(1789)] = 53897, + [SMALL_STATE(1790)] = 53966, + [SMALL_STATE(1791)] = 54035, + [SMALL_STATE(1792)] = 54104, + [SMALL_STATE(1793)] = 54173, + [SMALL_STATE(1794)] = 54242, + [SMALL_STATE(1795)] = 54311, + [SMALL_STATE(1796)] = 54380, + [SMALL_STATE(1797)] = 54449, + [SMALL_STATE(1798)] = 54518, + [SMALL_STATE(1799)] = 54587, + [SMALL_STATE(1800)] = 54656, + [SMALL_STATE(1801)] = 54725, + [SMALL_STATE(1802)] = 54794, + [SMALL_STATE(1803)] = 54863, + [SMALL_STATE(1804)] = 54934, + [SMALL_STATE(1805)] = 55005, + [SMALL_STATE(1806)] = 55074, + [SMALL_STATE(1807)] = 55145, + [SMALL_STATE(1808)] = 55216, + [SMALL_STATE(1809)] = 55287, + [SMALL_STATE(1810)] = 55356, + [SMALL_STATE(1811)] = 55425, + [SMALL_STATE(1812)] = 55494, + [SMALL_STATE(1813)] = 55563, + [SMALL_STATE(1814)] = 55634, + [SMALL_STATE(1815)] = 55703, + [SMALL_STATE(1816)] = 55772, + [SMALL_STATE(1817)] = 55843, + [SMALL_STATE(1818)] = 55912, + [SMALL_STATE(1819)] = 55981, + [SMALL_STATE(1820)] = 56052, + [SMALL_STATE(1821)] = 56123, + [SMALL_STATE(1822)] = 56194, + [SMALL_STATE(1823)] = 56265, + [SMALL_STATE(1824)] = 56334, + [SMALL_STATE(1825)] = 56405, + [SMALL_STATE(1826)] = 56474, + [SMALL_STATE(1827)] = 56543, + [SMALL_STATE(1828)] = 56614, + [SMALL_STATE(1829)] = 56685, + [SMALL_STATE(1830)] = 56756, + [SMALL_STATE(1831)] = 56827, + [SMALL_STATE(1832)] = 56898, + [SMALL_STATE(1833)] = 56969, + [SMALL_STATE(1834)] = 57040, + [SMALL_STATE(1835)] = 57111, + [SMALL_STATE(1836)] = 57182, + [SMALL_STATE(1837)] = 57253, + [SMALL_STATE(1838)] = 57324, + [SMALL_STATE(1839)] = 57395, + [SMALL_STATE(1840)] = 57466, + [SMALL_STATE(1841)] = 57537, + [SMALL_STATE(1842)] = 57608, + [SMALL_STATE(1843)] = 57679, + [SMALL_STATE(1844)] = 57750, + [SMALL_STATE(1845)] = 57821, + [SMALL_STATE(1846)] = 57890, + [SMALL_STATE(1847)] = 57961, + [SMALL_STATE(1848)] = 58030, + [SMALL_STATE(1849)] = 58099, + [SMALL_STATE(1850)] = 58168, + [SMALL_STATE(1851)] = 58279, + [SMALL_STATE(1852)] = 58350, + [SMALL_STATE(1853)] = 58421, + [SMALL_STATE(1854)] = 58490, + [SMALL_STATE(1855)] = 58561, + [SMALL_STATE(1856)] = 58632, + [SMALL_STATE(1857)] = 58703, + [SMALL_STATE(1858)] = 58778, + [SMALL_STATE(1859)] = 58847, + [SMALL_STATE(1860)] = 58922, + [SMALL_STATE(1861)] = 58997, + [SMALL_STATE(1862)] = 59072, + [SMALL_STATE(1863)] = 59147, + [SMALL_STATE(1864)] = 59216, + [SMALL_STATE(1865)] = 59341, + [SMALL_STATE(1866)] = 59410, + [SMALL_STATE(1867)] = 59491, + [SMALL_STATE(1868)] = 59574, + [SMALL_STATE(1869)] = 59657, + [SMALL_STATE(1870)] = 59726, + [SMALL_STATE(1871)] = 59795, + [SMALL_STATE(1872)] = 59884, + [SMALL_STATE(1873)] = 59977, + [SMALL_STATE(1874)] = 60046, + [SMALL_STATE(1875)] = 60115, + [SMALL_STATE(1876)] = 60210, + [SMALL_STATE(1877)] = 60279, + [SMALL_STATE(1878)] = 60348, + [SMALL_STATE(1879)] = 60417, + [SMALL_STATE(1880)] = 60514, + [SMALL_STATE(1881)] = 60583, + [SMALL_STATE(1882)] = 60652, + [SMALL_STATE(1883)] = 60721, + [SMALL_STATE(1884)] = 60790, + [SMALL_STATE(1885)] = 60891, + [SMALL_STATE(1886)] = 60994, + [SMALL_STATE(1887)] = 61101, + [SMALL_STATE(1888)] = 61210, + [SMALL_STATE(1889)] = 61319, + [SMALL_STATE(1890)] = 61396, + [SMALL_STATE(1891)] = 61471, + [SMALL_STATE(1892)] = 61576, + [SMALL_STATE(1893)] = 61667, + [SMALL_STATE(1894)] = 61752, + [SMALL_STATE(1895)] = 61821, + [SMALL_STATE(1896)] = 61890, + [SMALL_STATE(1897)] = 61959, + [SMALL_STATE(1898)] = 62028, + [SMALL_STATE(1899)] = 62097, + [SMALL_STATE(1900)] = 62166, + [SMALL_STATE(1901)] = 62235, + [SMALL_STATE(1902)] = 62304, + [SMALL_STATE(1903)] = 62373, + [SMALL_STATE(1904)] = 62442, + [SMALL_STATE(1905)] = 62511, + [SMALL_STATE(1906)] = 62582, + [SMALL_STATE(1907)] = 62653, + [SMALL_STATE(1908)] = 62724, + [SMALL_STATE(1909)] = 62793, + [SMALL_STATE(1910)] = 62862, + [SMALL_STATE(1911)] = 62933, + [SMALL_STATE(1912)] = 63058, + [SMALL_STATE(1913)] = 63127, + [SMALL_STATE(1914)] = 63252, + [SMALL_STATE(1915)] = 63321, + [SMALL_STATE(1916)] = 63390, + [SMALL_STATE(1917)] = 63459, + [SMALL_STATE(1918)] = 63528, + [SMALL_STATE(1919)] = 63597, + [SMALL_STATE(1920)] = 63666, + [SMALL_STATE(1921)] = 63735, + [SMALL_STATE(1922)] = 63804, + [SMALL_STATE(1923)] = 63873, + [SMALL_STATE(1924)] = 63942, + [SMALL_STATE(1925)] = 64011, + [SMALL_STATE(1926)] = 64080, + [SMALL_STATE(1927)] = 64149, + [SMALL_STATE(1928)] = 64218, + [SMALL_STATE(1929)] = 64287, + [SMALL_STATE(1930)] = 64358, + [SMALL_STATE(1931)] = 64427, + [SMALL_STATE(1932)] = 64496, + [SMALL_STATE(1933)] = 64621, + [SMALL_STATE(1934)] = 64690, + [SMALL_STATE(1935)] = 64759, + [SMALL_STATE(1936)] = 64884, + [SMALL_STATE(1937)] = 64953, + [SMALL_STATE(1938)] = 65022, + [SMALL_STATE(1939)] = 65091, + [SMALL_STATE(1940)] = 65162, + [SMALL_STATE(1941)] = 65287, + [SMALL_STATE(1942)] = 65358, + [SMALL_STATE(1943)] = 65483, + [SMALL_STATE(1944)] = 65608, + [SMALL_STATE(1945)] = 65733, + [SMALL_STATE(1946)] = 65804, + [SMALL_STATE(1947)] = 65875, + [SMALL_STATE(1948)] = 65944, + [SMALL_STATE(1949)] = 66055, + [SMALL_STATE(1950)] = 66180, + [SMALL_STATE(1951)] = 66305, + [SMALL_STATE(1952)] = 66430, + [SMALL_STATE(1953)] = 66499, + [SMALL_STATE(1954)] = 66568, + [SMALL_STATE(1955)] = 66637, + [SMALL_STATE(1956)] = 66706, + [SMALL_STATE(1957)] = 66775, + [SMALL_STATE(1958)] = 66844, + [SMALL_STATE(1959)] = 66913, + [SMALL_STATE(1960)] = 66982, + [SMALL_STATE(1961)] = 67051, + [SMALL_STATE(1962)] = 67120, + [SMALL_STATE(1963)] = 67189, + [SMALL_STATE(1964)] = 67258, + [SMALL_STATE(1965)] = 67327, + [SMALL_STATE(1966)] = 67396, + [SMALL_STATE(1967)] = 67465, + [SMALL_STATE(1968)] = 67534, + [SMALL_STATE(1969)] = 67603, + [SMALL_STATE(1970)] = 67672, + [SMALL_STATE(1971)] = 67741, + [SMALL_STATE(1972)] = 67810, + [SMALL_STATE(1973)] = 67879, + [SMALL_STATE(1974)] = 67948, + [SMALL_STATE(1975)] = 68017, + [SMALL_STATE(1976)] = 68086, + [SMALL_STATE(1977)] = 68155, + [SMALL_STATE(1978)] = 68224, + [SMALL_STATE(1979)] = 68293, + [SMALL_STATE(1980)] = 68362, + [SMALL_STATE(1981)] = 68431, + [SMALL_STATE(1982)] = 68500, + [SMALL_STATE(1983)] = 68569, + [SMALL_STATE(1984)] = 68638, + [SMALL_STATE(1985)] = 68707, + [SMALL_STATE(1986)] = 68776, + [SMALL_STATE(1987)] = 68845, + [SMALL_STATE(1988)] = 68914, + [SMALL_STATE(1989)] = 68983, + [SMALL_STATE(1990)] = 69052, + [SMALL_STATE(1991)] = 69121, + [SMALL_STATE(1992)] = 69190, + [SMALL_STATE(1993)] = 69259, + [SMALL_STATE(1994)] = 69328, + [SMALL_STATE(1995)] = 69397, + [SMALL_STATE(1996)] = 69466, + [SMALL_STATE(1997)] = 69535, + [SMALL_STATE(1998)] = 69604, + [SMALL_STATE(1999)] = 69673, + [SMALL_STATE(2000)] = 69742, + [SMALL_STATE(2001)] = 69810, + [SMALL_STATE(2002)] = 69878, + [SMALL_STATE(2003)] = 69946, + [SMALL_STATE(2004)] = 70014, + [SMALL_STATE(2005)] = 70082, + [SMALL_STATE(2006)] = 70150, + [SMALL_STATE(2007)] = 70218, + [SMALL_STATE(2008)] = 70286, + [SMALL_STATE(2009)] = 70354, + [SMALL_STATE(2010)] = 70422, + [SMALL_STATE(2011)] = 70490, + [SMALL_STATE(2012)] = 70558, + [SMALL_STATE(2013)] = 70626, + [SMALL_STATE(2014)] = 70694, + [SMALL_STATE(2015)] = 70762, + [SMALL_STATE(2016)] = 70830, + [SMALL_STATE(2017)] = 70898, + [SMALL_STATE(2018)] = 70966, + [SMALL_STATE(2019)] = 71034, + [SMALL_STATE(2020)] = 71102, + [SMALL_STATE(2021)] = 71170, + [SMALL_STATE(2022)] = 71238, + [SMALL_STATE(2023)] = 71306, + [SMALL_STATE(2024)] = 71374, + [SMALL_STATE(2025)] = 71442, + [SMALL_STATE(2026)] = 71514, + [SMALL_STATE(2027)] = 71586, + [SMALL_STATE(2028)] = 71654, + [SMALL_STATE(2029)] = 71722, + [SMALL_STATE(2030)] = 71792, + [SMALL_STATE(2031)] = 71860, + [SMALL_STATE(2032)] = 71928, + [SMALL_STATE(2033)] = 71996, + [SMALL_STATE(2034)] = 72064, + [SMALL_STATE(2035)] = 72134, + [SMALL_STATE(2036)] = 72202, + [SMALL_STATE(2037)] = 72270, + [SMALL_STATE(2038)] = 72338, + [SMALL_STATE(2039)] = 72406, + [SMALL_STATE(2040)] = 72478, + [SMALL_STATE(2041)] = 72546, + [SMALL_STATE(2042)] = 72620, + [SMALL_STATE(2043)] = 72690, + [SMALL_STATE(2044)] = 72760, + [SMALL_STATE(2045)] = 72828, + [SMALL_STATE(2046)] = 72896, + [SMALL_STATE(2047)] = 72966, + [SMALL_STATE(2048)] = 73036, + [SMALL_STATE(2049)] = 73106, + [SMALL_STATE(2050)] = 73176, + [SMALL_STATE(2051)] = 73246, + [SMALL_STATE(2052)] = 73316, + [SMALL_STATE(2053)] = 73386, + [SMALL_STATE(2054)] = 73456, + [SMALL_STATE(2055)] = 73526, + [SMALL_STATE(2056)] = 73596, + [SMALL_STATE(2057)] = 73666, + [SMALL_STATE(2058)] = 73736, + [SMALL_STATE(2059)] = 73806, + [SMALL_STATE(2060)] = 73876, + [SMALL_STATE(2061)] = 73946, + [SMALL_STATE(2062)] = 74016, + [SMALL_STATE(2063)] = 74086, + [SMALL_STATE(2064)] = 74156, + [SMALL_STATE(2065)] = 74226, + [SMALL_STATE(2066)] = 74296, + [SMALL_STATE(2067)] = 74364, + [SMALL_STATE(2068)] = 74432, + [SMALL_STATE(2069)] = 74500, + [SMALL_STATE(2070)] = 74574, + [SMALL_STATE(2071)] = 74642, + [SMALL_STATE(2072)] = 74710, + [SMALL_STATE(2073)] = 74778, + [SMALL_STATE(2074)] = 74846, + [SMALL_STATE(2075)] = 74914, + [SMALL_STATE(2076)] = 74986, + [SMALL_STATE(2077)] = 75054, + [SMALL_STATE(2078)] = 75122, + [SMALL_STATE(2079)] = 75194, + [SMALL_STATE(2080)] = 75262, + [SMALL_STATE(2081)] = 75330, + [SMALL_STATE(2082)] = 75398, + [SMALL_STATE(2083)] = 75466, + [SMALL_STATE(2084)] = 75534, + [SMALL_STATE(2085)] = 75606, + [SMALL_STATE(2086)] = 75674, + [SMALL_STATE(2087)] = 75784, + [SMALL_STATE(2088)] = 75856, + [SMALL_STATE(2089)] = 75928, + [SMALL_STATE(2090)] = 75996, + [SMALL_STATE(2091)] = 76064, + [SMALL_STATE(2092)] = 76136, + [SMALL_STATE(2093)] = 76208, + [SMALL_STATE(2094)] = 76280, + [SMALL_STATE(2095)] = 76352, + [SMALL_STATE(2096)] = 76424, + [SMALL_STATE(2097)] = 76496, + [SMALL_STATE(2098)] = 76564, + [SMALL_STATE(2099)] = 76678, + [SMALL_STATE(2100)] = 76750, + [SMALL_STATE(2101)] = 76822, + [SMALL_STATE(2102)] = 76894, + [SMALL_STATE(2103)] = 76966, + [SMALL_STATE(2104)] = 77038, + [SMALL_STATE(2105)] = 77148, + [SMALL_STATE(2106)] = 77220, + [SMALL_STATE(2107)] = 77288, + [SMALL_STATE(2108)] = 77356, + [SMALL_STATE(2109)] = 77424, + [SMALL_STATE(2110)] = 77492, + [SMALL_STATE(2111)] = 77560, + [SMALL_STATE(2112)] = 77628, + [SMALL_STATE(2113)] = 77712, + [SMALL_STATE(2114)] = 77802, + [SMALL_STATE(2115)] = 77906, + [SMALL_STATE(2116)] = 77980, + [SMALL_STATE(2117)] = 78048, + [SMALL_STATE(2118)] = 78116, + [SMALL_STATE(2119)] = 78184, + [SMALL_STATE(2120)] = 78252, + [SMALL_STATE(2121)] = 78328, + [SMALL_STATE(2122)] = 78436, + [SMALL_STATE(2123)] = 78504, + [SMALL_STATE(2124)] = 78572, + [SMALL_STATE(2125)] = 78640, + [SMALL_STATE(2126)] = 78708, + [SMALL_STATE(2127)] = 78776, + [SMALL_STATE(2128)] = 78844, + [SMALL_STATE(2129)] = 78912, + [SMALL_STATE(2130)] = 78980, + [SMALL_STATE(2131)] = 79048, + [SMALL_STATE(2132)] = 79116, + [SMALL_STATE(2133)] = 79184, + [SMALL_STATE(2134)] = 79252, + [SMALL_STATE(2135)] = 79320, + [SMALL_STATE(2136)] = 79388, + [SMALL_STATE(2137)] = 79460, + [SMALL_STATE(2138)] = 79528, + [SMALL_STATE(2139)] = 79596, + [SMALL_STATE(2140)] = 79704, + [SMALL_STATE(2141)] = 79810, + [SMALL_STATE(2142)] = 79878, + [SMALL_STATE(2143)] = 79980, + [SMALL_STATE(2144)] = 80080, + [SMALL_STATE(2145)] = 80176, + [SMALL_STATE(2146)] = 80244, + [SMALL_STATE(2147)] = 80338, + [SMALL_STATE(2148)] = 80430, + [SMALL_STATE(2149)] = 80518, + [SMALL_STATE(2150)] = 80600, + [SMALL_STATE(2151)] = 80682, + [SMALL_STATE(2152)] = 80750, + [SMALL_STATE(2153)] = 80818, + [SMALL_STATE(2154)] = 80890, + [SMALL_STATE(2155)] = 80958, + [SMALL_STATE(2156)] = 81038, + [SMALL_STATE(2157)] = 81106, + [SMALL_STATE(2158)] = 81174, + [SMALL_STATE(2159)] = 81242, + [SMALL_STATE(2160)] = 81310, + [SMALL_STATE(2161)] = 81378, + [SMALL_STATE(2162)] = 81446, + [SMALL_STATE(2163)] = 81514, + [SMALL_STATE(2164)] = 81582, + [SMALL_STATE(2165)] = 81650, + [SMALL_STATE(2166)] = 81718, + [SMALL_STATE(2167)] = 81786, + [SMALL_STATE(2168)] = 81854, + [SMALL_STATE(2169)] = 81922, + [SMALL_STATE(2170)] = 81990, + [SMALL_STATE(2171)] = 82058, + [SMALL_STATE(2172)] = 82126, + [SMALL_STATE(2173)] = 82194, + [SMALL_STATE(2174)] = 82262, + [SMALL_STATE(2175)] = 82330, + [SMALL_STATE(2176)] = 82398, + [SMALL_STATE(2177)] = 82512, + [SMALL_STATE(2178)] = 82584, + [SMALL_STATE(2179)] = 82652, + [SMALL_STATE(2180)] = 82720, + [SMALL_STATE(2181)] = 82792, + [SMALL_STATE(2182)] = 82860, + [SMALL_STATE(2183)] = 82928, + [SMALL_STATE(2184)] = 83000, + [SMALL_STATE(2185)] = 83068, + [SMALL_STATE(2186)] = 83136, + [SMALL_STATE(2187)] = 83204, + [SMALL_STATE(2188)] = 83272, + [SMALL_STATE(2189)] = 83340, + [SMALL_STATE(2190)] = 83408, + [SMALL_STATE(2191)] = 83476, + [SMALL_STATE(2192)] = 83544, + [SMALL_STATE(2193)] = 83612, + [SMALL_STATE(2194)] = 83680, + [SMALL_STATE(2195)] = 83748, + [SMALL_STATE(2196)] = 83816, + [SMALL_STATE(2197)] = 83884, + [SMALL_STATE(2198)] = 83958, + [SMALL_STATE(2199)] = 84032, + [SMALL_STATE(2200)] = 84101, + [SMALL_STATE(2201)] = 84170, + [SMALL_STATE(2202)] = 84241, + [SMALL_STATE(2203)] = 84308, + [SMALL_STATE(2204)] = 84379, + [SMALL_STATE(2205)] = 84446, + [SMALL_STATE(2206)] = 84513, + [SMALL_STATE(2207)] = 84580, + [SMALL_STATE(2208)] = 84647, + [SMALL_STATE(2209)] = 84714, + [SMALL_STATE(2210)] = 84781, + [SMALL_STATE(2211)] = 84848, + [SMALL_STATE(2212)] = 84915, + [SMALL_STATE(2213)] = 85028, + [SMALL_STATE(2214)] = 85101, + [SMALL_STATE(2215)] = 85168, + [SMALL_STATE(2216)] = 85241, + [SMALL_STATE(2217)] = 85310, + [SMALL_STATE(2218)] = 85379, + [SMALL_STATE(2219)] = 85452, + [SMALL_STATE(2220)] = 85561, + [SMALL_STATE(2221)] = 85628, + [SMALL_STATE(2222)] = 85701, + [SMALL_STATE(2223)] = 85774, + [SMALL_STATE(2224)] = 85845, + [SMALL_STATE(2225)] = 85912, + [SMALL_STATE(2226)] = 85983, + [SMALL_STATE(2227)] = 86054, + [SMALL_STATE(2228)] = 86121, + [SMALL_STATE(2229)] = 86188, + [SMALL_STATE(2230)] = 86255, + [SMALL_STATE(2231)] = 86322, + [SMALL_STATE(2232)] = 86389, + [SMALL_STATE(2233)] = 86456, + [SMALL_STATE(2234)] = 86523, + [SMALL_STATE(2235)] = 86590, + [SMALL_STATE(2236)] = 86657, + [SMALL_STATE(2237)] = 86724, + [SMALL_STATE(2238)] = 86791, + [SMALL_STATE(2239)] = 86858, + [SMALL_STATE(2240)] = 86925, + [SMALL_STATE(2241)] = 86992, + [SMALL_STATE(2242)] = 87059, + [SMALL_STATE(2243)] = 87126, + [SMALL_STATE(2244)] = 87193, + [SMALL_STATE(2245)] = 87264, + [SMALL_STATE(2246)] = 87331, + [SMALL_STATE(2247)] = 87398, + [SMALL_STATE(2248)] = 87465, + [SMALL_STATE(2249)] = 87532, + [SMALL_STATE(2250)] = 87599, + [SMALL_STATE(2251)] = 87666, + [SMALL_STATE(2252)] = 87733, + [SMALL_STATE(2253)] = 87800, + [SMALL_STATE(2254)] = 87867, + [SMALL_STATE(2255)] = 87934, + [SMALL_STATE(2256)] = 88001, + [SMALL_STATE(2257)] = 88068, + [SMALL_STATE(2258)] = 88135, + [SMALL_STATE(2259)] = 88202, + [SMALL_STATE(2260)] = 88269, + [SMALL_STATE(2261)] = 88336, + [SMALL_STATE(2262)] = 88405, + [SMALL_STATE(2263)] = 88474, + [SMALL_STATE(2264)] = 88545, + [SMALL_STATE(2265)] = 88612, + [SMALL_STATE(2266)] = 88683, + [SMALL_STATE(2267)] = 88750, + [SMALL_STATE(2268)] = 88817, + [SMALL_STATE(2269)] = 88884, + [SMALL_STATE(2270)] = 88955, + [SMALL_STATE(2271)] = 89022, + [SMALL_STATE(2272)] = 89089, + [SMALL_STATE(2273)] = 89156, + [SMALL_STATE(2274)] = 89223, + [SMALL_STATE(2275)] = 89290, + [SMALL_STATE(2276)] = 89357, + [SMALL_STATE(2277)] = 89426, + [SMALL_STATE(2278)] = 89493, + [SMALL_STATE(2279)] = 89564, + [SMALL_STATE(2280)] = 89635, + [SMALL_STATE(2281)] = 89714, + [SMALL_STATE(2282)] = 89795, + [SMALL_STATE(2283)] = 89876, + [SMALL_STATE(2284)] = 89963, + [SMALL_STATE(2285)] = 90054, + [SMALL_STATE(2286)] = 90147, + [SMALL_STATE(2287)] = 90230, + [SMALL_STATE(2288)] = 90319, + [SMALL_STATE(2289)] = 90422, + [SMALL_STATE(2290)] = 90517, + [SMALL_STATE(2291)] = 90590, + [SMALL_STATE(2292)] = 90665, + [SMALL_STATE(2293)] = 90772, + [SMALL_STATE(2294)] = 90879, + [SMALL_STATE(2295)] = 90978, + [SMALL_STATE(2296)] = 91083, + [SMALL_STATE(2297)] = 91184, + [SMALL_STATE(2298)] = 91283, + [SMALL_STATE(2299)] = 91378, + [SMALL_STATE(2300)] = 91471, + [SMALL_STATE(2301)] = 91562, + [SMALL_STATE(2302)] = 91649, + [SMALL_STATE(2303)] = 91730, + [SMALL_STATE(2304)] = 91811, + [SMALL_STATE(2305)] = 91890, + [SMALL_STATE(2306)] = 91991, + [SMALL_STATE(2307)] = 92096, + [SMALL_STATE(2308)] = 92163, + [SMALL_STATE(2309)] = 92270, + [SMALL_STATE(2310)] = 92377, + [SMALL_STATE(2311)] = 92452, + [SMALL_STATE(2312)] = 92519, + [SMALL_STATE(2313)] = 92592, + [SMALL_STATE(2314)] = 92659, + [SMALL_STATE(2315)] = 92762, + [SMALL_STATE(2316)] = 92851, + [SMALL_STATE(2317)] = 92934, + [SMALL_STATE(2318)] = 93001, + [SMALL_STATE(2319)] = 93068, + [SMALL_STATE(2320)] = 93135, + [SMALL_STATE(2321)] = 93202, + [SMALL_STATE(2322)] = 93269, + [SMALL_STATE(2323)] = 93336, + [SMALL_STATE(2324)] = 93403, + [SMALL_STATE(2325)] = 93470, + [SMALL_STATE(2326)] = 93541, + [SMALL_STATE(2327)] = 93612, + [SMALL_STATE(2328)] = 93679, + [SMALL_STATE(2329)] = 93750, + [SMALL_STATE(2330)] = 93821, + [SMALL_STATE(2331)] = 93892, + [SMALL_STATE(2332)] = 94005, + [SMALL_STATE(2333)] = 94076, + [SMALL_STATE(2334)] = 94145, + [SMALL_STATE(2335)] = 94212, + [SMALL_STATE(2336)] = 94281, + [SMALL_STATE(2337)] = 94350, + [SMALL_STATE(2338)] = 94419, + [SMALL_STATE(2339)] = 94486, + [SMALL_STATE(2340)] = 94555, + [SMALL_STATE(2341)] = 94622, + [SMALL_STATE(2342)] = 94689, + [SMALL_STATE(2343)] = 94756, + [SMALL_STATE(2344)] = 94823, + [SMALL_STATE(2345)] = 94890, + [SMALL_STATE(2346)] = 94957, + [SMALL_STATE(2347)] = 95028, + [SMALL_STATE(2348)] = 95137, + [SMALL_STATE(2349)] = 95204, + [SMALL_STATE(2350)] = 95271, + [SMALL_STATE(2351)] = 95338, + [SMALL_STATE(2352)] = 95405, + [SMALL_STATE(2353)] = 95472, + [SMALL_STATE(2354)] = 95539, + [SMALL_STATE(2355)] = 95608, + [SMALL_STATE(2356)] = 95677, + [SMALL_STATE(2357)] = 95746, + [SMALL_STATE(2358)] = 95815, + [SMALL_STATE(2359)] = 95884, + [SMALL_STATE(2360)] = 95951, + [SMALL_STATE(2361)] = 96020, + [SMALL_STATE(2362)] = 96089, + [SMALL_STATE(2363)] = 96158, + [SMALL_STATE(2364)] = 96229, + [SMALL_STATE(2365)] = 96298, + [SMALL_STATE(2366)] = 96407, + [SMALL_STATE(2367)] = 96474, + [SMALL_STATE(2368)] = 96543, + [SMALL_STATE(2369)] = 96612, + [SMALL_STATE(2370)] = 96681, + [SMALL_STATE(2371)] = 96750, + [SMALL_STATE(2372)] = 96819, + [SMALL_STATE(2373)] = 96888, + [SMALL_STATE(2374)] = 96957, + [SMALL_STATE(2375)] = 97026, + [SMALL_STATE(2376)] = 97097, + [SMALL_STATE(2377)] = 97164, + [SMALL_STATE(2378)] = 97231, + [SMALL_STATE(2379)] = 97300, + [SMALL_STATE(2380)] = 97369, + [SMALL_STATE(2381)] = 97436, + [SMALL_STATE(2382)] = 97503, + [SMALL_STATE(2383)] = 97570, + [SMALL_STATE(2384)] = 97637, + [SMALL_STATE(2385)] = 97704, + [SMALL_STATE(2386)] = 97771, + [SMALL_STATE(2387)] = 97838, + [SMALL_STATE(2388)] = 97905, + [SMALL_STATE(2389)] = 97972, + [SMALL_STATE(2390)] = 98039, + [SMALL_STATE(2391)] = 98106, + [SMALL_STATE(2392)] = 98173, + [SMALL_STATE(2393)] = 98240, + [SMALL_STATE(2394)] = 98307, + [SMALL_STATE(2395)] = 98374, + [SMALL_STATE(2396)] = 98441, + [SMALL_STATE(2397)] = 98508, + [SMALL_STATE(2398)] = 98575, + [SMALL_STATE(2399)] = 98644, + [SMALL_STATE(2400)] = 98713, + [SMALL_STATE(2401)] = 98782, + [SMALL_STATE(2402)] = 98891, + [SMALL_STATE(2403)] = 98960, + [SMALL_STATE(2404)] = 99029, + [SMALL_STATE(2405)] = 99098, + [SMALL_STATE(2406)] = 99167, + [SMALL_STATE(2407)] = 99236, + [SMALL_STATE(2408)] = 99305, + [SMALL_STATE(2409)] = 99374, + [SMALL_STATE(2410)] = 99443, + [SMALL_STATE(2411)] = 99514, + [SMALL_STATE(2412)] = 99583, + [SMALL_STATE(2413)] = 99652, + [SMALL_STATE(2414)] = 99723, + [SMALL_STATE(2415)] = 99792, + [SMALL_STATE(2416)] = 99863, + [SMALL_STATE(2417)] = 99932, + [SMALL_STATE(2418)] = 100001, + [SMALL_STATE(2419)] = 100070, + [SMALL_STATE(2420)] = 100137, + [SMALL_STATE(2421)] = 100206, + [SMALL_STATE(2422)] = 100275, + [SMALL_STATE(2423)] = 100344, + [SMALL_STATE(2424)] = 100411, + [SMALL_STATE(2425)] = 100478, + [SMALL_STATE(2426)] = 100545, + [SMALL_STATE(2427)] = 100612, + [SMALL_STATE(2428)] = 100679, + [SMALL_STATE(2429)] = 100746, + [SMALL_STATE(2430)] = 100813, + [SMALL_STATE(2431)] = 100880, + [SMALL_STATE(2432)] = 100947, + [SMALL_STATE(2433)] = 101014, + [SMALL_STATE(2434)] = 101081, + [SMALL_STATE(2435)] = 101148, + [SMALL_STATE(2436)] = 101215, + [SMALL_STATE(2437)] = 101282, + [SMALL_STATE(2438)] = 101349, + [SMALL_STATE(2439)] = 101416, + [SMALL_STATE(2440)] = 101487, + [SMALL_STATE(2441)] = 101554, + [SMALL_STATE(2442)] = 101621, + [SMALL_STATE(2443)] = 101688, + [SMALL_STATE(2444)] = 101755, + [SMALL_STATE(2445)] = 101822, + [SMALL_STATE(2446)] = 101889, + [SMALL_STATE(2447)] = 101956, + [SMALL_STATE(2448)] = 102023, + [SMALL_STATE(2449)] = 102090, + [SMALL_STATE(2450)] = 102157, + [SMALL_STATE(2451)] = 102224, + [SMALL_STATE(2452)] = 102291, + [SMALL_STATE(2453)] = 102358, + [SMALL_STATE(2454)] = 102425, + [SMALL_STATE(2455)] = 102492, + [SMALL_STATE(2456)] = 102559, + [SMALL_STATE(2457)] = 102628, + [SMALL_STATE(2458)] = 102695, + [SMALL_STATE(2459)] = 102762, + [SMALL_STATE(2460)] = 102829, + [SMALL_STATE(2461)] = 102896, + [SMALL_STATE(2462)] = 102965, + [SMALL_STATE(2463)] = 103032, + [SMALL_STATE(2464)] = 103099, + [SMALL_STATE(2465)] = 103166, + [SMALL_STATE(2466)] = 103233, + [SMALL_STATE(2467)] = 103300, + [SMALL_STATE(2468)] = 103367, + [SMALL_STATE(2469)] = 103434, + [SMALL_STATE(2470)] = 103501, + [SMALL_STATE(2471)] = 103568, + [SMALL_STATE(2472)] = 103635, + [SMALL_STATE(2473)] = 103702, + [SMALL_STATE(2474)] = 103769, + [SMALL_STATE(2475)] = 103838, + [SMALL_STATE(2476)] = 103907, + [SMALL_STATE(2477)] = 103976, + [SMALL_STATE(2478)] = 104045, + [SMALL_STATE(2479)] = 104114, + [SMALL_STATE(2480)] = 104183, + [SMALL_STATE(2481)] = 104252, + [SMALL_STATE(2482)] = 104321, + [SMALL_STATE(2483)] = 104390, + [SMALL_STATE(2484)] = 104459, + [SMALL_STATE(2485)] = 104528, + [SMALL_STATE(2486)] = 104597, + [SMALL_STATE(2487)] = 104666, + [SMALL_STATE(2488)] = 104735, + [SMALL_STATE(2489)] = 104804, + [SMALL_STATE(2490)] = 104873, + [SMALL_STATE(2491)] = 104942, + [SMALL_STATE(2492)] = 105011, + [SMALL_STATE(2493)] = 105080, + [SMALL_STATE(2494)] = 105149, + [SMALL_STATE(2495)] = 105216, + [SMALL_STATE(2496)] = 105283, + [SMALL_STATE(2497)] = 105350, + [SMALL_STATE(2498)] = 105417, + [SMALL_STATE(2499)] = 105484, + [SMALL_STATE(2500)] = 105551, + [SMALL_STATE(2501)] = 105618, + [SMALL_STATE(2502)] = 105685, + [SMALL_STATE(2503)] = 105752, + [SMALL_STATE(2504)] = 105821, + [SMALL_STATE(2505)] = 105890, + [SMALL_STATE(2506)] = 105959, + [SMALL_STATE(2507)] = 106028, + [SMALL_STATE(2508)] = 106097, + [SMALL_STATE(2509)] = 106166, + [SMALL_STATE(2510)] = 106235, + [SMALL_STATE(2511)] = 106304, + [SMALL_STATE(2512)] = 106373, + [SMALL_STATE(2513)] = 106442, + [SMALL_STATE(2514)] = 106511, + [SMALL_STATE(2515)] = 106580, + [SMALL_STATE(2516)] = 106649, + [SMALL_STATE(2517)] = 106718, + [SMALL_STATE(2518)] = 106787, + [SMALL_STATE(2519)] = 106856, + [SMALL_STATE(2520)] = 106925, + [SMALL_STATE(2521)] = 106994, + [SMALL_STATE(2522)] = 107061, + [SMALL_STATE(2523)] = 107132, + [SMALL_STATE(2524)] = 107201, + [SMALL_STATE(2525)] = 107270, + [SMALL_STATE(2526)] = 107337, + [SMALL_STATE(2527)] = 107404, + [SMALL_STATE(2528)] = 107471, + [SMALL_STATE(2529)] = 107538, + [SMALL_STATE(2530)] = 107605, + [SMALL_STATE(2531)] = 107672, + [SMALL_STATE(2532)] = 107739, + [SMALL_STATE(2533)] = 107806, + [SMALL_STATE(2534)] = 107873, + [SMALL_STATE(2535)] = 107940, + [SMALL_STATE(2536)] = 108007, + [SMALL_STATE(2537)] = 108074, + [SMALL_STATE(2538)] = 108141, + [SMALL_STATE(2539)] = 108208, + [SMALL_STATE(2540)] = 108275, + [SMALL_STATE(2541)] = 108342, + [SMALL_STATE(2542)] = 108409, + [SMALL_STATE(2543)] = 108476, + [SMALL_STATE(2544)] = 108543, + [SMALL_STATE(2545)] = 108610, + [SMALL_STATE(2546)] = 108677, + [SMALL_STATE(2547)] = 108744, + [SMALL_STATE(2548)] = 108811, + [SMALL_STATE(2549)] = 108878, + [SMALL_STATE(2550)] = 108945, + [SMALL_STATE(2551)] = 109012, + [SMALL_STATE(2552)] = 109079, + [SMALL_STATE(2553)] = 109146, + [SMALL_STATE(2554)] = 109213, + [SMALL_STATE(2555)] = 109280, + [SMALL_STATE(2556)] = 109347, + [SMALL_STATE(2557)] = 109414, + [SMALL_STATE(2558)] = 109481, + [SMALL_STATE(2559)] = 109548, + [SMALL_STATE(2560)] = 109615, + [SMALL_STATE(2561)] = 109682, + [SMALL_STATE(2562)] = 109749, + [SMALL_STATE(2563)] = 109816, + [SMALL_STATE(2564)] = 109883, + [SMALL_STATE(2565)] = 109950, + [SMALL_STATE(2566)] = 110017, + [SMALL_STATE(2567)] = 110084, + [SMALL_STATE(2568)] = 110151, + [SMALL_STATE(2569)] = 110218, + [SMALL_STATE(2570)] = 110285, + [SMALL_STATE(2571)] = 110352, + [SMALL_STATE(2572)] = 110419, + [SMALL_STATE(2573)] = 110486, + [SMALL_STATE(2574)] = 110553, + [SMALL_STATE(2575)] = 110620, + [SMALL_STATE(2576)] = 110687, + [SMALL_STATE(2577)] = 110754, + [SMALL_STATE(2578)] = 110821, + [SMALL_STATE(2579)] = 110888, + [SMALL_STATE(2580)] = 110955, + [SMALL_STATE(2581)] = 111022, + [SMALL_STATE(2582)] = 111089, + [SMALL_STATE(2583)] = 111156, + [SMALL_STATE(2584)] = 111223, + [SMALL_STATE(2585)] = 111290, + [SMALL_STATE(2586)] = 111357, + [SMALL_STATE(2587)] = 111424, + [SMALL_STATE(2588)] = 111491, + [SMALL_STATE(2589)] = 111558, + [SMALL_STATE(2590)] = 111625, + [SMALL_STATE(2591)] = 111692, + [SMALL_STATE(2592)] = 111759, + [SMALL_STATE(2593)] = 111826, + [SMALL_STATE(2594)] = 111893, + [SMALL_STATE(2595)] = 111960, + [SMALL_STATE(2596)] = 112029, + [SMALL_STATE(2597)] = 112098, + [SMALL_STATE(2598)] = 112167, + [SMALL_STATE(2599)] = 112236, + [SMALL_STATE(2600)] = 112305, + [SMALL_STATE(2601)] = 112374, + [SMALL_STATE(2602)] = 112443, + [SMALL_STATE(2603)] = 112512, + [SMALL_STATE(2604)] = 112581, + [SMALL_STATE(2605)] = 112650, + [SMALL_STATE(2606)] = 112719, + [SMALL_STATE(2607)] = 112788, + [SMALL_STATE(2608)] = 112857, + [SMALL_STATE(2609)] = 112926, + [SMALL_STATE(2610)] = 112995, + [SMALL_STATE(2611)] = 113064, + [SMALL_STATE(2612)] = 113133, + [SMALL_STATE(2613)] = 113202, + [SMALL_STATE(2614)] = 113271, + [SMALL_STATE(2615)] = 113340, + [SMALL_STATE(2616)] = 113407, + [SMALL_STATE(2617)] = 113474, + [SMALL_STATE(2618)] = 113541, + [SMALL_STATE(2619)] = 113608, + [SMALL_STATE(2620)] = 113675, + [SMALL_STATE(2621)] = 113742, + [SMALL_STATE(2622)] = 113815, + [SMALL_STATE(2623)] = 113882, + [SMALL_STATE(2624)] = 113991, + [SMALL_STATE(2625)] = 114064, + [SMALL_STATE(2626)] = 114131, + [SMALL_STATE(2627)] = 114198, + [SMALL_STATE(2628)] = 114307, + [SMALL_STATE(2629)] = 114420, + [SMALL_STATE(2630)] = 114529, + [SMALL_STATE(2631)] = 114598, + [SMALL_STATE(2632)] = 114665, + [SMALL_STATE(2633)] = 114732, + [SMALL_STATE(2634)] = 114799, + [SMALL_STATE(2635)] = 114866, + [SMALL_STATE(2636)] = 114933, + [SMALL_STATE(2637)] = 115000, + [SMALL_STATE(2638)] = 115067, + [SMALL_STATE(2639)] = 115134, + [SMALL_STATE(2640)] = 115201, + [SMALL_STATE(2641)] = 115268, + [SMALL_STATE(2642)] = 115337, + [SMALL_STATE(2643)] = 115450, + [SMALL_STATE(2644)] = 115523, + [SMALL_STATE(2645)] = 115596, + [SMALL_STATE(2646)] = 115669, + [SMALL_STATE(2647)] = 115736, + [SMALL_STATE(2648)] = 115809, + [SMALL_STATE(2649)] = 115882, + [SMALL_STATE(2650)] = 115949, + [SMALL_STATE(2651)] = 116018, + [SMALL_STATE(2652)] = 116085, + [SMALL_STATE(2653)] = 116156, + [SMALL_STATE(2654)] = 116225, + [SMALL_STATE(2655)] = 116294, + [SMALL_STATE(2656)] = 116403, + [SMALL_STATE(2657)] = 116469, + [SMALL_STATE(2658)] = 116535, + [SMALL_STATE(2659)] = 116601, + [SMALL_STATE(2660)] = 116667, + [SMALL_STATE(2661)] = 116733, + [SMALL_STATE(2662)] = 116841, + [SMALL_STATE(2663)] = 116907, + [SMALL_STATE(2664)] = 116977, + [SMALL_STATE(2665)] = 117043, + [SMALL_STATE(2666)] = 117109, + [SMALL_STATE(2667)] = 117179, + [SMALL_STATE(2668)] = 117249, + [SMALL_STATE(2669)] = 117365, + [SMALL_STATE(2670)] = 117435, + [SMALL_STATE(2671)] = 117505, + [SMALL_STATE(2672)] = 117575, + [SMALL_STATE(2673)] = 117641, + [SMALL_STATE(2674)] = 117711, + [SMALL_STATE(2675)] = 117777, + [SMALL_STATE(2676)] = 117847, + [SMALL_STATE(2677)] = 117913, + [SMALL_STATE(2678)] = 117979, + [SMALL_STATE(2679)] = 118045, + [SMALL_STATE(2680)] = 118111, + [SMALL_STATE(2681)] = 118177, + [SMALL_STATE(2682)] = 118243, + [SMALL_STATE(2683)] = 118309, + [SMALL_STATE(2684)] = 118375, + [SMALL_STATE(2685)] = 118445, + [SMALL_STATE(2686)] = 118511, + [SMALL_STATE(2687)] = 118577, + [SMALL_STATE(2688)] = 118643, + [SMALL_STATE(2689)] = 118709, + [SMALL_STATE(2690)] = 118775, + [SMALL_STATE(2691)] = 118841, + [SMALL_STATE(2692)] = 118957, + [SMALL_STATE(2693)] = 119023, + [SMALL_STATE(2694)] = 119089, + [SMALL_STATE(2695)] = 119155, + [SMALL_STATE(2696)] = 119221, + [SMALL_STATE(2697)] = 119287, + [SMALL_STATE(2698)] = 119357, + [SMALL_STATE(2699)] = 119423, + [SMALL_STATE(2700)] = 119489, + [SMALL_STATE(2701)] = 119555, + [SMALL_STATE(2702)] = 119671, + [SMALL_STATE(2703)] = 119741, + [SMALL_STATE(2704)] = 119811, + [SMALL_STATE(2705)] = 119881, + [SMALL_STATE(2706)] = 119951, + [SMALL_STATE(2707)] = 120021, + [SMALL_STATE(2708)] = 120133, + [SMALL_STATE(2709)] = 120199, + [SMALL_STATE(2710)] = 120315, + [SMALL_STATE(2711)] = 120381, + [SMALL_STATE(2712)] = 120447, + [SMALL_STATE(2713)] = 120517, + [SMALL_STATE(2714)] = 120583, + [SMALL_STATE(2715)] = 120649, + [SMALL_STATE(2716)] = 120715, + [SMALL_STATE(2717)] = 120781, + [SMALL_STATE(2718)] = 120847, + [SMALL_STATE(2719)] = 120913, + [SMALL_STATE(2720)] = 120979, + [SMALL_STATE(2721)] = 121045, + [SMALL_STATE(2722)] = 121111, + [SMALL_STATE(2723)] = 121177, + [SMALL_STATE(2724)] = 121243, + [SMALL_STATE(2725)] = 121309, + [SMALL_STATE(2726)] = 121375, + [SMALL_STATE(2727)] = 121441, + [SMALL_STATE(2728)] = 121507, + [SMALL_STATE(2729)] = 121573, + [SMALL_STATE(2730)] = 121639, + [SMALL_STATE(2731)] = 121705, + [SMALL_STATE(2732)] = 121771, + [SMALL_STATE(2733)] = 121837, + [SMALL_STATE(2734)] = 121907, + [SMALL_STATE(2735)] = 121973, + [SMALL_STATE(2736)] = 122089, + [SMALL_STATE(2737)] = 122159, + [SMALL_STATE(2738)] = 122229, + [SMALL_STATE(2739)] = 122295, + [SMALL_STATE(2740)] = 122361, + [SMALL_STATE(2741)] = 122427, + [SMALL_STATE(2742)] = 122493, + [SMALL_STATE(2743)] = 122559, + [SMALL_STATE(2744)] = 122629, + [SMALL_STATE(2745)] = 122695, + [SMALL_STATE(2746)] = 122761, + [SMALL_STATE(2747)] = 122827, + [SMALL_STATE(2748)] = 122895, + [SMALL_STATE(2749)] = 122961, + [SMALL_STATE(2750)] = 123027, + [SMALL_STATE(2751)] = 123093, + [SMALL_STATE(2752)] = 123163, + [SMALL_STATE(2753)] = 123231, + [SMALL_STATE(2754)] = 123299, + [SMALL_STATE(2755)] = 123367, + [SMALL_STATE(2756)] = 123435, + [SMALL_STATE(2757)] = 123503, + [SMALL_STATE(2758)] = 123571, + [SMALL_STATE(2759)] = 123639, + [SMALL_STATE(2760)] = 123705, + [SMALL_STATE(2761)] = 123771, + [SMALL_STATE(2762)] = 123837, + [SMALL_STATE(2763)] = 123903, + [SMALL_STATE(2764)] = 123969, + [SMALL_STATE(2765)] = 124035, + [SMALL_STATE(2766)] = 124101, + [SMALL_STATE(2767)] = 124167, + [SMALL_STATE(2768)] = 124233, + [SMALL_STATE(2769)] = 124299, + [SMALL_STATE(2770)] = 124367, + [SMALL_STATE(2771)] = 124435, + [SMALL_STATE(2772)] = 124503, + [SMALL_STATE(2773)] = 124571, + [SMALL_STATE(2774)] = 124639, + [SMALL_STATE(2775)] = 124707, + [SMALL_STATE(2776)] = 124775, + [SMALL_STATE(2777)] = 124843, + [SMALL_STATE(2778)] = 124911, + [SMALL_STATE(2779)] = 124979, + [SMALL_STATE(2780)] = 125045, + [SMALL_STATE(2781)] = 125111, + [SMALL_STATE(2782)] = 125177, + [SMALL_STATE(2783)] = 125243, + [SMALL_STATE(2784)] = 125309, + [SMALL_STATE(2785)] = 125375, + [SMALL_STATE(2786)] = 125441, + [SMALL_STATE(2787)] = 125507, + [SMALL_STATE(2788)] = 125573, + [SMALL_STATE(2789)] = 125639, + [SMALL_STATE(2790)] = 125705, + [SMALL_STATE(2791)] = 125771, + [SMALL_STATE(2792)] = 125837, + [SMALL_STATE(2793)] = 125903, + [SMALL_STATE(2794)] = 125969, + [SMALL_STATE(2795)] = 126035, + [SMALL_STATE(2796)] = 126101, + [SMALL_STATE(2797)] = 126167, + [SMALL_STATE(2798)] = 126233, + [SMALL_STATE(2799)] = 126299, + [SMALL_STATE(2800)] = 126365, + [SMALL_STATE(2801)] = 126431, + [SMALL_STATE(2802)] = 126497, + [SMALL_STATE(2803)] = 126563, + [SMALL_STATE(2804)] = 126629, + [SMALL_STATE(2805)] = 126695, + [SMALL_STATE(2806)] = 126761, + [SMALL_STATE(2807)] = 126827, + [SMALL_STATE(2808)] = 126893, + [SMALL_STATE(2809)] = 126959, + [SMALL_STATE(2810)] = 127025, + [SMALL_STATE(2811)] = 127091, + [SMALL_STATE(2812)] = 127157, + [SMALL_STATE(2813)] = 127223, + [SMALL_STATE(2814)] = 127289, + [SMALL_STATE(2815)] = 127355, + [SMALL_STATE(2816)] = 127421, + [SMALL_STATE(2817)] = 127529, + [SMALL_STATE(2818)] = 127595, + [SMALL_STATE(2819)] = 127661, + [SMALL_STATE(2820)] = 127727, + [SMALL_STATE(2821)] = 127793, + [SMALL_STATE(2822)] = 127859, + [SMALL_STATE(2823)] = 127925, + [SMALL_STATE(2824)] = 127991, + [SMALL_STATE(2825)] = 128057, + [SMALL_STATE(2826)] = 128123, + [SMALL_STATE(2827)] = 128189, + [SMALL_STATE(2828)] = 128255, + [SMALL_STATE(2829)] = 128371, + [SMALL_STATE(2830)] = 128449, + [SMALL_STATE(2831)] = 128515, + [SMALL_STATE(2832)] = 128581, + [SMALL_STATE(2833)] = 128647, + [SMALL_STATE(2834)] = 128713, + [SMALL_STATE(2835)] = 128793, + [SMALL_STATE(2836)] = 128901, + [SMALL_STATE(2837)] = 128967, + [SMALL_STATE(2838)] = 129033, + [SMALL_STATE(2839)] = 129099, + [SMALL_STATE(2840)] = 129165, + [SMALL_STATE(2841)] = 129231, + [SMALL_STATE(2842)] = 129297, + [SMALL_STATE(2843)] = 129363, + [SMALL_STATE(2844)] = 129429, + [SMALL_STATE(2845)] = 129495, + [SMALL_STATE(2846)] = 129561, + [SMALL_STATE(2847)] = 129631, + [SMALL_STATE(2848)] = 129697, + [SMALL_STATE(2849)] = 129763, + [SMALL_STATE(2850)] = 129829, + [SMALL_STATE(2851)] = 129895, + [SMALL_STATE(2852)] = 130003, + [SMALL_STATE(2853)] = 130069, + [SMALL_STATE(2854)] = 130135, + [SMALL_STATE(2855)] = 130201, + [SMALL_STATE(2856)] = 130271, + [SMALL_STATE(2857)] = 130337, + [SMALL_STATE(2858)] = 130403, + [SMALL_STATE(2859)] = 130473, + [SMALL_STATE(2860)] = 130539, + [SMALL_STATE(2861)] = 130605, + [SMALL_STATE(2862)] = 130671, + [SMALL_STATE(2863)] = 130737, + [SMALL_STATE(2864)] = 130803, + [SMALL_STATE(2865)] = 130911, + [SMALL_STATE(2866)] = 131019, + [SMALL_STATE(2867)] = 131127, + [SMALL_STATE(2868)] = 131197, + [SMALL_STATE(2869)] = 131265, + [SMALL_STATE(2870)] = 131333, + [SMALL_STATE(2871)] = 131399, + [SMALL_STATE(2872)] = 131465, + [SMALL_STATE(2873)] = 131573, + [SMALL_STATE(2874)] = 131639, + [SMALL_STATE(2875)] = 131747, + [SMALL_STATE(2876)] = 131813, + [SMALL_STATE(2877)] = 131879, + [SMALL_STATE(2878)] = 131945, + [SMALL_STATE(2879)] = 132017, + [SMALL_STATE(2880)] = 132089, + [SMALL_STATE(2881)] = 132155, + [SMALL_STATE(2882)] = 132227, + [SMALL_STATE(2883)] = 132299, + [SMALL_STATE(2884)] = 132371, + [SMALL_STATE(2885)] = 132437, + [SMALL_STATE(2886)] = 132503, + [SMALL_STATE(2887)] = 132615, + [SMALL_STATE(2888)] = 132681, + [SMALL_STATE(2889)] = 132747, + [SMALL_STATE(2890)] = 132813, + [SMALL_STATE(2891)] = 132879, + [SMALL_STATE(2892)] = 132945, + [SMALL_STATE(2893)] = 133011, + [SMALL_STATE(2894)] = 133077, + [SMALL_STATE(2895)] = 133143, + [SMALL_STATE(2896)] = 133209, + [SMALL_STATE(2897)] = 133275, + [SMALL_STATE(2898)] = 133341, + [SMALL_STATE(2899)] = 133407, + [SMALL_STATE(2900)] = 133477, + [SMALL_STATE(2901)] = 133543, + [SMALL_STATE(2902)] = 133609, + [SMALL_STATE(2903)] = 133675, + [SMALL_STATE(2904)] = 133741, + [SMALL_STATE(2905)] = 133807, + [SMALL_STATE(2906)] = 133873, + [SMALL_STATE(2907)] = 133939, + [SMALL_STATE(2908)] = 134005, + [SMALL_STATE(2909)] = 134071, + [SMALL_STATE(2910)] = 134141, + [SMALL_STATE(2911)] = 134207, + [SMALL_STATE(2912)] = 134273, + [SMALL_STATE(2913)] = 134339, + [SMALL_STATE(2914)] = 134405, + [SMALL_STATE(2915)] = 134471, + [SMALL_STATE(2916)] = 134537, + [SMALL_STATE(2917)] = 134603, + [SMALL_STATE(2918)] = 134669, + [SMALL_STATE(2919)] = 134735, + [SMALL_STATE(2920)] = 134803, + [SMALL_STATE(2921)] = 134869, + [SMALL_STATE(2922)] = 134935, + [SMALL_STATE(2923)] = 135001, + [SMALL_STATE(2924)] = 135067, + [SMALL_STATE(2925)] = 135133, + [SMALL_STATE(2926)] = 135199, + [SMALL_STATE(2927)] = 135265, + [SMALL_STATE(2928)] = 135331, + [SMALL_STATE(2929)] = 135397, + [SMALL_STATE(2930)] = 135463, + [SMALL_STATE(2931)] = 135529, + [SMALL_STATE(2932)] = 135595, + [SMALL_STATE(2933)] = 135661, + [SMALL_STATE(2934)] = 135743, + [SMALL_STATE(2935)] = 135831, + [SMALL_STATE(2936)] = 135933, + [SMALL_STATE(2937)] = 135999, + [SMALL_STATE(2938)] = 136071, + [SMALL_STATE(2939)] = 136145, + [SMALL_STATE(2940)] = 136251, + [SMALL_STATE(2941)] = 136357, + [SMALL_STATE(2942)] = 136423, + [SMALL_STATE(2943)] = 136527, + [SMALL_STATE(2944)] = 136627, + [SMALL_STATE(2945)] = 136725, + [SMALL_STATE(2946)] = 136819, + [SMALL_STATE(2947)] = 136911, + [SMALL_STATE(2948)] = 137001, + [SMALL_STATE(2949)] = 137087, + [SMALL_STATE(2950)] = 137167, + [SMALL_STATE(2951)] = 137247, + [SMALL_STATE(2952)] = 137325, + [SMALL_STATE(2953)] = 137395, + [SMALL_STATE(2954)] = 137461, + [SMALL_STATE(2955)] = 137527, + [SMALL_STATE(2956)] = 137593, + [SMALL_STATE(2957)] = 137659, + [SMALL_STATE(2958)] = 137725, + [SMALL_STATE(2959)] = 137811, + [SMALL_STATE(2960)] = 137879, + [SMALL_STATE(2961)] = 137945, + [SMALL_STATE(2962)] = 138013, + [SMALL_STATE(2963)] = 138079, + [SMALL_STATE(2964)] = 138145, + [SMALL_STATE(2965)] = 138215, + [SMALL_STATE(2966)] = 138281, + [SMALL_STATE(2967)] = 138347, + [SMALL_STATE(2968)] = 138429, + [SMALL_STATE(2969)] = 138495, + [SMALL_STATE(2970)] = 138583, + [SMALL_STATE(2971)] = 138685, + [SMALL_STATE(2972)] = 138751, + [SMALL_STATE(2973)] = 138823, + [SMALL_STATE(2974)] = 138897, + [SMALL_STATE(2975)] = 138963, + [SMALL_STATE(2976)] = 139029, + [SMALL_STATE(2977)] = 139135, + [SMALL_STATE(2978)] = 139201, + [SMALL_STATE(2979)] = 139267, + [SMALL_STATE(2980)] = 139333, + [SMALL_STATE(2981)] = 139439, + [SMALL_STATE(2982)] = 139505, + [SMALL_STATE(2983)] = 139609, + [SMALL_STATE(2984)] = 139709, + [SMALL_STATE(2985)] = 139807, + [SMALL_STATE(2986)] = 139901, + [SMALL_STATE(2987)] = 139979, + [SMALL_STATE(2988)] = 140059, + [SMALL_STATE(2989)] = 140139, + [SMALL_STATE(2990)] = 140225, + [SMALL_STATE(2991)] = 140315, + [SMALL_STATE(2992)] = 140381, + [SMALL_STATE(2993)] = 140473, + [SMALL_STATE(2994)] = 140539, + [SMALL_STATE(2995)] = 140605, + [SMALL_STATE(2996)] = 140671, + [SMALL_STATE(2997)] = 140737, + [SMALL_STATE(2998)] = 140803, + [SMALL_STATE(2999)] = 140869, + [SMALL_STATE(3000)] = 140935, + [SMALL_STATE(3001)] = 141001, + [SMALL_STATE(3002)] = 141067, + [SMALL_STATE(3003)] = 141133, + [SMALL_STATE(3004)] = 141199, + [SMALL_STATE(3005)] = 141265, + [SMALL_STATE(3006)] = 141331, + [SMALL_STATE(3007)] = 141397, + [SMALL_STATE(3008)] = 141463, + [SMALL_STATE(3009)] = 141529, + [SMALL_STATE(3010)] = 141623, + [SMALL_STATE(3011)] = 141689, + [SMALL_STATE(3012)] = 141755, + [SMALL_STATE(3013)] = 141821, + [SMALL_STATE(3014)] = 141887, + [SMALL_STATE(3015)] = 141953, + [SMALL_STATE(3016)] = 142019, + [SMALL_STATE(3017)] = 142117, + [SMALL_STATE(3018)] = 142217, + [SMALL_STATE(3019)] = 142321, + [SMALL_STATE(3020)] = 142427, + [SMALL_STATE(3021)] = 142533, + [SMALL_STATE(3022)] = 142607, + [SMALL_STATE(3023)] = 142679, + [SMALL_STATE(3024)] = 142781, + [SMALL_STATE(3025)] = 142869, + [SMALL_STATE(3026)] = 142951, + [SMALL_STATE(3027)] = 143017, + [SMALL_STATE(3028)] = 143083, + [SMALL_STATE(3029)] = 143149, + [SMALL_STATE(3030)] = 143215, + [SMALL_STATE(3031)] = 143281, + [SMALL_STATE(3032)] = 143347, + [SMALL_STATE(3033)] = 143427, + [SMALL_STATE(3034)] = 143497, + [SMALL_STATE(3035)] = 143563, + [SMALL_STATE(3036)] = 143629, + [SMALL_STATE(3037)] = 143695, + [SMALL_STATE(3038)] = 143761, + [SMALL_STATE(3039)] = 143827, + [SMALL_STATE(3040)] = 143893, + [SMALL_STATE(3041)] = 143959, + [SMALL_STATE(3042)] = 144025, + [SMALL_STATE(3043)] = 144091, + [SMALL_STATE(3044)] = 144157, + [SMALL_STATE(3045)] = 144223, + [SMALL_STATE(3046)] = 144293, + [SMALL_STATE(3047)] = 144363, + [SMALL_STATE(3048)] = 144455, + [SMALL_STATE(3049)] = 144521, + [SMALL_STATE(3050)] = 144591, + [SMALL_STATE(3051)] = 144657, + [SMALL_STATE(3052)] = 144723, + [SMALL_STATE(3053)] = 144789, + [SMALL_STATE(3054)] = 144855, + [SMALL_STATE(3055)] = 144921, + [SMALL_STATE(3056)] = 145029, + [SMALL_STATE(3057)] = 145095, + [SMALL_STATE(3058)] = 145161, + [SMALL_STATE(3059)] = 145227, + [SMALL_STATE(3060)] = 145293, + [SMALL_STATE(3061)] = 145359, + [SMALL_STATE(3062)] = 145425, + [SMALL_STATE(3063)] = 145491, + [SMALL_STATE(3064)] = 145557, + [SMALL_STATE(3065)] = 145623, + [SMALL_STATE(3066)] = 145689, + [SMALL_STATE(3067)] = 145755, + [SMALL_STATE(3068)] = 145821, + [SMALL_STATE(3069)] = 145887, + [SMALL_STATE(3070)] = 145953, + [SMALL_STATE(3071)] = 146019, + [SMALL_STATE(3072)] = 146089, + [SMALL_STATE(3073)] = 146155, + [SMALL_STATE(3074)] = 146221, + [SMALL_STATE(3075)] = 146287, + [SMALL_STATE(3076)] = 146353, + [SMALL_STATE(3077)] = 146419, + [SMALL_STATE(3078)] = 146485, + [SMALL_STATE(3079)] = 146551, + [SMALL_STATE(3080)] = 146617, + [SMALL_STATE(3081)] = 146683, + [SMALL_STATE(3082)] = 146749, + [SMALL_STATE(3083)] = 146815, + [SMALL_STATE(3084)] = 146881, + [SMALL_STATE(3085)] = 146947, + [SMALL_STATE(3086)] = 147013, + [SMALL_STATE(3087)] = 147079, + [SMALL_STATE(3088)] = 147145, + [SMALL_STATE(3089)] = 147211, + [SMALL_STATE(3090)] = 147277, + [SMALL_STATE(3091)] = 147343, + [SMALL_STATE(3092)] = 147409, + [SMALL_STATE(3093)] = 147475, + [SMALL_STATE(3094)] = 147541, + [SMALL_STATE(3095)] = 147607, + [SMALL_STATE(3096)] = 147673, + [SMALL_STATE(3097)] = 147739, + [SMALL_STATE(3098)] = 147805, + [SMALL_STATE(3099)] = 147871, + [SMALL_STATE(3100)] = 147937, + [SMALL_STATE(3101)] = 148003, + [SMALL_STATE(3102)] = 148093, + [SMALL_STATE(3103)] = 148161, + [SMALL_STATE(3104)] = 148229, + [SMALL_STATE(3105)] = 148297, + [SMALL_STATE(3106)] = 148365, + [SMALL_STATE(3107)] = 148431, + [SMALL_STATE(3108)] = 148539, + [SMALL_STATE(3109)] = 148605, + [SMALL_STATE(3110)] = 148671, + [SMALL_STATE(3111)] = 148741, + [SMALL_STATE(3112)] = 148807, + [SMALL_STATE(3113)] = 148873, + [SMALL_STATE(3114)] = 148939, + [SMALL_STATE(3115)] = 149047, + [SMALL_STATE(3116)] = 149125, + [SMALL_STATE(3117)] = 149191, + [SMALL_STATE(3118)] = 149271, + [SMALL_STATE(3119)] = 149351, + [SMALL_STATE(3120)] = 149437, + [SMALL_STATE(3121)] = 149527, + [SMALL_STATE(3122)] = 149619, + [SMALL_STATE(3123)] = 149713, + [SMALL_STATE(3124)] = 149811, + [SMALL_STATE(3125)] = 149911, + [SMALL_STATE(3126)] = 150015, + [SMALL_STATE(3127)] = 150121, + [SMALL_STATE(3128)] = 150227, + [SMALL_STATE(3129)] = 150301, + [SMALL_STATE(3130)] = 150373, + [SMALL_STATE(3131)] = 150475, + [SMALL_STATE(3132)] = 150563, + [SMALL_STATE(3133)] = 150645, + [SMALL_STATE(3134)] = 150713, + [SMALL_STATE(3135)] = 150781, + [SMALL_STATE(3136)] = 150849, + [SMALL_STATE(3137)] = 150915, + [SMALL_STATE(3138)] = 150981, + [SMALL_STATE(3139)] = 151047, + [SMALL_STATE(3140)] = 151113, + [SMALL_STATE(3141)] = 151181, + [SMALL_STATE(3142)] = 151249, + [SMALL_STATE(3143)] = 151317, + [SMALL_STATE(3144)] = 151385, + [SMALL_STATE(3145)] = 151451, + [SMALL_STATE(3146)] = 151517, + [SMALL_STATE(3147)] = 151587, + [SMALL_STATE(3148)] = 151653, + [SMALL_STATE(3149)] = 151719, + [SMALL_STATE(3150)] = 151787, + [SMALL_STATE(3151)] = 151855, + [SMALL_STATE(3152)] = 151921, + [SMALL_STATE(3153)] = 151987, + [SMALL_STATE(3154)] = 152053, + [SMALL_STATE(3155)] = 152121, + [SMALL_STATE(3156)] = 152187, + [SMALL_STATE(3157)] = 152255, + [SMALL_STATE(3158)] = 152323, + [SMALL_STATE(3159)] = 152389, + [SMALL_STATE(3160)] = 152455, + [SMALL_STATE(3161)] = 152523, + [SMALL_STATE(3162)] = 152589, + [SMALL_STATE(3163)] = 152659, + [SMALL_STATE(3164)] = 152725, + [SMALL_STATE(3165)] = 152793, + [SMALL_STATE(3166)] = 152859, + [SMALL_STATE(3167)] = 152925, + [SMALL_STATE(3168)] = 152991, + [SMALL_STATE(3169)] = 153057, + [SMALL_STATE(3170)] = 153123, + [SMALL_STATE(3171)] = 153189, + [SMALL_STATE(3172)] = 153257, + [SMALL_STATE(3173)] = 153325, + [SMALL_STATE(3174)] = 153393, + [SMALL_STATE(3175)] = 153459, + [SMALL_STATE(3176)] = 153525, + [SMALL_STATE(3177)] = 153591, + [SMALL_STATE(3178)] = 153659, + [SMALL_STATE(3179)] = 153725, + [SMALL_STATE(3180)] = 153791, + [SMALL_STATE(3181)] = 153857, + [SMALL_STATE(3182)] = 153923, + [SMALL_STATE(3183)] = 153991, + [SMALL_STATE(3184)] = 154059, + [SMALL_STATE(3185)] = 154126, + [SMALL_STATE(3186)] = 154191, + [SMALL_STATE(3187)] = 154256, + [SMALL_STATE(3188)] = 154321, + [SMALL_STATE(3189)] = 154424, + [SMALL_STATE(3190)] = 154529, + [SMALL_STATE(3191)] = 154594, + [SMALL_STATE(3192)] = 154659, + [SMALL_STATE(3193)] = 154724, + [SMALL_STATE(3194)] = 154789, + [SMALL_STATE(3195)] = 154854, + [SMALL_STATE(3196)] = 154919, + [SMALL_STATE(3197)] = 154984, + [SMALL_STATE(3198)] = 155051, + [SMALL_STATE(3199)] = 155132, + [SMALL_STATE(3200)] = 155233, + [SMALL_STATE(3201)] = 155298, + [SMALL_STATE(3202)] = 155363, + [SMALL_STATE(3203)] = 155428, + [SMALL_STATE(3204)] = 155493, + [SMALL_STATE(3205)] = 155558, + [SMALL_STATE(3206)] = 155629, + [SMALL_STATE(3207)] = 155702, + [SMALL_STATE(3208)] = 155807, + [SMALL_STATE(3209)] = 155912, + [SMALL_STATE(3210)] = 155977, + [SMALL_STATE(3211)] = 156080, + [SMALL_STATE(3212)] = 156179, + [SMALL_STATE(3213)] = 156276, + [SMALL_STATE(3214)] = 156369, + [SMALL_STATE(3215)] = 156460, + [SMALL_STATE(3216)] = 156549, + [SMALL_STATE(3217)] = 156634, + [SMALL_STATE(3218)] = 156713, + [SMALL_STATE(3219)] = 156792, + [SMALL_STATE(3220)] = 156869, + [SMALL_STATE(3221)] = 156938, + [SMALL_STATE(3222)] = 157007, + [SMALL_STATE(3223)] = 157072, + [SMALL_STATE(3224)] = 157137, + [SMALL_STATE(3225)] = 157202, + [SMALL_STATE(3226)] = 157267, + [SMALL_STATE(3227)] = 157332, + [SMALL_STATE(3228)] = 157397, + [SMALL_STATE(3229)] = 157466, + [SMALL_STATE(3230)] = 157531, + [SMALL_STATE(3231)] = 157596, + [SMALL_STATE(3232)] = 157661, + [SMALL_STATE(3233)] = 157730, + [SMALL_STATE(3234)] = 157795, + [SMALL_STATE(3235)] = 157860, + [SMALL_STATE(3236)] = 157925, + [SMALL_STATE(3237)] = 157990, + [SMALL_STATE(3238)] = 158055, + [SMALL_STATE(3239)] = 158120, + [SMALL_STATE(3240)] = 158187, + [SMALL_STATE(3241)] = 158254, + [SMALL_STATE(3242)] = 158319, + [SMALL_STATE(3243)] = 158384, + [SMALL_STATE(3244)] = 158449, + [SMALL_STATE(3245)] = 158514, + [SMALL_STATE(3246)] = 158583, + [SMALL_STATE(3247)] = 158648, + [SMALL_STATE(3248)] = 158755, + [SMALL_STATE(3249)] = 158820, + [SMALL_STATE(3250)] = 158885, + [SMALL_STATE(3251)] = 158950, + [SMALL_STATE(3252)] = 159015, + [SMALL_STATE(3253)] = 159080, + [SMALL_STATE(3254)] = 159145, + [SMALL_STATE(3255)] = 159210, + [SMALL_STATE(3256)] = 159275, + [SMALL_STATE(3257)] = 159340, + [SMALL_STATE(3258)] = 159405, + [SMALL_STATE(3259)] = 159486, + [SMALL_STATE(3260)] = 159571, + [SMALL_STATE(3261)] = 159670, + [SMALL_STATE(3262)] = 159741, + [SMALL_STATE(3263)] = 159814, + [SMALL_STATE(3264)] = 159879, + [SMALL_STATE(3265)] = 159982, + [SMALL_STATE(3266)] = 160047, + [SMALL_STATE(3267)] = 160134, + [SMALL_STATE(3268)] = 160235, + [SMALL_STATE(3269)] = 160332, + [SMALL_STATE(3270)] = 160427, + [SMALL_STATE(3271)] = 160518, + [SMALL_STATE(3272)] = 160607, + [SMALL_STATE(3273)] = 160694, + [SMALL_STATE(3274)] = 160777, + [SMALL_STATE(3275)] = 160856, + [SMALL_STATE(3276)] = 160935, + [SMALL_STATE(3277)] = 161004, + [SMALL_STATE(3278)] = 161081, + [SMALL_STATE(3279)] = 161146, + [SMALL_STATE(3280)] = 161211, + [SMALL_STATE(3281)] = 161276, + [SMALL_STATE(3282)] = 161341, + [SMALL_STATE(3283)] = 161406, + [SMALL_STATE(3284)] = 161471, + [SMALL_STATE(3285)] = 161538, + [SMALL_STATE(3286)] = 161603, + [SMALL_STATE(3287)] = 161668, + [SMALL_STATE(3288)] = 161737, + [SMALL_STATE(3289)] = 161804, + [SMALL_STATE(3290)] = 161871, + [SMALL_STATE(3291)] = 161936, + [SMALL_STATE(3292)] = 162001, + [SMALL_STATE(3293)] = 162066, + [SMALL_STATE(3294)] = 162131, + [SMALL_STATE(3295)] = 162198, + [SMALL_STATE(3296)] = 162263, + [SMALL_STATE(3297)] = 162328, + [SMALL_STATE(3298)] = 162393, + [SMALL_STATE(3299)] = 162458, + [SMALL_STATE(3300)] = 162523, + [SMALL_STATE(3301)] = 162588, + [SMALL_STATE(3302)] = 162653, + [SMALL_STATE(3303)] = 162718, + [SMALL_STATE(3304)] = 162783, + [SMALL_STATE(3305)] = 162848, + [SMALL_STATE(3306)] = 162913, + [SMALL_STATE(3307)] = 162978, + [SMALL_STATE(3308)] = 163043, + [SMALL_STATE(3309)] = 163108, + [SMALL_STATE(3310)] = 163173, + [SMALL_STATE(3311)] = 163238, + [SMALL_STATE(3312)] = 163303, + [SMALL_STATE(3313)] = 163368, + [SMALL_STATE(3314)] = 163433, + [SMALL_STATE(3315)] = 163498, + [SMALL_STATE(3316)] = 163563, + [SMALL_STATE(3317)] = 163628, + [SMALL_STATE(3318)] = 163693, + [SMALL_STATE(3319)] = 163758, + [SMALL_STATE(3320)] = 163823, + [SMALL_STATE(3321)] = 163910, + [SMALL_STATE(3322)] = 163975, + [SMALL_STATE(3323)] = 164040, + [SMALL_STATE(3324)] = 164105, + [SMALL_STATE(3325)] = 164170, + [SMALL_STATE(3326)] = 164235, + [SMALL_STATE(3327)] = 164300, + [SMALL_STATE(3328)] = 164365, + [SMALL_STATE(3329)] = 164430, + [SMALL_STATE(3330)] = 164495, + [SMALL_STATE(3331)] = 164560, + [SMALL_STATE(3332)] = 164625, + [SMALL_STATE(3333)] = 164690, + [SMALL_STATE(3334)] = 164755, + [SMALL_STATE(3335)] = 164820, + [SMALL_STATE(3336)] = 164885, + [SMALL_STATE(3337)] = 164950, + [SMALL_STATE(3338)] = 165015, + [SMALL_STATE(3339)] = 165080, + [SMALL_STATE(3340)] = 165145, + [SMALL_STATE(3341)] = 165210, + [SMALL_STATE(3342)] = 165275, + [SMALL_STATE(3343)] = 165344, + [SMALL_STATE(3344)] = 165409, + [SMALL_STATE(3345)] = 165474, + [SMALL_STATE(3346)] = 165539, + [SMALL_STATE(3347)] = 165604, + [SMALL_STATE(3348)] = 165669, + [SMALL_STATE(3349)] = 165734, + [SMALL_STATE(3350)] = 165799, + [SMALL_STATE(3351)] = 165864, + [SMALL_STATE(3352)] = 165929, + [SMALL_STATE(3353)] = 165994, + [SMALL_STATE(3354)] = 166061, + [SMALL_STATE(3355)] = 166128, + [SMALL_STATE(3356)] = 166195, + [SMALL_STATE(3357)] = 166260, + [SMALL_STATE(3358)] = 166327, + [SMALL_STATE(3359)] = 166396, + [SMALL_STATE(3360)] = 166461, + [SMALL_STATE(3361)] = 166526, + [SMALL_STATE(3362)] = 166595, + [SMALL_STATE(3363)] = 166664, + [SMALL_STATE(3364)] = 166733, + [SMALL_STATE(3365)] = 166800, + [SMALL_STATE(3366)] = 166867, + [SMALL_STATE(3367)] = 166932, + [SMALL_STATE(3368)] = 166997, + [SMALL_STATE(3369)] = 167062, + [SMALL_STATE(3370)] = 167127, + [SMALL_STATE(3371)] = 167192, + [SMALL_STATE(3372)] = 167257, + [SMALL_STATE(3373)] = 167324, + [SMALL_STATE(3374)] = 167393, + [SMALL_STATE(3375)] = 167470, + [SMALL_STATE(3376)] = 167549, + [SMALL_STATE(3377)] = 167628, + [SMALL_STATE(3378)] = 167713, + [SMALL_STATE(3379)] = 167802, + [SMALL_STATE(3380)] = 167893, + [SMALL_STATE(3381)] = 167986, + [SMALL_STATE(3382)] = 168083, + [SMALL_STATE(3383)] = 168182, + [SMALL_STATE(3384)] = 168285, + [SMALL_STATE(3385)] = 168390, + [SMALL_STATE(3386)] = 168495, + [SMALL_STATE(3387)] = 168568, + [SMALL_STATE(3388)] = 168639, + [SMALL_STATE(3389)] = 168740, + [SMALL_STATE(3390)] = 168805, + [SMALL_STATE(3391)] = 168886, + [SMALL_STATE(3392)] = 168951, + [SMALL_STATE(3393)] = 169018, + [SMALL_STATE(3394)] = 169085, + [SMALL_STATE(3395)] = 169152, + [SMALL_STATE(3396)] = 169219, + [SMALL_STATE(3397)] = 169286, + [SMALL_STATE(3398)] = 169353, + [SMALL_STATE(3399)] = 169420, + [SMALL_STATE(3400)] = 169487, + [SMALL_STATE(3401)] = 169552, + [SMALL_STATE(3402)] = 169619, + [SMALL_STATE(3403)] = 169686, + [SMALL_STATE(3404)] = 169753, + [SMALL_STATE(3405)] = 169820, + [SMALL_STATE(3406)] = 169887, + [SMALL_STATE(3407)] = 169954, + [SMALL_STATE(3408)] = 170021, + [SMALL_STATE(3409)] = 170088, + [SMALL_STATE(3410)] = 170155, + [SMALL_STATE(3411)] = 170232, + [SMALL_STATE(3412)] = 170301, + [SMALL_STATE(3413)] = 170380, + [SMALL_STATE(3414)] = 170487, + [SMALL_STATE(3415)] = 170556, + [SMALL_STATE(3416)] = 170621, + [SMALL_STATE(3417)] = 170686, + [SMALL_STATE(3418)] = 170793, + [SMALL_STATE(3419)] = 170878, + [SMALL_STATE(3420)] = 170967, + [SMALL_STATE(3421)] = 171058, + [SMALL_STATE(3422)] = 171151, + [SMALL_STATE(3423)] = 171248, + [SMALL_STATE(3424)] = 171347, + [SMALL_STATE(3425)] = 171450, + [SMALL_STATE(3426)] = 171555, + [SMALL_STATE(3427)] = 171660, + [SMALL_STATE(3428)] = 171725, + [SMALL_STATE(3429)] = 171790, + [SMALL_STATE(3430)] = 171863, + [SMALL_STATE(3431)] = 171928, + [SMALL_STATE(3432)] = 171999, + [SMALL_STATE(3433)] = 172100, + [SMALL_STATE(3434)] = 172187, + [SMALL_STATE(3435)] = 172268, + [SMALL_STATE(3436)] = 172333, + [SMALL_STATE(3437)] = 172398, + [SMALL_STATE(3438)] = 172463, + [SMALL_STATE(3439)] = 172528, + [SMALL_STATE(3440)] = 172593, + [SMALL_STATE(3441)] = 172660, + [SMALL_STATE(3442)] = 172727, + [SMALL_STATE(3443)] = 172794, + [SMALL_STATE(3444)] = 172859, + [SMALL_STATE(3445)] = 172924, + [SMALL_STATE(3446)] = 172989, + [SMALL_STATE(3447)] = 173054, + [SMALL_STATE(3448)] = 173123, + [SMALL_STATE(3449)] = 173188, + [SMALL_STATE(3450)] = 173253, + [SMALL_STATE(3451)] = 173318, + [SMALL_STATE(3452)] = 173383, + [SMALL_STATE(3453)] = 173448, + [SMALL_STATE(3454)] = 173513, + [SMALL_STATE(3455)] = 173578, + [SMALL_STATE(3456)] = 173643, + [SMALL_STATE(3457)] = 173708, + [SMALL_STATE(3458)] = 173773, + [SMALL_STATE(3459)] = 173838, + [SMALL_STATE(3460)] = 173903, + [SMALL_STATE(3461)] = 173968, + [SMALL_STATE(3462)] = 174033, + [SMALL_STATE(3463)] = 174098, + [SMALL_STATE(3464)] = 174163, + [SMALL_STATE(3465)] = 174228, + [SMALL_STATE(3466)] = 174293, + [SMALL_STATE(3467)] = 174358, + [SMALL_STATE(3468)] = 174423, + [SMALL_STATE(3469)] = 174488, + [SMALL_STATE(3470)] = 174553, + [SMALL_STATE(3471)] = 174618, + [SMALL_STATE(3472)] = 174683, + [SMALL_STATE(3473)] = 174748, + [SMALL_STATE(3474)] = 174813, + [SMALL_STATE(3475)] = 174878, + [SMALL_STATE(3476)] = 174943, + [SMALL_STATE(3477)] = 175008, + [SMALL_STATE(3478)] = 175073, + [SMALL_STATE(3479)] = 175138, + [SMALL_STATE(3480)] = 175203, + [SMALL_STATE(3481)] = 175268, + [SMALL_STATE(3482)] = 175347, + [SMALL_STATE(3483)] = 175452, + [SMALL_STATE(3484)] = 175519, + [SMALL_STATE(3485)] = 175588, + [SMALL_STATE(3486)] = 175655, + [SMALL_STATE(3487)] = 175724, + [SMALL_STATE(3488)] = 175831, + [SMALL_STATE(3489)] = 175896, + [SMALL_STATE(3490)] = 175961, + [SMALL_STATE(3491)] = 176026, + [SMALL_STATE(3492)] = 176091, + [SMALL_STATE(3493)] = 176156, + [SMALL_STATE(3494)] = 176221, + [SMALL_STATE(3495)] = 176286, + [SMALL_STATE(3496)] = 176351, + [SMALL_STATE(3497)] = 176416, + [SMALL_STATE(3498)] = 176481, + [SMALL_STATE(3499)] = 176546, + [SMALL_STATE(3500)] = 176611, + [SMALL_STATE(3501)] = 176676, + [SMALL_STATE(3502)] = 176741, + [SMALL_STATE(3503)] = 176806, + [SMALL_STATE(3504)] = 176871, + [SMALL_STATE(3505)] = 176936, + [SMALL_STATE(3506)] = 177001, + [SMALL_STATE(3507)] = 177066, + [SMALL_STATE(3508)] = 177131, + [SMALL_STATE(3509)] = 177196, + [SMALL_STATE(3510)] = 177261, + [SMALL_STATE(3511)] = 177326, + [SMALL_STATE(3512)] = 177391, + [SMALL_STATE(3513)] = 177456, + [SMALL_STATE(3514)] = 177521, + [SMALL_STATE(3515)] = 177586, + [SMALL_STATE(3516)] = 177651, + [SMALL_STATE(3517)] = 177716, + [SMALL_STATE(3518)] = 177781, + [SMALL_STATE(3519)] = 177846, + [SMALL_STATE(3520)] = 177911, + [SMALL_STATE(3521)] = 177978, + [SMALL_STATE(3522)] = 178043, + [SMALL_STATE(3523)] = 178108, + [SMALL_STATE(3524)] = 178173, + [SMALL_STATE(3525)] = 178238, + [SMALL_STATE(3526)] = 178303, + [SMALL_STATE(3527)] = 178368, + [SMALL_STATE(3528)] = 178435, + [SMALL_STATE(3529)] = 178502, + [SMALL_STATE(3530)] = 178569, + [SMALL_STATE(3531)] = 178634, + [SMALL_STATE(3532)] = 178699, + [SMALL_STATE(3533)] = 178766, + [SMALL_STATE(3534)] = 178831, + [SMALL_STATE(3535)] = 178896, + [SMALL_STATE(3536)] = 178961, + [SMALL_STATE(3537)] = 179026, + [SMALL_STATE(3538)] = 179091, + [SMALL_STATE(3539)] = 179156, + [SMALL_STATE(3540)] = 179221, + [SMALL_STATE(3541)] = 179286, + [SMALL_STATE(3542)] = 179351, + [SMALL_STATE(3543)] = 179416, + [SMALL_STATE(3544)] = 179481, + [SMALL_STATE(3545)] = 179546, + [SMALL_STATE(3546)] = 179611, + [SMALL_STATE(3547)] = 179676, + [SMALL_STATE(3548)] = 179741, + [SMALL_STATE(3549)] = 179806, + [SMALL_STATE(3550)] = 179871, + [SMALL_STATE(3551)] = 179936, + [SMALL_STATE(3552)] = 180001, + [SMALL_STATE(3553)] = 180106, + [SMALL_STATE(3554)] = 180171, + [SMALL_STATE(3555)] = 180236, + [SMALL_STATE(3556)] = 180303, + [SMALL_STATE(3557)] = 180368, + [SMALL_STATE(3558)] = 180433, + [SMALL_STATE(3559)] = 180498, + [SMALL_STATE(3560)] = 180563, + [SMALL_STATE(3561)] = 180628, + [SMALL_STATE(3562)] = 180693, + [SMALL_STATE(3563)] = 180758, + [SMALL_STATE(3564)] = 180823, + [SMALL_STATE(3565)] = 180888, + [SMALL_STATE(3566)] = 180953, + [SMALL_STATE(3567)] = 181018, + [SMALL_STATE(3568)] = 181083, + [SMALL_STATE(3569)] = 181148, + [SMALL_STATE(3570)] = 181215, + [SMALL_STATE(3571)] = 181282, + [SMALL_STATE(3572)] = 181349, + [SMALL_STATE(3573)] = 181414, + [SMALL_STATE(3574)] = 181479, + [SMALL_STATE(3575)] = 181544, + [SMALL_STATE(3576)] = 181609, + [SMALL_STATE(3577)] = 181676, + [SMALL_STATE(3578)] = 181743, + [SMALL_STATE(3579)] = 181810, + [SMALL_STATE(3580)] = 181877, + [SMALL_STATE(3581)] = 181944, + [SMALL_STATE(3582)] = 182011, + [SMALL_STATE(3583)] = 182078, + [SMALL_STATE(3584)] = 182145, + [SMALL_STATE(3585)] = 182212, + [SMALL_STATE(3586)] = 182279, + [SMALL_STATE(3587)] = 182346, + [SMALL_STATE(3588)] = 182413, + [SMALL_STATE(3589)] = 182480, + [SMALL_STATE(3590)] = 182547, + [SMALL_STATE(3591)] = 182614, + [SMALL_STATE(3592)] = 182681, + [SMALL_STATE(3593)] = 182748, + [SMALL_STATE(3594)] = 182813, + [SMALL_STATE(3595)] = 182880, + [SMALL_STATE(3596)] = 182945, + [SMALL_STATE(3597)] = 183010, + [SMALL_STATE(3598)] = 183075, + [SMALL_STATE(3599)] = 183140, + [SMALL_STATE(3600)] = 183205, + [SMALL_STATE(3601)] = 183272, + [SMALL_STATE(3602)] = 183339, + [SMALL_STATE(3603)] = 183406, + [SMALL_STATE(3604)] = 183513, + [SMALL_STATE(3605)] = 183620, + [SMALL_STATE(3606)] = 183685, + [SMALL_STATE(3607)] = 183750, + [SMALL_STATE(3608)] = 183815, + [SMALL_STATE(3609)] = 183880, + [SMALL_STATE(3610)] = 183987, + [SMALL_STATE(3611)] = 184054, + [SMALL_STATE(3612)] = 184121, + [SMALL_STATE(3613)] = 184188, + [SMALL_STATE(3614)] = 184257, + [SMALL_STATE(3615)] = 184326, + [SMALL_STATE(3616)] = 184395, + [SMALL_STATE(3617)] = 184460, + [SMALL_STATE(3618)] = 184527, + [SMALL_STATE(3619)] = 184594, + [SMALL_STATE(3620)] = 184661, + [SMALL_STATE(3621)] = 184726, + [SMALL_STATE(3622)] = 184791, + [SMALL_STATE(3623)] = 184858, + [SMALL_STATE(3624)] = 184923, + [SMALL_STATE(3625)] = 184988, + [SMALL_STATE(3626)] = 185053, + [SMALL_STATE(3627)] = 185120, + [SMALL_STATE(3628)] = 185185, + [SMALL_STATE(3629)] = 185252, + [SMALL_STATE(3630)] = 185319, + [SMALL_STATE(3631)] = 185386, + [SMALL_STATE(3632)] = 185451, + [SMALL_STATE(3633)] = 185516, + [SMALL_STATE(3634)] = 185623, + [SMALL_STATE(3635)] = 185688, + [SMALL_STATE(3636)] = 185797, + [SMALL_STATE(3637)] = 185862, + [SMALL_STATE(3638)] = 185927, + [SMALL_STATE(3639)] = 185992, + [SMALL_STATE(3640)] = 186057, + [SMALL_STATE(3641)] = 186122, + [SMALL_STATE(3642)] = 186189, + [SMALL_STATE(3643)] = 186256, + [SMALL_STATE(3644)] = 186323, + [SMALL_STATE(3645)] = 186390, + [SMALL_STATE(3646)] = 186457, + [SMALL_STATE(3647)] = 186524, + [SMALL_STATE(3648)] = 186589, + [SMALL_STATE(3649)] = 186653, + [SMALL_STATE(3650)] = 186717, + [SMALL_STATE(3651)] = 186781, + [SMALL_STATE(3652)] = 186845, + [SMALL_STATE(3653)] = 186909, + [SMALL_STATE(3654)] = 186973, + [SMALL_STATE(3655)] = 187037, + [SMALL_STATE(3656)] = 187101, + [SMALL_STATE(3657)] = 187165, + [SMALL_STATE(3658)] = 187271, + [SMALL_STATE(3659)] = 187335, + [SMALL_STATE(3660)] = 187441, + [SMALL_STATE(3661)] = 187521, + [SMALL_STATE(3662)] = 187589, + [SMALL_STATE(3663)] = 187653, + [SMALL_STATE(3664)] = 187729, + [SMALL_STATE(3665)] = 187807, + [SMALL_STATE(3666)] = 187885, + [SMALL_STATE(3667)] = 187969, + [SMALL_STATE(3668)] = 188057, + [SMALL_STATE(3669)] = 188147, + [SMALL_STATE(3670)] = 188239, + [SMALL_STATE(3671)] = 188335, + [SMALL_STATE(3672)] = 188433, + [SMALL_STATE(3673)] = 188535, + [SMALL_STATE(3674)] = 188639, + [SMALL_STATE(3675)] = 188743, + [SMALL_STATE(3676)] = 188815, + [SMALL_STATE(3677)] = 188885, + [SMALL_STATE(3678)] = 188985, + [SMALL_STATE(3679)] = 189071, + [SMALL_STATE(3680)] = 189135, + [SMALL_STATE(3681)] = 189199, + [SMALL_STATE(3682)] = 189267, + [SMALL_STATE(3683)] = 189335, + [SMALL_STATE(3684)] = 189399, + [SMALL_STATE(3685)] = 189463, + [SMALL_STATE(3686)] = 189527, + [SMALL_STATE(3687)] = 189591, + [SMALL_STATE(3688)] = 189697, + [SMALL_STATE(3689)] = 189761, + [SMALL_STATE(3690)] = 189825, + [SMALL_STATE(3691)] = 189889, + [SMALL_STATE(3692)] = 189953, + [SMALL_STATE(3693)] = 190021, + [SMALL_STATE(3694)] = 190085, + [SMALL_STATE(3695)] = 190149, + [SMALL_STATE(3696)] = 190217, + [SMALL_STATE(3697)] = 190293, + [SMALL_STATE(3698)] = 190371, + [SMALL_STATE(3699)] = 190449, + [SMALL_STATE(3700)] = 190533, + [SMALL_STATE(3701)] = 190621, + [SMALL_STATE(3702)] = 190711, + [SMALL_STATE(3703)] = 190803, + [SMALL_STATE(3704)] = 190899, + [SMALL_STATE(3705)] = 190997, + [SMALL_STATE(3706)] = 191099, + [SMALL_STATE(3707)] = 191203, + [SMALL_STATE(3708)] = 191307, + [SMALL_STATE(3709)] = 191379, + [SMALL_STATE(3710)] = 191449, + [SMALL_STATE(3711)] = 191549, + [SMALL_STATE(3712)] = 191635, + [SMALL_STATE(3713)] = 191715, + [SMALL_STATE(3714)] = 191821, + [SMALL_STATE(3715)] = 191889, + [SMALL_STATE(3716)] = 191953, + [SMALL_STATE(3717)] = 192017, + [SMALL_STATE(3718)] = 192125, + [SMALL_STATE(3719)] = 192189, + [SMALL_STATE(3720)] = 192253, + [SMALL_STATE(3721)] = 192317, + [SMALL_STATE(3722)] = 192381, + [SMALL_STATE(3723)] = 192445, + [SMALL_STATE(3724)] = 192509, + [SMALL_STATE(3725)] = 192573, + [SMALL_STATE(3726)] = 192637, + [SMALL_STATE(3727)] = 192701, + [SMALL_STATE(3728)] = 192765, + [SMALL_STATE(3729)] = 192829, + [SMALL_STATE(3730)] = 192893, + [SMALL_STATE(3731)] = 192957, + [SMALL_STATE(3732)] = 193021, + [SMALL_STATE(3733)] = 193085, + [SMALL_STATE(3734)] = 193149, + [SMALL_STATE(3735)] = 193213, + [SMALL_STATE(3736)] = 193277, + [SMALL_STATE(3737)] = 193341, + [SMALL_STATE(3738)] = 193405, + [SMALL_STATE(3739)] = 193469, + [SMALL_STATE(3740)] = 193533, + [SMALL_STATE(3741)] = 193597, + [SMALL_STATE(3742)] = 193661, + [SMALL_STATE(3743)] = 193725, + [SMALL_STATE(3744)] = 193789, + [SMALL_STATE(3745)] = 193853, + [SMALL_STATE(3746)] = 193917, + [SMALL_STATE(3747)] = 193981, + [SMALL_STATE(3748)] = 194045, + [SMALL_STATE(3749)] = 194109, + [SMALL_STATE(3750)] = 194173, + [SMALL_STATE(3751)] = 194237, + [SMALL_STATE(3752)] = 194301, + [SMALL_STATE(3753)] = 194365, + [SMALL_STATE(3754)] = 194429, + [SMALL_STATE(3755)] = 194493, + [SMALL_STATE(3756)] = 194557, + [SMALL_STATE(3757)] = 194621, + [SMALL_STATE(3758)] = 194685, + [SMALL_STATE(3759)] = 194749, + [SMALL_STATE(3760)] = 194813, + [SMALL_STATE(3761)] = 194877, + [SMALL_STATE(3762)] = 194941, + [SMALL_STATE(3763)] = 195009, + [SMALL_STATE(3764)] = 195085, + [SMALL_STATE(3765)] = 195163, + [SMALL_STATE(3766)] = 195241, + [SMALL_STATE(3767)] = 195323, + [SMALL_STATE(3768)] = 195409, + [SMALL_STATE(3769)] = 195497, + [SMALL_STATE(3770)] = 195587, + [SMALL_STATE(3771)] = 195681, + [SMALL_STATE(3772)] = 195777, + [SMALL_STATE(3773)] = 195877, + [SMALL_STATE(3774)] = 195941, + [SMALL_STATE(3775)] = 196043, + [SMALL_STATE(3776)] = 196145, + [SMALL_STATE(3777)] = 196217, + [SMALL_STATE(3778)] = 196287, + [SMALL_STATE(3779)] = 196351, + [SMALL_STATE(3780)] = 196449, + [SMALL_STATE(3781)] = 196533, + [SMALL_STATE(3782)] = 196613, + [SMALL_STATE(3783)] = 196677, + [SMALL_STATE(3784)] = 196741, + [SMALL_STATE(3785)] = 196805, + [SMALL_STATE(3786)] = 196869, + [SMALL_STATE(3787)] = 196933, + [SMALL_STATE(3788)] = 196997, + [SMALL_STATE(3789)] = 197061, + [SMALL_STATE(3790)] = 197125, + [SMALL_STATE(3791)] = 197189, + [SMALL_STATE(3792)] = 197257, + [SMALL_STATE(3793)] = 197321, + [SMALL_STATE(3794)] = 197385, + [SMALL_STATE(3795)] = 197449, + [SMALL_STATE(3796)] = 197513, + [SMALL_STATE(3797)] = 197577, + [SMALL_STATE(3798)] = 197641, + [SMALL_STATE(3799)] = 197705, + [SMALL_STATE(3800)] = 197769, + [SMALL_STATE(3801)] = 197833, + [SMALL_STATE(3802)] = 197897, + [SMALL_STATE(3803)] = 197961, + [SMALL_STATE(3804)] = 198029, + [SMALL_STATE(3805)] = 198093, + [SMALL_STATE(3806)] = 198157, + [SMALL_STATE(3807)] = 198261, + [SMALL_STATE(3808)] = 198325, + [SMALL_STATE(3809)] = 198389, + [SMALL_STATE(3810)] = 198453, + [SMALL_STATE(3811)] = 198517, + [SMALL_STATE(3812)] = 198581, + [SMALL_STATE(3813)] = 198645, + [SMALL_STATE(3814)] = 198709, + [SMALL_STATE(3815)] = 198775, + [SMALL_STATE(3816)] = 198839, + [SMALL_STATE(3817)] = 198903, + [SMALL_STATE(3818)] = 198969, + [SMALL_STATE(3819)] = 199077, + [SMALL_STATE(3820)] = 199141, + [SMALL_STATE(3821)] = 199205, + [SMALL_STATE(3822)] = 199269, + [SMALL_STATE(3823)] = 199333, + [SMALL_STATE(3824)] = 199397, + [SMALL_STATE(3825)] = 199461, + [SMALL_STATE(3826)] = 199525, + [SMALL_STATE(3827)] = 199589, + [SMALL_STATE(3828)] = 199653, + [SMALL_STATE(3829)] = 199759, + [SMALL_STATE(3830)] = 199823, + [SMALL_STATE(3831)] = 199887, + [SMALL_STATE(3832)] = 199951, + [SMALL_STATE(3833)] = 200015, + [SMALL_STATE(3834)] = 200079, + [SMALL_STATE(3835)] = 200143, + [SMALL_STATE(3836)] = 200211, + [SMALL_STATE(3837)] = 200275, + [SMALL_STATE(3838)] = 200339, + [SMALL_STATE(3839)] = 200403, + [SMALL_STATE(3840)] = 200467, + [SMALL_STATE(3841)] = 200575, + [SMALL_STATE(3842)] = 200639, + [SMALL_STATE(3843)] = 200703, + [SMALL_STATE(3844)] = 200767, + [SMALL_STATE(3845)] = 200831, + [SMALL_STATE(3846)] = 200895, + [SMALL_STATE(3847)] = 200963, + [SMALL_STATE(3848)] = 201027, + [SMALL_STATE(3849)] = 201091, + [SMALL_STATE(3850)] = 201155, + [SMALL_STATE(3851)] = 201219, + [SMALL_STATE(3852)] = 201283, + [SMALL_STATE(3853)] = 201347, + [SMALL_STATE(3854)] = 201411, + [SMALL_STATE(3855)] = 201475, + [SMALL_STATE(3856)] = 201579, + [SMALL_STATE(3857)] = 201643, + [SMALL_STATE(3858)] = 201711, + [SMALL_STATE(3859)] = 201775, + [SMALL_STATE(3860)] = 201839, + [SMALL_STATE(3861)] = 201907, + [SMALL_STATE(3862)] = 201975, + [SMALL_STATE(3863)] = 202039, + [SMALL_STATE(3864)] = 202103, + [SMALL_STATE(3865)] = 202167, + [SMALL_STATE(3866)] = 202231, + [SMALL_STATE(3867)] = 202295, + [SMALL_STATE(3868)] = 202359, + [SMALL_STATE(3869)] = 202423, + [SMALL_STATE(3870)] = 202487, + [SMALL_STATE(3871)] = 202555, + [SMALL_STATE(3872)] = 202623, + [SMALL_STATE(3873)] = 202691, + [SMALL_STATE(3874)] = 202755, + [SMALL_STATE(3875)] = 202819, + [SMALL_STATE(3876)] = 202883, + [SMALL_STATE(3877)] = 202947, + [SMALL_STATE(3878)] = 203011, + [SMALL_STATE(3879)] = 203075, + [SMALL_STATE(3880)] = 203139, + [SMALL_STATE(3881)] = 203203, + [SMALL_STATE(3882)] = 203267, + [SMALL_STATE(3883)] = 203331, + [SMALL_STATE(3884)] = 203395, + [SMALL_STATE(3885)] = 203459, + [SMALL_STATE(3886)] = 203523, + [SMALL_STATE(3887)] = 203587, + [SMALL_STATE(3888)] = 203651, + [SMALL_STATE(3889)] = 203715, + [SMALL_STATE(3890)] = 203779, + [SMALL_STATE(3891)] = 203843, + [SMALL_STATE(3892)] = 203907, + [SMALL_STATE(3893)] = 203971, + [SMALL_STATE(3894)] = 204035, + [SMALL_STATE(3895)] = 204099, + [SMALL_STATE(3896)] = 204165, + [SMALL_STATE(3897)] = 204231, + [SMALL_STATE(3898)] = 204297, + [SMALL_STATE(3899)] = 204361, + [SMALL_STATE(3900)] = 204427, + [SMALL_STATE(3901)] = 204491, + [SMALL_STATE(3902)] = 204555, + [SMALL_STATE(3903)] = 204619, + [SMALL_STATE(3904)] = 204683, + [SMALL_STATE(3905)] = 204749, + [SMALL_STATE(3906)] = 204815, + [SMALL_STATE(3907)] = 204879, + [SMALL_STATE(3908)] = 204945, + [SMALL_STATE(3909)] = 205011, + [SMALL_STATE(3910)] = 205077, + [SMALL_STATE(3911)] = 205143, + [SMALL_STATE(3912)] = 205207, + [SMALL_STATE(3913)] = 205273, + [SMALL_STATE(3914)] = 205339, + [SMALL_STATE(3915)] = 205403, + [SMALL_STATE(3916)] = 205469, + [SMALL_STATE(3917)] = 205535, + [SMALL_STATE(3918)] = 205601, + [SMALL_STATE(3919)] = 205667, + [SMALL_STATE(3920)] = 205731, + [SMALL_STATE(3921)] = 205797, + [SMALL_STATE(3922)] = 205861, + [SMALL_STATE(3923)] = 205925, + [SMALL_STATE(3924)] = 205989, + [SMALL_STATE(3925)] = 206055, + [SMALL_STATE(3926)] = 206119, + [SMALL_STATE(3927)] = 206183, + [SMALL_STATE(3928)] = 206247, + [SMALL_STATE(3929)] = 206311, + [SMALL_STATE(3930)] = 206375, + [SMALL_STATE(3931)] = 206439, + [SMALL_STATE(3932)] = 206503, + [SMALL_STATE(3933)] = 206567, + [SMALL_STATE(3934)] = 206631, + [SMALL_STATE(3935)] = 206695, + [SMALL_STATE(3936)] = 206759, + [SMALL_STATE(3937)] = 206823, + [SMALL_STATE(3938)] = 206887, + [SMALL_STATE(3939)] = 206951, + [SMALL_STATE(3940)] = 207015, + [SMALL_STATE(3941)] = 207079, + [SMALL_STATE(3942)] = 207143, + [SMALL_STATE(3943)] = 207207, + [SMALL_STATE(3944)] = 207315, + [SMALL_STATE(3945)] = 207379, + [SMALL_STATE(3946)] = 207443, + [SMALL_STATE(3947)] = 207509, + [SMALL_STATE(3948)] = 207587, + [SMALL_STATE(3949)] = 207651, + [SMALL_STATE(3950)] = 207719, + [SMALL_STATE(3951)] = 207795, + [SMALL_STATE(3952)] = 207873, + [SMALL_STATE(3953)] = 207957, + [SMALL_STATE(3954)] = 208045, + [SMALL_STATE(3955)] = 208135, + [SMALL_STATE(3956)] = 208227, + [SMALL_STATE(3957)] = 208323, + [SMALL_STATE(3958)] = 208421, + [SMALL_STATE(3959)] = 208523, + [SMALL_STATE(3960)] = 208587, + [SMALL_STATE(3961)] = 208691, + [SMALL_STATE(3962)] = 208795, + [SMALL_STATE(3963)] = 208867, + [SMALL_STATE(3964)] = 208937, + [SMALL_STATE(3965)] = 209001, + [SMALL_STATE(3966)] = 209101, + [SMALL_STATE(3967)] = 209187, + [SMALL_STATE(3968)] = 209267, + [SMALL_STATE(3969)] = 209333, + [SMALL_STATE(3970)] = 209397, + [SMALL_STATE(3971)] = 209461, + [SMALL_STATE(3972)] = 209525, + [SMALL_STATE(3973)] = 209589, + [SMALL_STATE(3974)] = 209695, + [SMALL_STATE(3975)] = 209759, + [SMALL_STATE(3976)] = 209823, + [SMALL_STATE(3977)] = 209887, + [SMALL_STATE(3978)] = 209951, + [SMALL_STATE(3979)] = 210015, + [SMALL_STATE(3980)] = 210079, + [SMALL_STATE(3981)] = 210143, + [SMALL_STATE(3982)] = 210207, + [SMALL_STATE(3983)] = 210271, + [SMALL_STATE(3984)] = 210335, + [SMALL_STATE(3985)] = 210399, + [SMALL_STATE(3986)] = 210463, + [SMALL_STATE(3987)] = 210527, + [SMALL_STATE(3988)] = 210591, + [SMALL_STATE(3989)] = 210655, + [SMALL_STATE(3990)] = 210718, + [SMALL_STATE(3991)] = 210813, + [SMALL_STATE(3992)] = 210876, + [SMALL_STATE(3993)] = 210939, + [SMALL_STATE(3994)] = 211002, + [SMALL_STATE(3995)] = 211065, + [SMALL_STATE(3996)] = 211128, + [SMALL_STATE(3997)] = 211191, + [SMALL_STATE(3998)] = 211254, + [SMALL_STATE(3999)] = 211317, + [SMALL_STATE(4000)] = 211380, + [SMALL_STATE(4001)] = 211465, + [SMALL_STATE(4002)] = 211528, + [SMALL_STATE(4003)] = 211591, + [SMALL_STATE(4004)] = 211654, + [SMALL_STATE(4005)] = 211717, + [SMALL_STATE(4006)] = 211780, + [SMALL_STATE(4007)] = 211843, + [SMALL_STATE(4008)] = 211906, + [SMALL_STATE(4009)] = 211969, + [SMALL_STATE(4010)] = 212032, + [SMALL_STATE(4011)] = 212095, + [SMALL_STATE(4012)] = 212158, + [SMALL_STATE(4013)] = 212221, + [SMALL_STATE(4014)] = 212284, + [SMALL_STATE(4015)] = 212347, + [SMALL_STATE(4016)] = 212410, + [SMALL_STATE(4017)] = 212473, + [SMALL_STATE(4018)] = 212536, + [SMALL_STATE(4019)] = 212603, + [SMALL_STATE(4020)] = 212706, + [SMALL_STATE(4021)] = 212769, + [SMALL_STATE(4022)] = 212844, + [SMALL_STATE(4023)] = 212907, + [SMALL_STATE(4024)] = 212970, + [SMALL_STATE(4025)] = 213035, + [SMALL_STATE(4026)] = 213100, + [SMALL_STATE(4027)] = 213177, + [SMALL_STATE(4028)] = 213254, + [SMALL_STATE(4029)] = 213335, + [SMALL_STATE(4030)] = 213438, + [SMALL_STATE(4031)] = 213501, + [SMALL_STATE(4032)] = 213588, + [SMALL_STATE(4033)] = 213677, + [SMALL_STATE(4034)] = 213740, + [SMALL_STATE(4035)] = 213845, + [SMALL_STATE(4036)] = 213908, + [SMALL_STATE(4037)] = 213971, + [SMALL_STATE(4038)] = 214076, + [SMALL_STATE(4039)] = 214139, + [SMALL_STATE(4040)] = 214242, + [SMALL_STATE(4041)] = 214305, + [SMALL_STATE(4042)] = 214368, + [SMALL_STATE(4043)] = 214431, + [SMALL_STATE(4044)] = 214506, + [SMALL_STATE(4045)] = 214599, + [SMALL_STATE(4046)] = 214676, + [SMALL_STATE(4047)] = 214771, + [SMALL_STATE(4048)] = 214870, + [SMALL_STATE(4049)] = 214933, + [SMALL_STATE(4050)] = 215010, + [SMALL_STATE(4051)] = 215111, + [SMALL_STATE(4052)] = 215174, + [SMALL_STATE(4053)] = 215275, + [SMALL_STATE(4054)] = 215346, + [SMALL_STATE(4055)] = 215415, + [SMALL_STATE(4056)] = 215478, + [SMALL_STATE(4057)] = 215541, + [SMALL_STATE(4058)] = 215622, + [SMALL_STATE(4059)] = 215689, + [SMALL_STATE(4060)] = 215752, + [SMALL_STATE(4061)] = 215815, + [SMALL_STATE(4062)] = 215878, + [SMALL_STATE(4063)] = 215963, + [SMALL_STATE(4064)] = 216050, + [SMALL_STATE(4065)] = 216113, + [SMALL_STATE(4066)] = 216176, + [SMALL_STATE(4067)] = 216265, + [SMALL_STATE(4068)] = 216358, + [SMALL_STATE(4069)] = 216421, + [SMALL_STATE(4070)] = 216484, + [SMALL_STATE(4071)] = 216583, + [SMALL_STATE(4072)] = 216646, + [SMALL_STATE(4073)] = 216747, + [SMALL_STATE(4074)] = 216848, + [SMALL_STATE(4075)] = 216919, + [SMALL_STATE(4076)] = 216988, + [SMALL_STATE(4077)] = 217085, + [SMALL_STATE(4078)] = 217148, + [SMALL_STATE(4079)] = 217245, + [SMALL_STATE(4080)] = 217328, + [SMALL_STATE(4081)] = 217391, + [SMALL_STATE(4082)] = 217474, + [SMALL_STATE(4083)] = 217579, + [SMALL_STATE(4084)] = 217658, + [SMALL_STATE(4085)] = 217721, + [SMALL_STATE(4086)] = 217784, + [SMALL_STATE(4087)] = 217847, + [SMALL_STATE(4088)] = 217926, + [SMALL_STATE(4089)] = 217989, + [SMALL_STATE(4090)] = 218052, + [SMALL_STATE(4091)] = 218115, + [SMALL_STATE(4092)] = 218178, + [SMALL_STATE(4093)] = 218283, + [SMALL_STATE(4094)] = 218346, + [SMALL_STATE(4095)] = 218409, + [SMALL_STATE(4096)] = 218472, + [SMALL_STATE(4097)] = 218535, + [SMALL_STATE(4098)] = 218598, + [SMALL_STATE(4099)] = 218661, + [SMALL_STATE(4100)] = 218724, + [SMALL_STATE(4101)] = 218787, + [SMALL_STATE(4102)] = 218850, + [SMALL_STATE(4103)] = 218913, + [SMALL_STATE(4104)] = 218976, + [SMALL_STATE(4105)] = 219039, + [SMALL_STATE(4106)] = 219102, + [SMALL_STATE(4107)] = 219205, + [SMALL_STATE(4108)] = 219268, + [SMALL_STATE(4109)] = 219335, + [SMALL_STATE(4110)] = 219398, + [SMALL_STATE(4111)] = 219501, + [SMALL_STATE(4112)] = 219564, + [SMALL_STATE(4113)] = 219627, + [SMALL_STATE(4114)] = 219690, + [SMALL_STATE(4115)] = 219753, + [SMALL_STATE(4116)] = 219816, + [SMALL_STATE(4117)] = 219879, + [SMALL_STATE(4118)] = 219942, + [SMALL_STATE(4119)] = 220005, + [SMALL_STATE(4120)] = 220108, + [SMALL_STATE(4121)] = 220211, + [SMALL_STATE(4122)] = 220313, + [SMALL_STATE(4123)] = 220415, + [SMALL_STATE(4124)] = 220517, + [SMALL_STATE(4125)] = 220619, + [SMALL_STATE(4126)] = 220721, + [SMALL_STATE(4127)] = 220823, + [SMALL_STATE(4128)] = 220925, + [SMALL_STATE(4129)] = 221027, + [SMALL_STATE(4130)] = 221129, + [SMALL_STATE(4131)] = 221231, + [SMALL_STATE(4132)] = 221333, + [SMALL_STATE(4133)] = 221435, + [SMALL_STATE(4134)] = 221537, + [SMALL_STATE(4135)] = 221639, + [SMALL_STATE(4136)] = 221741, + [SMALL_STATE(4137)] = 221843, + [SMALL_STATE(4138)] = 221945, + [SMALL_STATE(4139)] = 222047, + [SMALL_STATE(4140)] = 222111, + [SMALL_STATE(4141)] = 222213, + [SMALL_STATE(4142)] = 222315, + [SMALL_STATE(4143)] = 222417, + [SMALL_STATE(4144)] = 222481, + [SMALL_STATE(4145)] = 222583, + [SMALL_STATE(4146)] = 222685, + [SMALL_STATE(4147)] = 222787, + [SMALL_STATE(4148)] = 222886, + [SMALL_STATE(4149)] = 222955, + [SMALL_STATE(4150)] = 223024, + [SMALL_STATE(4151)] = 223093, + [SMALL_STATE(4152)] = 223162, + [SMALL_STATE(4153)] = 223231, + [SMALL_STATE(4154)] = 223300, + [SMALL_STATE(4155)] = 223369, + [SMALL_STATE(4156)] = 223438, + [SMALL_STATE(4157)] = 223507, + [SMALL_STATE(4158)] = 223576, + [SMALL_STATE(4159)] = 223645, + [SMALL_STATE(4160)] = 223714, + [SMALL_STATE(4161)] = 223783, + [SMALL_STATE(4162)] = 223852, + [SMALL_STATE(4163)] = 223921, + [SMALL_STATE(4164)] = 223990, + [SMALL_STATE(4165)] = 224059, + [SMALL_STATE(4166)] = 224128, + [SMALL_STATE(4167)] = 224197, + [SMALL_STATE(4168)] = 224266, + [SMALL_STATE(4169)] = 224335, + [SMALL_STATE(4170)] = 224404, + [SMALL_STATE(4171)] = 224473, + [SMALL_STATE(4172)] = 224542, + [SMALL_STATE(4173)] = 224611, + [SMALL_STATE(4174)] = 224680, + [SMALL_STATE(4175)] = 224749, + [SMALL_STATE(4176)] = 224818, + [SMALL_STATE(4177)] = 224887, + [SMALL_STATE(4178)] = 224956, + [SMALL_STATE(4179)] = 225025, + [SMALL_STATE(4180)] = 225094, + [SMALL_STATE(4181)] = 225163, + [SMALL_STATE(4182)] = 225232, + [SMALL_STATE(4183)] = 225301, + [SMALL_STATE(4184)] = 225370, + [SMALL_STATE(4185)] = 225415, + [SMALL_STATE(4186)] = 225460, + [SMALL_STATE(4187)] = 225505, + [SMALL_STATE(4188)] = 225550, + [SMALL_STATE(4189)] = 225595, + [SMALL_STATE(4190)] = 225640, + [SMALL_STATE(4191)] = 225685, + [SMALL_STATE(4192)] = 225730, + [SMALL_STATE(4193)] = 225775, + [SMALL_STATE(4194)] = 225820, + [SMALL_STATE(4195)] = 225865, + [SMALL_STATE(4196)] = 225910, + [SMALL_STATE(4197)] = 225955, + [SMALL_STATE(4198)] = 226000, + [SMALL_STATE(4199)] = 226045, + [SMALL_STATE(4200)] = 226090, + [SMALL_STATE(4201)] = 226135, + [SMALL_STATE(4202)] = 226180, + [SMALL_STATE(4203)] = 226225, + [SMALL_STATE(4204)] = 226270, + [SMALL_STATE(4205)] = 226315, + [SMALL_STATE(4206)] = 226360, + [SMALL_STATE(4207)] = 226405, + [SMALL_STATE(4208)] = 226450, + [SMALL_STATE(4209)] = 226495, + [SMALL_STATE(4210)] = 226540, + [SMALL_STATE(4211)] = 226585, + [SMALL_STATE(4212)] = 226630, + [SMALL_STATE(4213)] = 226675, + [SMALL_STATE(4214)] = 226720, + [SMALL_STATE(4215)] = 226765, + [SMALL_STATE(4216)] = 226810, + [SMALL_STATE(4217)] = 226855, + [SMALL_STATE(4218)] = 226900, + [SMALL_STATE(4219)] = 226945, + [SMALL_STATE(4220)] = 226990, + [SMALL_STATE(4221)] = 227035, + [SMALL_STATE(4222)] = 227080, + [SMALL_STATE(4223)] = 227125, + [SMALL_STATE(4224)] = 227170, + [SMALL_STATE(4225)] = 227215, + [SMALL_STATE(4226)] = 227260, + [SMALL_STATE(4227)] = 227305, + [SMALL_STATE(4228)] = 227350, + [SMALL_STATE(4229)] = 227395, + [SMALL_STATE(4230)] = 227440, + [SMALL_STATE(4231)] = 227485, + [SMALL_STATE(4232)] = 227530, + [SMALL_STATE(4233)] = 227575, + [SMALL_STATE(4234)] = 227620, + [SMALL_STATE(4235)] = 227665, + [SMALL_STATE(4236)] = 227710, + [SMALL_STATE(4237)] = 227755, + [SMALL_STATE(4238)] = 227800, + [SMALL_STATE(4239)] = 227845, + [SMALL_STATE(4240)] = 227890, + [SMALL_STATE(4241)] = 227935, + [SMALL_STATE(4242)] = 227980, + [SMALL_STATE(4243)] = 228025, + [SMALL_STATE(4244)] = 228070, + [SMALL_STATE(4245)] = 228115, + [SMALL_STATE(4246)] = 228160, + [SMALL_STATE(4247)] = 228205, + [SMALL_STATE(4248)] = 228250, + [SMALL_STATE(4249)] = 228295, + [SMALL_STATE(4250)] = 228340, + [SMALL_STATE(4251)] = 228385, + [SMALL_STATE(4252)] = 228430, + [SMALL_STATE(4253)] = 228475, + [SMALL_STATE(4254)] = 228520, + [SMALL_STATE(4255)] = 228565, + [SMALL_STATE(4256)] = 228610, + [SMALL_STATE(4257)] = 228646, + [SMALL_STATE(4258)] = 228682, + [SMALL_STATE(4259)] = 228713, + [SMALL_STATE(4260)] = 228744, + [SMALL_STATE(4261)] = 228775, + [SMALL_STATE(4262)] = 228806, + [SMALL_STATE(4263)] = 228837, + [SMALL_STATE(4264)] = 228868, + [SMALL_STATE(4265)] = 228899, + [SMALL_STATE(4266)] = 228930, + [SMALL_STATE(4267)] = 228961, + [SMALL_STATE(4268)] = 228992, + [SMALL_STATE(4269)] = 229023, + [SMALL_STATE(4270)] = 229054, + [SMALL_STATE(4271)] = 229085, + [SMALL_STATE(4272)] = 229116, + [SMALL_STATE(4273)] = 229147, + [SMALL_STATE(4274)] = 229178, + [SMALL_STATE(4275)] = 229209, + [SMALL_STATE(4276)] = 229240, + [SMALL_STATE(4277)] = 229271, + [SMALL_STATE(4278)] = 229302, + [SMALL_STATE(4279)] = 229333, + [SMALL_STATE(4280)] = 229364, + [SMALL_STATE(4281)] = 229395, + [SMALL_STATE(4282)] = 229426, + [SMALL_STATE(4283)] = 229457, + [SMALL_STATE(4284)] = 229488, + [SMALL_STATE(4285)] = 229519, + [SMALL_STATE(4286)] = 229550, + [SMALL_STATE(4287)] = 229581, + [SMALL_STATE(4288)] = 229612, + [SMALL_STATE(4289)] = 229643, + [SMALL_STATE(4290)] = 229674, + [SMALL_STATE(4291)] = 229705, + [SMALL_STATE(4292)] = 229736, + [SMALL_STATE(4293)] = 229767, + [SMALL_STATE(4294)] = 229798, + [SMALL_STATE(4295)] = 229829, + [SMALL_STATE(4296)] = 229860, + [SMALL_STATE(4297)] = 229891, + [SMALL_STATE(4298)] = 229922, + [SMALL_STATE(4299)] = 229953, + [SMALL_STATE(4300)] = 229984, + [SMALL_STATE(4301)] = 230015, + [SMALL_STATE(4302)] = 230046, + [SMALL_STATE(4303)] = 230077, + [SMALL_STATE(4304)] = 230108, + [SMALL_STATE(4305)] = 230139, + [SMALL_STATE(4306)] = 230170, + [SMALL_STATE(4307)] = 230201, + [SMALL_STATE(4308)] = 230232, + [SMALL_STATE(4309)] = 230263, + [SMALL_STATE(4310)] = 230294, + [SMALL_STATE(4311)] = 230325, + [SMALL_STATE(4312)] = 230356, + [SMALL_STATE(4313)] = 230387, + [SMALL_STATE(4314)] = 230418, + [SMALL_STATE(4315)] = 230449, + [SMALL_STATE(4316)] = 230480, + [SMALL_STATE(4317)] = 230511, + [SMALL_STATE(4318)] = 230542, + [SMALL_STATE(4319)] = 230573, + [SMALL_STATE(4320)] = 230603, + [SMALL_STATE(4321)] = 230633, + [SMALL_STATE(4322)] = 230663, + [SMALL_STATE(4323)] = 230693, + [SMALL_STATE(4324)] = 230723, + [SMALL_STATE(4325)] = 230753, + [SMALL_STATE(4326)] = 230783, + [SMALL_STATE(4327)] = 230813, + [SMALL_STATE(4328)] = 230843, + [SMALL_STATE(4329)] = 230873, + [SMALL_STATE(4330)] = 230903, + [SMALL_STATE(4331)] = 230933, + [SMALL_STATE(4332)] = 230963, + [SMALL_STATE(4333)] = 230993, + [SMALL_STATE(4334)] = 231023, + [SMALL_STATE(4335)] = 231053, + [SMALL_STATE(4336)] = 231083, + [SMALL_STATE(4337)] = 231113, + [SMALL_STATE(4338)] = 231143, + [SMALL_STATE(4339)] = 231177, + [SMALL_STATE(4340)] = 231207, + [SMALL_STATE(4341)] = 231237, + [SMALL_STATE(4342)] = 231267, + [SMALL_STATE(4343)] = 231297, + [SMALL_STATE(4344)] = 231327, + [SMALL_STATE(4345)] = 231357, + [SMALL_STATE(4346)] = 231391, + [SMALL_STATE(4347)] = 231421, + [SMALL_STATE(4348)] = 231451, + [SMALL_STATE(4349)] = 231481, + [SMALL_STATE(4350)] = 231511, + [SMALL_STATE(4351)] = 231542, + [SMALL_STATE(4352)] = 231573, + [SMALL_STATE(4353)] = 231596, + [SMALL_STATE(4354)] = 231619, + [SMALL_STATE(4355)] = 231642, + [SMALL_STATE(4356)] = 231673, + [SMALL_STATE(4357)] = 231696, + [SMALL_STATE(4358)] = 231719, + [SMALL_STATE(4359)] = 231750, + [SMALL_STATE(4360)] = 231781, + [SMALL_STATE(4361)] = 231812, + [SMALL_STATE(4362)] = 231843, + [SMALL_STATE(4363)] = 231866, + [SMALL_STATE(4364)] = 231897, + [SMALL_STATE(4365)] = 231920, + [SMALL_STATE(4366)] = 231943, + [SMALL_STATE(4367)] = 231974, + [SMALL_STATE(4368)] = 231997, + [SMALL_STATE(4369)] = 232028, + [SMALL_STATE(4370)] = 232059, + [SMALL_STATE(4371)] = 232082, + [SMALL_STATE(4372)] = 232105, + [SMALL_STATE(4373)] = 232128, + [SMALL_STATE(4374)] = 232159, + [SMALL_STATE(4375)] = 232182, + [SMALL_STATE(4376)] = 232213, + [SMALL_STATE(4377)] = 232236, + [SMALL_STATE(4378)] = 232267, + [SMALL_STATE(4379)] = 232298, + [SMALL_STATE(4380)] = 232329, + [SMALL_STATE(4381)] = 232360, + [SMALL_STATE(4382)] = 232391, + [SMALL_STATE(4383)] = 232422, + [SMALL_STATE(4384)] = 232453, + [SMALL_STATE(4385)] = 232484, + [SMALL_STATE(4386)] = 232507, + [SMALL_STATE(4387)] = 232530, + [SMALL_STATE(4388)] = 232561, + [SMALL_STATE(4389)] = 232584, + [SMALL_STATE(4390)] = 232615, + [SMALL_STATE(4391)] = 232638, + [SMALL_STATE(4392)] = 232661, + [SMALL_STATE(4393)] = 232684, + [SMALL_STATE(4394)] = 232702, + [SMALL_STATE(4395)] = 232722, + [SMALL_STATE(4396)] = 232742, + [SMALL_STATE(4397)] = 232762, + [SMALL_STATE(4398)] = 232787, + [SMALL_STATE(4399)] = 232812, + [SMALL_STATE(4400)] = 232837, + [SMALL_STATE(4401)] = 232862, + [SMALL_STATE(4402)] = 232887, + [SMALL_STATE(4403)] = 232912, + [SMALL_STATE(4404)] = 232937, + [SMALL_STATE(4405)] = 232962, + [SMALL_STATE(4406)] = 232987, + [SMALL_STATE(4407)] = 233012, + [SMALL_STATE(4408)] = 233037, + [SMALL_STATE(4409)] = 233062, + [SMALL_STATE(4410)] = 233087, + [SMALL_STATE(4411)] = 233112, + [SMALL_STATE(4412)] = 233137, + [SMALL_STATE(4413)] = 233162, + [SMALL_STATE(4414)] = 233187, + [SMALL_STATE(4415)] = 233212, + [SMALL_STATE(4416)] = 233237, + [SMALL_STATE(4417)] = 233262, + [SMALL_STATE(4418)] = 233287, + [SMALL_STATE(4419)] = 233312, + [SMALL_STATE(4420)] = 233337, + [SMALL_STATE(4421)] = 233362, + [SMALL_STATE(4422)] = 233387, + [SMALL_STATE(4423)] = 233412, + [SMALL_STATE(4424)] = 233437, + [SMALL_STATE(4425)] = 233462, + [SMALL_STATE(4426)] = 233487, + [SMALL_STATE(4427)] = 233512, + [SMALL_STATE(4428)] = 233537, + [SMALL_STATE(4429)] = 233562, + [SMALL_STATE(4430)] = 233587, + [SMALL_STATE(4431)] = 233612, + [SMALL_STATE(4432)] = 233637, + [SMALL_STATE(4433)] = 233662, + [SMALL_STATE(4434)] = 233687, + [SMALL_STATE(4435)] = 233712, + [SMALL_STATE(4436)] = 233737, + [SMALL_STATE(4437)] = 233762, + [SMALL_STATE(4438)] = 233787, + [SMALL_STATE(4439)] = 233812, + [SMALL_STATE(4440)] = 233837, + [SMALL_STATE(4441)] = 233862, + [SMALL_STATE(4442)] = 233887, + [SMALL_STATE(4443)] = 233912, + [SMALL_STATE(4444)] = 233937, + [SMALL_STATE(4445)] = 233962, + [SMALL_STATE(4446)] = 233987, + [SMALL_STATE(4447)] = 234012, + [SMALL_STATE(4448)] = 234037, + [SMALL_STATE(4449)] = 234062, + [SMALL_STATE(4450)] = 234087, + [SMALL_STATE(4451)] = 234112, + [SMALL_STATE(4452)] = 234137, + [SMALL_STATE(4453)] = 234162, + [SMALL_STATE(4454)] = 234187, + [SMALL_STATE(4455)] = 234212, + [SMALL_STATE(4456)] = 234237, + [SMALL_STATE(4457)] = 234262, + [SMALL_STATE(4458)] = 234287, + [SMALL_STATE(4459)] = 234312, + [SMALL_STATE(4460)] = 234337, + [SMALL_STATE(4461)] = 234362, + [SMALL_STATE(4462)] = 234387, + [SMALL_STATE(4463)] = 234412, + [SMALL_STATE(4464)] = 234437, + [SMALL_STATE(4465)] = 234462, + [SMALL_STATE(4466)] = 234487, + [SMALL_STATE(4467)] = 234512, + [SMALL_STATE(4468)] = 234537, + [SMALL_STATE(4469)] = 234562, + [SMALL_STATE(4470)] = 234587, + [SMALL_STATE(4471)] = 234612, + [SMALL_STATE(4472)] = 234637, + [SMALL_STATE(4473)] = 234662, + [SMALL_STATE(4474)] = 234687, + [SMALL_STATE(4475)] = 234712, + [SMALL_STATE(4476)] = 234737, + [SMALL_STATE(4477)] = 234762, + [SMALL_STATE(4478)] = 234787, + [SMALL_STATE(4479)] = 234812, + [SMALL_STATE(4480)] = 234837, + [SMALL_STATE(4481)] = 234862, + [SMALL_STATE(4482)] = 234887, + [SMALL_STATE(4483)] = 234912, + [SMALL_STATE(4484)] = 234937, + [SMALL_STATE(4485)] = 234962, + [SMALL_STATE(4486)] = 234987, + [SMALL_STATE(4487)] = 235012, + [SMALL_STATE(4488)] = 235037, + [SMALL_STATE(4489)] = 235062, + [SMALL_STATE(4490)] = 235087, + [SMALL_STATE(4491)] = 235112, + [SMALL_STATE(4492)] = 235137, + [SMALL_STATE(4493)] = 235162, + [SMALL_STATE(4494)] = 235187, + [SMALL_STATE(4495)] = 235212, + [SMALL_STATE(4496)] = 235237, + [SMALL_STATE(4497)] = 235262, + [SMALL_STATE(4498)] = 235287, + [SMALL_STATE(4499)] = 235312, + [SMALL_STATE(4500)] = 235337, + [SMALL_STATE(4501)] = 235362, + [SMALL_STATE(4502)] = 235387, + [SMALL_STATE(4503)] = 235412, + [SMALL_STATE(4504)] = 235437, + [SMALL_STATE(4505)] = 235462, + [SMALL_STATE(4506)] = 235487, + [SMALL_STATE(4507)] = 235512, + [SMALL_STATE(4508)] = 235537, + [SMALL_STATE(4509)] = 235562, + [SMALL_STATE(4510)] = 235587, + [SMALL_STATE(4511)] = 235612, + [SMALL_STATE(4512)] = 235637, + [SMALL_STATE(4513)] = 235662, + [SMALL_STATE(4514)] = 235687, + [SMALL_STATE(4515)] = 235712, + [SMALL_STATE(4516)] = 235737, + [SMALL_STATE(4517)] = 235762, + [SMALL_STATE(4518)] = 235787, + [SMALL_STATE(4519)] = 235812, + [SMALL_STATE(4520)] = 235837, + [SMALL_STATE(4521)] = 235862, + [SMALL_STATE(4522)] = 235887, + [SMALL_STATE(4523)] = 235912, + [SMALL_STATE(4524)] = 235937, + [SMALL_STATE(4525)] = 235962, + [SMALL_STATE(4526)] = 235987, + [SMALL_STATE(4527)] = 236012, + [SMALL_STATE(4528)] = 236037, + [SMALL_STATE(4529)] = 236062, + [SMALL_STATE(4530)] = 236087, + [SMALL_STATE(4531)] = 236112, + [SMALL_STATE(4532)] = 236137, + [SMALL_STATE(4533)] = 236162, + [SMALL_STATE(4534)] = 236187, + [SMALL_STATE(4535)] = 236212, + [SMALL_STATE(4536)] = 236237, + [SMALL_STATE(4537)] = 236262, + [SMALL_STATE(4538)] = 236287, + [SMALL_STATE(4539)] = 236312, + [SMALL_STATE(4540)] = 236337, + [SMALL_STATE(4541)] = 236362, + [SMALL_STATE(4542)] = 236387, + [SMALL_STATE(4543)] = 236412, + [SMALL_STATE(4544)] = 236437, + [SMALL_STATE(4545)] = 236462, + [SMALL_STATE(4546)] = 236487, + [SMALL_STATE(4547)] = 236512, + [SMALL_STATE(4548)] = 236537, + [SMALL_STATE(4549)] = 236562, + [SMALL_STATE(4550)] = 236587, + [SMALL_STATE(4551)] = 236612, + [SMALL_STATE(4552)] = 236637, + [SMALL_STATE(4553)] = 236662, + [SMALL_STATE(4554)] = 236687, + [SMALL_STATE(4555)] = 236712, + [SMALL_STATE(4556)] = 236737, + [SMALL_STATE(4557)] = 236762, + [SMALL_STATE(4558)] = 236787, + [SMALL_STATE(4559)] = 236812, + [SMALL_STATE(4560)] = 236837, + [SMALL_STATE(4561)] = 236862, + [SMALL_STATE(4562)] = 236887, + [SMALL_STATE(4563)] = 236912, + [SMALL_STATE(4564)] = 236937, + [SMALL_STATE(4565)] = 236962, + [SMALL_STATE(4566)] = 236987, + [SMALL_STATE(4567)] = 237012, + [SMALL_STATE(4568)] = 237037, + [SMALL_STATE(4569)] = 237062, + [SMALL_STATE(4570)] = 237087, + [SMALL_STATE(4571)] = 237112, + [SMALL_STATE(4572)] = 237137, + [SMALL_STATE(4573)] = 237162, + [SMALL_STATE(4574)] = 237187, + [SMALL_STATE(4575)] = 237212, + [SMALL_STATE(4576)] = 237237, + [SMALL_STATE(4577)] = 237262, + [SMALL_STATE(4578)] = 237287, + [SMALL_STATE(4579)] = 237312, + [SMALL_STATE(4580)] = 237337, + [SMALL_STATE(4581)] = 237362, + [SMALL_STATE(4582)] = 237387, + [SMALL_STATE(4583)] = 237412, + [SMALL_STATE(4584)] = 237437, + [SMALL_STATE(4585)] = 237462, + [SMALL_STATE(4586)] = 237487, + [SMALL_STATE(4587)] = 237512, + [SMALL_STATE(4588)] = 237537, + [SMALL_STATE(4589)] = 237562, + [SMALL_STATE(4590)] = 237587, + [SMALL_STATE(4591)] = 237612, + [SMALL_STATE(4592)] = 237637, + [SMALL_STATE(4593)] = 237662, + [SMALL_STATE(4594)] = 237687, + [SMALL_STATE(4595)] = 237712, + [SMALL_STATE(4596)] = 237737, + [SMALL_STATE(4597)] = 237762, + [SMALL_STATE(4598)] = 237787, + [SMALL_STATE(4599)] = 237812, + [SMALL_STATE(4600)] = 237837, + [SMALL_STATE(4601)] = 237862, + [SMALL_STATE(4602)] = 237887, + [SMALL_STATE(4603)] = 237912, + [SMALL_STATE(4604)] = 237937, + [SMALL_STATE(4605)] = 237962, + [SMALL_STATE(4606)] = 237987, + [SMALL_STATE(4607)] = 238012, + [SMALL_STATE(4608)] = 238037, + [SMALL_STATE(4609)] = 238062, + [SMALL_STATE(4610)] = 238087, + [SMALL_STATE(4611)] = 238112, + [SMALL_STATE(4612)] = 238137, + [SMALL_STATE(4613)] = 238162, + [SMALL_STATE(4614)] = 238187, + [SMALL_STATE(4615)] = 238212, + [SMALL_STATE(4616)] = 238237, + [SMALL_STATE(4617)] = 238262, + [SMALL_STATE(4618)] = 238287, + [SMALL_STATE(4619)] = 238312, + [SMALL_STATE(4620)] = 238337, + [SMALL_STATE(4621)] = 238362, + [SMALL_STATE(4622)] = 238387, + [SMALL_STATE(4623)] = 238412, + [SMALL_STATE(4624)] = 238437, + [SMALL_STATE(4625)] = 238462, + [SMALL_STATE(4626)] = 238487, + [SMALL_STATE(4627)] = 238512, + [SMALL_STATE(4628)] = 238537, + [SMALL_STATE(4629)] = 238562, + [SMALL_STATE(4630)] = 238587, + [SMALL_STATE(4631)] = 238612, + [SMALL_STATE(4632)] = 238637, + [SMALL_STATE(4633)] = 238662, + [SMALL_STATE(4634)] = 238687, + [SMALL_STATE(4635)] = 238712, + [SMALL_STATE(4636)] = 238737, + [SMALL_STATE(4637)] = 238762, + [SMALL_STATE(4638)] = 238787, + [SMALL_STATE(4639)] = 238812, + [SMALL_STATE(4640)] = 238837, + [SMALL_STATE(4641)] = 238862, + [SMALL_STATE(4642)] = 238887, + [SMALL_STATE(4643)] = 238912, + [SMALL_STATE(4644)] = 238937, + [SMALL_STATE(4645)] = 238962, + [SMALL_STATE(4646)] = 238987, + [SMALL_STATE(4647)] = 239012, + [SMALL_STATE(4648)] = 239037, + [SMALL_STATE(4649)] = 239062, + [SMALL_STATE(4650)] = 239087, + [SMALL_STATE(4651)] = 239112, + [SMALL_STATE(4652)] = 239137, + [SMALL_STATE(4653)] = 239162, + [SMALL_STATE(4654)] = 239187, + [SMALL_STATE(4655)] = 239212, + [SMALL_STATE(4656)] = 239237, + [SMALL_STATE(4657)] = 239262, + [SMALL_STATE(4658)] = 239287, + [SMALL_STATE(4659)] = 239312, + [SMALL_STATE(4660)] = 239337, + [SMALL_STATE(4661)] = 239362, + [SMALL_STATE(4662)] = 239387, + [SMALL_STATE(4663)] = 239412, + [SMALL_STATE(4664)] = 239437, + [SMALL_STATE(4665)] = 239462, + [SMALL_STATE(4666)] = 239487, + [SMALL_STATE(4667)] = 239512, + [SMALL_STATE(4668)] = 239537, + [SMALL_STATE(4669)] = 239562, + [SMALL_STATE(4670)] = 239587, + [SMALL_STATE(4671)] = 239612, + [SMALL_STATE(4672)] = 239637, + [SMALL_STATE(4673)] = 239662, + [SMALL_STATE(4674)] = 239687, + [SMALL_STATE(4675)] = 239712, + [SMALL_STATE(4676)] = 239737, + [SMALL_STATE(4677)] = 239762, + [SMALL_STATE(4678)] = 239787, + [SMALL_STATE(4679)] = 239812, + [SMALL_STATE(4680)] = 239837, + [SMALL_STATE(4681)] = 239862, + [SMALL_STATE(4682)] = 239887, + [SMALL_STATE(4683)] = 239912, + [SMALL_STATE(4684)] = 239937, + [SMALL_STATE(4685)] = 239962, + [SMALL_STATE(4686)] = 239987, + [SMALL_STATE(4687)] = 240012, + [SMALL_STATE(4688)] = 240037, + [SMALL_STATE(4689)] = 240062, + [SMALL_STATE(4690)] = 240087, + [SMALL_STATE(4691)] = 240112, + [SMALL_STATE(4692)] = 240137, + [SMALL_STATE(4693)] = 240162, + [SMALL_STATE(4694)] = 240187, + [SMALL_STATE(4695)] = 240212, + [SMALL_STATE(4696)] = 240237, + [SMALL_STATE(4697)] = 240262, + [SMALL_STATE(4698)] = 240287, + [SMALL_STATE(4699)] = 240312, + [SMALL_STATE(4700)] = 240337, + [SMALL_STATE(4701)] = 240362, + [SMALL_STATE(4702)] = 240387, + [SMALL_STATE(4703)] = 240412, + [SMALL_STATE(4704)] = 240437, + [SMALL_STATE(4705)] = 240462, + [SMALL_STATE(4706)] = 240487, + [SMALL_STATE(4707)] = 240512, + [SMALL_STATE(4708)] = 240537, + [SMALL_STATE(4709)] = 240562, + [SMALL_STATE(4710)] = 240587, + [SMALL_STATE(4711)] = 240612, + [SMALL_STATE(4712)] = 240637, + [SMALL_STATE(4713)] = 240662, + [SMALL_STATE(4714)] = 240687, + [SMALL_STATE(4715)] = 240712, + [SMALL_STATE(4716)] = 240737, + [SMALL_STATE(4717)] = 240762, + [SMALL_STATE(4718)] = 240787, + [SMALL_STATE(4719)] = 240812, + [SMALL_STATE(4720)] = 240837, + [SMALL_STATE(4721)] = 240862, + [SMALL_STATE(4722)] = 240887, + [SMALL_STATE(4723)] = 240912, + [SMALL_STATE(4724)] = 240937, + [SMALL_STATE(4725)] = 240962, + [SMALL_STATE(4726)] = 240987, + [SMALL_STATE(4727)] = 241012, + [SMALL_STATE(4728)] = 241037, + [SMALL_STATE(4729)] = 241062, + [SMALL_STATE(4730)] = 241087, + [SMALL_STATE(4731)] = 241112, + [SMALL_STATE(4732)] = 241137, + [SMALL_STATE(4733)] = 241162, + [SMALL_STATE(4734)] = 241187, + [SMALL_STATE(4735)] = 241212, + [SMALL_STATE(4736)] = 241237, + [SMALL_STATE(4737)] = 241262, + [SMALL_STATE(4738)] = 241287, + [SMALL_STATE(4739)] = 241312, + [SMALL_STATE(4740)] = 241337, + [SMALL_STATE(4741)] = 241362, + [SMALL_STATE(4742)] = 241387, + [SMALL_STATE(4743)] = 241412, + [SMALL_STATE(4744)] = 241437, + [SMALL_STATE(4745)] = 241462, + [SMALL_STATE(4746)] = 241487, + [SMALL_STATE(4747)] = 241512, + [SMALL_STATE(4748)] = 241537, + [SMALL_STATE(4749)] = 241562, + [SMALL_STATE(4750)] = 241587, + [SMALL_STATE(4751)] = 241612, + [SMALL_STATE(4752)] = 241637, + [SMALL_STATE(4753)] = 241662, + [SMALL_STATE(4754)] = 241687, + [SMALL_STATE(4755)] = 241712, + [SMALL_STATE(4756)] = 241737, + [SMALL_STATE(4757)] = 241762, + [SMALL_STATE(4758)] = 241787, + [SMALL_STATE(4759)] = 241812, + [SMALL_STATE(4760)] = 241837, + [SMALL_STATE(4761)] = 241862, + [SMALL_STATE(4762)] = 241887, + [SMALL_STATE(4763)] = 241912, + [SMALL_STATE(4764)] = 241937, + [SMALL_STATE(4765)] = 241962, + [SMALL_STATE(4766)] = 241987, + [SMALL_STATE(4767)] = 242012, + [SMALL_STATE(4768)] = 242037, + [SMALL_STATE(4769)] = 242062, + [SMALL_STATE(4770)] = 242087, + [SMALL_STATE(4771)] = 242112, + [SMALL_STATE(4772)] = 242137, + [SMALL_STATE(4773)] = 242162, + [SMALL_STATE(4774)] = 242187, + [SMALL_STATE(4775)] = 242212, + [SMALL_STATE(4776)] = 242237, + [SMALL_STATE(4777)] = 242262, + [SMALL_STATE(4778)] = 242287, + [SMALL_STATE(4779)] = 242312, + [SMALL_STATE(4780)] = 242337, + [SMALL_STATE(4781)] = 242362, + [SMALL_STATE(4782)] = 242387, + [SMALL_STATE(4783)] = 242412, + [SMALL_STATE(4784)] = 242437, + [SMALL_STATE(4785)] = 242462, + [SMALL_STATE(4786)] = 242487, + [SMALL_STATE(4787)] = 242512, + [SMALL_STATE(4788)] = 242537, + [SMALL_STATE(4789)] = 242562, + [SMALL_STATE(4790)] = 242587, + [SMALL_STATE(4791)] = 242612, + [SMALL_STATE(4792)] = 242637, + [SMALL_STATE(4793)] = 242662, + [SMALL_STATE(4794)] = 242687, + [SMALL_STATE(4795)] = 242712, + [SMALL_STATE(4796)] = 242737, + [SMALL_STATE(4797)] = 242762, + [SMALL_STATE(4798)] = 242787, + [SMALL_STATE(4799)] = 242812, + [SMALL_STATE(4800)] = 242837, + [SMALL_STATE(4801)] = 242862, + [SMALL_STATE(4802)] = 242887, + [SMALL_STATE(4803)] = 242912, + [SMALL_STATE(4804)] = 242937, + [SMALL_STATE(4805)] = 242962, + [SMALL_STATE(4806)] = 242987, + [SMALL_STATE(4807)] = 243012, + [SMALL_STATE(4808)] = 243037, + [SMALL_STATE(4809)] = 243062, + [SMALL_STATE(4810)] = 243087, + [SMALL_STATE(4811)] = 243112, + [SMALL_STATE(4812)] = 243137, + [SMALL_STATE(4813)] = 243162, + [SMALL_STATE(4814)] = 243187, + [SMALL_STATE(4815)] = 243212, + [SMALL_STATE(4816)] = 243237, + [SMALL_STATE(4817)] = 243262, + [SMALL_STATE(4818)] = 243287, + [SMALL_STATE(4819)] = 243312, + [SMALL_STATE(4820)] = 243337, + [SMALL_STATE(4821)] = 243362, + [SMALL_STATE(4822)] = 243387, + [SMALL_STATE(4823)] = 243412, + [SMALL_STATE(4824)] = 243437, + [SMALL_STATE(4825)] = 243462, + [SMALL_STATE(4826)] = 243487, + [SMALL_STATE(4827)] = 243512, + [SMALL_STATE(4828)] = 243537, + [SMALL_STATE(4829)] = 243562, + [SMALL_STATE(4830)] = 243587, + [SMALL_STATE(4831)] = 243612, + [SMALL_STATE(4832)] = 243637, + [SMALL_STATE(4833)] = 243662, + [SMALL_STATE(4834)] = 243687, + [SMALL_STATE(4835)] = 243712, + [SMALL_STATE(4836)] = 243737, + [SMALL_STATE(4837)] = 243762, + [SMALL_STATE(4838)] = 243787, + [SMALL_STATE(4839)] = 243812, + [SMALL_STATE(4840)] = 243837, + [SMALL_STATE(4841)] = 243862, + [SMALL_STATE(4842)] = 243887, + [SMALL_STATE(4843)] = 243912, + [SMALL_STATE(4844)] = 243937, + [SMALL_STATE(4845)] = 243962, + [SMALL_STATE(4846)] = 243987, + [SMALL_STATE(4847)] = 244012, + [SMALL_STATE(4848)] = 244037, + [SMALL_STATE(4849)] = 244062, + [SMALL_STATE(4850)] = 244087, + [SMALL_STATE(4851)] = 244112, + [SMALL_STATE(4852)] = 244137, + [SMALL_STATE(4853)] = 244162, + [SMALL_STATE(4854)] = 244187, + [SMALL_STATE(4855)] = 244212, + [SMALL_STATE(4856)] = 244237, + [SMALL_STATE(4857)] = 244262, + [SMALL_STATE(4858)] = 244287, + [SMALL_STATE(4859)] = 244312, + [SMALL_STATE(4860)] = 244337, + [SMALL_STATE(4861)] = 244362, + [SMALL_STATE(4862)] = 244387, + [SMALL_STATE(4863)] = 244412, + [SMALL_STATE(4864)] = 244437, + [SMALL_STATE(4865)] = 244462, + [SMALL_STATE(4866)] = 244487, + [SMALL_STATE(4867)] = 244512, + [SMALL_STATE(4868)] = 244537, + [SMALL_STATE(4869)] = 244562, + [SMALL_STATE(4870)] = 244587, + [SMALL_STATE(4871)] = 244612, + [SMALL_STATE(4872)] = 244637, + [SMALL_STATE(4873)] = 244662, + [SMALL_STATE(4874)] = 244687, + [SMALL_STATE(4875)] = 244712, + [SMALL_STATE(4876)] = 244737, + [SMALL_STATE(4877)] = 244762, + [SMALL_STATE(4878)] = 244787, + [SMALL_STATE(4879)] = 244812, + [SMALL_STATE(4880)] = 244837, + [SMALL_STATE(4881)] = 244862, + [SMALL_STATE(4882)] = 244887, + [SMALL_STATE(4883)] = 244912, + [SMALL_STATE(4884)] = 244937, + [SMALL_STATE(4885)] = 244962, + [SMALL_STATE(4886)] = 244987, + [SMALL_STATE(4887)] = 245012, + [SMALL_STATE(4888)] = 245037, + [SMALL_STATE(4889)] = 245062, + [SMALL_STATE(4890)] = 245087, + [SMALL_STATE(4891)] = 245112, + [SMALL_STATE(4892)] = 245138, + [SMALL_STATE(4893)] = 245164, + [SMALL_STATE(4894)] = 245190, + [SMALL_STATE(4895)] = 245216, + [SMALL_STATE(4896)] = 245242, + [SMALL_STATE(4897)] = 245268, + [SMALL_STATE(4898)] = 245294, + [SMALL_STATE(4899)] = 245320, + [SMALL_STATE(4900)] = 245346, + [SMALL_STATE(4901)] = 245372, + [SMALL_STATE(4902)] = 245398, + [SMALL_STATE(4903)] = 245418, + [SMALL_STATE(4904)] = 245444, + [SMALL_STATE(4905)] = 245470, + [SMALL_STATE(4906)] = 245496, + [SMALL_STATE(4907)] = 245522, + [SMALL_STATE(4908)] = 245548, + [SMALL_STATE(4909)] = 245574, + [SMALL_STATE(4910)] = 245600, + [SMALL_STATE(4911)] = 245626, + [SMALL_STATE(4912)] = 245652, + [SMALL_STATE(4913)] = 245678, + [SMALL_STATE(4914)] = 245704, + [SMALL_STATE(4915)] = 245724, + [SMALL_STATE(4916)] = 245750, + [SMALL_STATE(4917)] = 245776, + [SMALL_STATE(4918)] = 245802, + [SMALL_STATE(4919)] = 245828, + [SMALL_STATE(4920)] = 245854, + [SMALL_STATE(4921)] = 245880, + [SMALL_STATE(4922)] = 245906, + [SMALL_STATE(4923)] = 245932, + [SMALL_STATE(4924)] = 245958, + [SMALL_STATE(4925)] = 245984, + [SMALL_STATE(4926)] = 246010, + [SMALL_STATE(4927)] = 246036, + [SMALL_STATE(4928)] = 246062, + [SMALL_STATE(4929)] = 246088, + [SMALL_STATE(4930)] = 246114, + [SMALL_STATE(4931)] = 246140, + [SMALL_STATE(4932)] = 246166, + [SMALL_STATE(4933)] = 246192, + [SMALL_STATE(4934)] = 246218, + [SMALL_STATE(4935)] = 246244, + [SMALL_STATE(4936)] = 246270, + [SMALL_STATE(4937)] = 246296, + [SMALL_STATE(4938)] = 246322, + [SMALL_STATE(4939)] = 246348, + [SMALL_STATE(4940)] = 246374, + [SMALL_STATE(4941)] = 246400, + [SMALL_STATE(4942)] = 246426, + [SMALL_STATE(4943)] = 246452, + [SMALL_STATE(4944)] = 246478, + [SMALL_STATE(4945)] = 246504, + [SMALL_STATE(4946)] = 246530, + [SMALL_STATE(4947)] = 246556, + [SMALL_STATE(4948)] = 246582, + [SMALL_STATE(4949)] = 246608, + [SMALL_STATE(4950)] = 246634, + [SMALL_STATE(4951)] = 246660, + [SMALL_STATE(4952)] = 246686, + [SMALL_STATE(4953)] = 246712, + [SMALL_STATE(4954)] = 246738, + [SMALL_STATE(4955)] = 246764, + [SMALL_STATE(4956)] = 246790, + [SMALL_STATE(4957)] = 246816, + [SMALL_STATE(4958)] = 246842, + [SMALL_STATE(4959)] = 246868, + [SMALL_STATE(4960)] = 246894, + [SMALL_STATE(4961)] = 246920, + [SMALL_STATE(4962)] = 246946, + [SMALL_STATE(4963)] = 246972, + [SMALL_STATE(4964)] = 246998, + [SMALL_STATE(4965)] = 247024, + [SMALL_STATE(4966)] = 247050, + [SMALL_STATE(4967)] = 247076, + [SMALL_STATE(4968)] = 247102, + [SMALL_STATE(4969)] = 247128, + [SMALL_STATE(4970)] = 247154, + [SMALL_STATE(4971)] = 247180, + [SMALL_STATE(4972)] = 247206, + [SMALL_STATE(4973)] = 247232, + [SMALL_STATE(4974)] = 247258, + [SMALL_STATE(4975)] = 247284, + [SMALL_STATE(4976)] = 247310, + [SMALL_STATE(4977)] = 247336, + [SMALL_STATE(4978)] = 247362, + [SMALL_STATE(4979)] = 247382, + [SMALL_STATE(4980)] = 247408, + [SMALL_STATE(4981)] = 247434, + [SMALL_STATE(4982)] = 247460, + [SMALL_STATE(4983)] = 247486, + [SMALL_STATE(4984)] = 247512, + [SMALL_STATE(4985)] = 247538, + [SMALL_STATE(4986)] = 247564, + [SMALL_STATE(4987)] = 247590, + [SMALL_STATE(4988)] = 247610, + [SMALL_STATE(4989)] = 247636, + [SMALL_STATE(4990)] = 247662, + [SMALL_STATE(4991)] = 247688, + [SMALL_STATE(4992)] = 247714, + [SMALL_STATE(4993)] = 247740, + [SMALL_STATE(4994)] = 247766, + [SMALL_STATE(4995)] = 247792, + [SMALL_STATE(4996)] = 247818, + [SMALL_STATE(4997)] = 247838, + [SMALL_STATE(4998)] = 247864, + [SMALL_STATE(4999)] = 247890, + [SMALL_STATE(5000)] = 247916, + [SMALL_STATE(5001)] = 247942, + [SMALL_STATE(5002)] = 247968, + [SMALL_STATE(5003)] = 247994, + [SMALL_STATE(5004)] = 248020, + [SMALL_STATE(5005)] = 248046, + [SMALL_STATE(5006)] = 248072, + [SMALL_STATE(5007)] = 248098, + [SMALL_STATE(5008)] = 248124, + [SMALL_STATE(5009)] = 248150, + [SMALL_STATE(5010)] = 248176, + [SMALL_STATE(5011)] = 248202, + [SMALL_STATE(5012)] = 248228, + [SMALL_STATE(5013)] = 248254, + [SMALL_STATE(5014)] = 248280, + [SMALL_STATE(5015)] = 248306, + [SMALL_STATE(5016)] = 248326, + [SMALL_STATE(5017)] = 248352, + [SMALL_STATE(5018)] = 248378, + [SMALL_STATE(5019)] = 248404, + [SMALL_STATE(5020)] = 248430, + [SMALL_STATE(5021)] = 248456, + [SMALL_STATE(5022)] = 248482, + [SMALL_STATE(5023)] = 248502, + [SMALL_STATE(5024)] = 248528, + [SMALL_STATE(5025)] = 248554, + [SMALL_STATE(5026)] = 248580, + [SMALL_STATE(5027)] = 248606, + [SMALL_STATE(5028)] = 248632, + [SMALL_STATE(5029)] = 248658, + [SMALL_STATE(5030)] = 248684, + [SMALL_STATE(5031)] = 248705, + [SMALL_STATE(5032)] = 248726, + [SMALL_STATE(5033)] = 248747, + [SMALL_STATE(5034)] = 248768, + [SMALL_STATE(5035)] = 248789, + [SMALL_STATE(5036)] = 248810, + [SMALL_STATE(5037)] = 248831, + [SMALL_STATE(5038)] = 248852, + [SMALL_STATE(5039)] = 248873, + [SMALL_STATE(5040)] = 248894, + [SMALL_STATE(5041)] = 248915, + [SMALL_STATE(5042)] = 248936, + [SMALL_STATE(5043)] = 248957, + [SMALL_STATE(5044)] = 248978, + [SMALL_STATE(5045)] = 248999, + [SMALL_STATE(5046)] = 249020, + [SMALL_STATE(5047)] = 249041, + [SMALL_STATE(5048)] = 249058, + [SMALL_STATE(5049)] = 249079, + [SMALL_STATE(5050)] = 249100, + [SMALL_STATE(5051)] = 249121, + [SMALL_STATE(5052)] = 249138, + [SMALL_STATE(5053)] = 249159, + [SMALL_STATE(5054)] = 249180, + [SMALL_STATE(5055)] = 249201, + [SMALL_STATE(5056)] = 249218, + [SMALL_STATE(5057)] = 249235, + [SMALL_STATE(5058)] = 249252, + [SMALL_STATE(5059)] = 249269, + [SMALL_STATE(5060)] = 249290, + [SMALL_STATE(5061)] = 249311, + [SMALL_STATE(5062)] = 249332, + [SMALL_STATE(5063)] = 249353, + [SMALL_STATE(5064)] = 249374, + [SMALL_STATE(5065)] = 249395, + [SMALL_STATE(5066)] = 249416, + [SMALL_STATE(5067)] = 249437, + [SMALL_STATE(5068)] = 249458, + [SMALL_STATE(5069)] = 249479, + [SMALL_STATE(5070)] = 249500, + [SMALL_STATE(5071)] = 249521, + [SMALL_STATE(5072)] = 249542, + [SMALL_STATE(5073)] = 249563, + [SMALL_STATE(5074)] = 249584, + [SMALL_STATE(5075)] = 249605, + [SMALL_STATE(5076)] = 249626, + [SMALL_STATE(5077)] = 249647, + [SMALL_STATE(5078)] = 249668, + [SMALL_STATE(5079)] = 249689, + [SMALL_STATE(5080)] = 249710, + [SMALL_STATE(5081)] = 249731, + [SMALL_STATE(5082)] = 249752, + [SMALL_STATE(5083)] = 249773, + [SMALL_STATE(5084)] = 249794, + [SMALL_STATE(5085)] = 249815, + [SMALL_STATE(5086)] = 249836, + [SMALL_STATE(5087)] = 249857, + [SMALL_STATE(5088)] = 249878, + [SMALL_STATE(5089)] = 249899, + [SMALL_STATE(5090)] = 249920, + [SMALL_STATE(5091)] = 249941, + [SMALL_STATE(5092)] = 249962, + [SMALL_STATE(5093)] = 249983, + [SMALL_STATE(5094)] = 250004, + [SMALL_STATE(5095)] = 250025, + [SMALL_STATE(5096)] = 250046, + [SMALL_STATE(5097)] = 250067, + [SMALL_STATE(5098)] = 250088, + [SMALL_STATE(5099)] = 250109, + [SMALL_STATE(5100)] = 250130, + [SMALL_STATE(5101)] = 250151, + [SMALL_STATE(5102)] = 250172, + [SMALL_STATE(5103)] = 250193, + [SMALL_STATE(5104)] = 250214, + [SMALL_STATE(5105)] = 250235, + [SMALL_STATE(5106)] = 250256, + [SMALL_STATE(5107)] = 250277, + [SMALL_STATE(5108)] = 250298, + [SMALL_STATE(5109)] = 250319, + [SMALL_STATE(5110)] = 250340, + [SMALL_STATE(5111)] = 250361, + [SMALL_STATE(5112)] = 250382, + [SMALL_STATE(5113)] = 250403, + [SMALL_STATE(5114)] = 250424, + [SMALL_STATE(5115)] = 250445, + [SMALL_STATE(5116)] = 250466, + [SMALL_STATE(5117)] = 250487, + [SMALL_STATE(5118)] = 250508, + [SMALL_STATE(5119)] = 250529, + [SMALL_STATE(5120)] = 250550, + [SMALL_STATE(5121)] = 250571, + [SMALL_STATE(5122)] = 250592, + [SMALL_STATE(5123)] = 250613, + [SMALL_STATE(5124)] = 250634, + [SMALL_STATE(5125)] = 250655, + [SMALL_STATE(5126)] = 250676, + [SMALL_STATE(5127)] = 250697, + [SMALL_STATE(5128)] = 250718, + [SMALL_STATE(5129)] = 250739, + [SMALL_STATE(5130)] = 250760, + [SMALL_STATE(5131)] = 250781, + [SMALL_STATE(5132)] = 250802, + [SMALL_STATE(5133)] = 250823, + [SMALL_STATE(5134)] = 250844, + [SMALL_STATE(5135)] = 250865, + [SMALL_STATE(5136)] = 250886, + [SMALL_STATE(5137)] = 250907, + [SMALL_STATE(5138)] = 250928, + [SMALL_STATE(5139)] = 250949, + [SMALL_STATE(5140)] = 250970, + [SMALL_STATE(5141)] = 250991, + [SMALL_STATE(5142)] = 251012, + [SMALL_STATE(5143)] = 251033, + [SMALL_STATE(5144)] = 251054, + [SMALL_STATE(5145)] = 251075, + [SMALL_STATE(5146)] = 251096, + [SMALL_STATE(5147)] = 251117, + [SMALL_STATE(5148)] = 251138, + [SMALL_STATE(5149)] = 251159, + [SMALL_STATE(5150)] = 251178, + [SMALL_STATE(5151)] = 251199, + [SMALL_STATE(5152)] = 251220, + [SMALL_STATE(5153)] = 251241, + [SMALL_STATE(5154)] = 251262, + [SMALL_STATE(5155)] = 251283, + [SMALL_STATE(5156)] = 251300, + [SMALL_STATE(5157)] = 251321, + [SMALL_STATE(5158)] = 251342, + [SMALL_STATE(5159)] = 251363, + [SMALL_STATE(5160)] = 251384, + [SMALL_STATE(5161)] = 251405, + [SMALL_STATE(5162)] = 251426, + [SMALL_STATE(5163)] = 251447, + [SMALL_STATE(5164)] = 251468, + [SMALL_STATE(5165)] = 251489, + [SMALL_STATE(5166)] = 251510, + [SMALL_STATE(5167)] = 251531, + [SMALL_STATE(5168)] = 251552, + [SMALL_STATE(5169)] = 251573, + [SMALL_STATE(5170)] = 251594, + [SMALL_STATE(5171)] = 251615, + [SMALL_STATE(5172)] = 251634, + [SMALL_STATE(5173)] = 251655, + [SMALL_STATE(5174)] = 251676, + [SMALL_STATE(5175)] = 251697, + [SMALL_STATE(5176)] = 251718, + [SMALL_STATE(5177)] = 251739, + [SMALL_STATE(5178)] = 251760, + [SMALL_STATE(5179)] = 251781, + [SMALL_STATE(5180)] = 251802, + [SMALL_STATE(5181)] = 251823, + [SMALL_STATE(5182)] = 251844, + [SMALL_STATE(5183)] = 251865, + [SMALL_STATE(5184)] = 251886, + [SMALL_STATE(5185)] = 251907, + [SMALL_STATE(5186)] = 251928, + [SMALL_STATE(5187)] = 251945, + [SMALL_STATE(5188)] = 251964, + [SMALL_STATE(5189)] = 251985, + [SMALL_STATE(5190)] = 252006, + [SMALL_STATE(5191)] = 252027, + [SMALL_STATE(5192)] = 252048, + [SMALL_STATE(5193)] = 252069, + [SMALL_STATE(5194)] = 252090, + [SMALL_STATE(5195)] = 252111, + [SMALL_STATE(5196)] = 252132, + [SMALL_STATE(5197)] = 252153, + [SMALL_STATE(5198)] = 252174, + [SMALL_STATE(5199)] = 252195, + [SMALL_STATE(5200)] = 252216, + [SMALL_STATE(5201)] = 252237, + [SMALL_STATE(5202)] = 252258, + [SMALL_STATE(5203)] = 252279, + [SMALL_STATE(5204)] = 252300, + [SMALL_STATE(5205)] = 252321, + [SMALL_STATE(5206)] = 252342, + [SMALL_STATE(5207)] = 252363, + [SMALL_STATE(5208)] = 252384, + [SMALL_STATE(5209)] = 252405, + [SMALL_STATE(5210)] = 252426, + [SMALL_STATE(5211)] = 252447, + [SMALL_STATE(5212)] = 252468, + [SMALL_STATE(5213)] = 252489, + [SMALL_STATE(5214)] = 252510, + [SMALL_STATE(5215)] = 252531, + [SMALL_STATE(5216)] = 252552, + [SMALL_STATE(5217)] = 252573, + [SMALL_STATE(5218)] = 252594, + [SMALL_STATE(5219)] = 252615, + [SMALL_STATE(5220)] = 252636, + [SMALL_STATE(5221)] = 252657, + [SMALL_STATE(5222)] = 252678, + [SMALL_STATE(5223)] = 252699, + [SMALL_STATE(5224)] = 252720, + [SMALL_STATE(5225)] = 252741, + [SMALL_STATE(5226)] = 252762, + [SMALL_STATE(5227)] = 252783, + [SMALL_STATE(5228)] = 252804, + [SMALL_STATE(5229)] = 252825, + [SMALL_STATE(5230)] = 252846, + [SMALL_STATE(5231)] = 252867, + [SMALL_STATE(5232)] = 252888, + [SMALL_STATE(5233)] = 252909, + [SMALL_STATE(5234)] = 252930, + [SMALL_STATE(5235)] = 252951, + [SMALL_STATE(5236)] = 252972, + [SMALL_STATE(5237)] = 252993, + [SMALL_STATE(5238)] = 253014, + [SMALL_STATE(5239)] = 253035, + [SMALL_STATE(5240)] = 253056, + [SMALL_STATE(5241)] = 253077, + [SMALL_STATE(5242)] = 253098, + [SMALL_STATE(5243)] = 253119, + [SMALL_STATE(5244)] = 253140, + [SMALL_STATE(5245)] = 253161, + [SMALL_STATE(5246)] = 253182, + [SMALL_STATE(5247)] = 253199, + [SMALL_STATE(5248)] = 253220, + [SMALL_STATE(5249)] = 253241, + [SMALL_STATE(5250)] = 253262, + [SMALL_STATE(5251)] = 253283, + [SMALL_STATE(5252)] = 253304, + [SMALL_STATE(5253)] = 253325, + [SMALL_STATE(5254)] = 253346, + [SMALL_STATE(5255)] = 253367, + [SMALL_STATE(5256)] = 253388, + [SMALL_STATE(5257)] = 253409, + [SMALL_STATE(5258)] = 253430, + [SMALL_STATE(5259)] = 253451, + [SMALL_STATE(5260)] = 253472, + [SMALL_STATE(5261)] = 253493, + [SMALL_STATE(5262)] = 253514, + [SMALL_STATE(5263)] = 253535, + [SMALL_STATE(5264)] = 253556, + [SMALL_STATE(5265)] = 253577, + [SMALL_STATE(5266)] = 253598, + [SMALL_STATE(5267)] = 253619, + [SMALL_STATE(5268)] = 253640, + [SMALL_STATE(5269)] = 253661, + [SMALL_STATE(5270)] = 253682, + [SMALL_STATE(5271)] = 253703, + [SMALL_STATE(5272)] = 253724, + [SMALL_STATE(5273)] = 253745, + [SMALL_STATE(5274)] = 253766, + [SMALL_STATE(5275)] = 253787, + [SMALL_STATE(5276)] = 253808, + [SMALL_STATE(5277)] = 253829, + [SMALL_STATE(5278)] = 253850, + [SMALL_STATE(5279)] = 253871, + [SMALL_STATE(5280)] = 253892, + [SMALL_STATE(5281)] = 253913, + [SMALL_STATE(5282)] = 253934, + [SMALL_STATE(5283)] = 253955, + [SMALL_STATE(5284)] = 253976, + [SMALL_STATE(5285)] = 253997, + [SMALL_STATE(5286)] = 254018, + [SMALL_STATE(5287)] = 254039, + [SMALL_STATE(5288)] = 254060, + [SMALL_STATE(5289)] = 254081, + [SMALL_STATE(5290)] = 254102, + [SMALL_STATE(5291)] = 254123, + [SMALL_STATE(5292)] = 254144, + [SMALL_STATE(5293)] = 254165, + [SMALL_STATE(5294)] = 254186, + [SMALL_STATE(5295)] = 254207, + [SMALL_STATE(5296)] = 254228, + [SMALL_STATE(5297)] = 254249, + [SMALL_STATE(5298)] = 254270, + [SMALL_STATE(5299)] = 254291, + [SMALL_STATE(5300)] = 254312, + [SMALL_STATE(5301)] = 254333, + [SMALL_STATE(5302)] = 254354, + [SMALL_STATE(5303)] = 254375, + [SMALL_STATE(5304)] = 254396, + [SMALL_STATE(5305)] = 254417, + [SMALL_STATE(5306)] = 254438, + [SMALL_STATE(5307)] = 254459, + [SMALL_STATE(5308)] = 254480, + [SMALL_STATE(5309)] = 254501, + [SMALL_STATE(5310)] = 254522, + [SMALL_STATE(5311)] = 254543, + [SMALL_STATE(5312)] = 254564, + [SMALL_STATE(5313)] = 254585, + [SMALL_STATE(5314)] = 254606, + [SMALL_STATE(5315)] = 254627, + [SMALL_STATE(5316)] = 254648, + [SMALL_STATE(5317)] = 254669, + [SMALL_STATE(5318)] = 254690, + [SMALL_STATE(5319)] = 254711, + [SMALL_STATE(5320)] = 254732, + [SMALL_STATE(5321)] = 254753, + [SMALL_STATE(5322)] = 254774, + [SMALL_STATE(5323)] = 254795, + [SMALL_STATE(5324)] = 254816, + [SMALL_STATE(5325)] = 254837, + [SMALL_STATE(5326)] = 254858, + [SMALL_STATE(5327)] = 254879, + [SMALL_STATE(5328)] = 254900, + [SMALL_STATE(5329)] = 254921, + [SMALL_STATE(5330)] = 254942, + [SMALL_STATE(5331)] = 254963, + [SMALL_STATE(5332)] = 254984, + [SMALL_STATE(5333)] = 255005, + [SMALL_STATE(5334)] = 255026, + [SMALL_STATE(5335)] = 255047, + [SMALL_STATE(5336)] = 255068, + [SMALL_STATE(5337)] = 255089, + [SMALL_STATE(5338)] = 255110, + [SMALL_STATE(5339)] = 255131, + [SMALL_STATE(5340)] = 255152, + [SMALL_STATE(5341)] = 255173, + [SMALL_STATE(5342)] = 255194, + [SMALL_STATE(5343)] = 255215, + [SMALL_STATE(5344)] = 255236, + [SMALL_STATE(5345)] = 255257, + [SMALL_STATE(5346)] = 255278, + [SMALL_STATE(5347)] = 255299, + [SMALL_STATE(5348)] = 255320, + [SMALL_STATE(5349)] = 255341, + [SMALL_STATE(5350)] = 255362, + [SMALL_STATE(5351)] = 255383, + [SMALL_STATE(5352)] = 255404, + [SMALL_STATE(5353)] = 255425, + [SMALL_STATE(5354)] = 255446, + [SMALL_STATE(5355)] = 255467, + [SMALL_STATE(5356)] = 255488, + [SMALL_STATE(5357)] = 255509, + [SMALL_STATE(5358)] = 255530, + [SMALL_STATE(5359)] = 255551, + [SMALL_STATE(5360)] = 255572, + [SMALL_STATE(5361)] = 255593, + [SMALL_STATE(5362)] = 255614, + [SMALL_STATE(5363)] = 255635, + [SMALL_STATE(5364)] = 255656, + [SMALL_STATE(5365)] = 255677, + [SMALL_STATE(5366)] = 255698, + [SMALL_STATE(5367)] = 255719, + [SMALL_STATE(5368)] = 255740, + [SMALL_STATE(5369)] = 255761, + [SMALL_STATE(5370)] = 255782, + [SMALL_STATE(5371)] = 255803, + [SMALL_STATE(5372)] = 255824, + [SMALL_STATE(5373)] = 255845, + [SMALL_STATE(5374)] = 255866, + [SMALL_STATE(5375)] = 255887, + [SMALL_STATE(5376)] = 255908, + [SMALL_STATE(5377)] = 255929, + [SMALL_STATE(5378)] = 255950, + [SMALL_STATE(5379)] = 255971, + [SMALL_STATE(5380)] = 255992, + [SMALL_STATE(5381)] = 256013, + [SMALL_STATE(5382)] = 256034, + [SMALL_STATE(5383)] = 256055, + [SMALL_STATE(5384)] = 256076, + [SMALL_STATE(5385)] = 256097, + [SMALL_STATE(5386)] = 256118, + [SMALL_STATE(5387)] = 256139, + [SMALL_STATE(5388)] = 256160, + [SMALL_STATE(5389)] = 256181, + [SMALL_STATE(5390)] = 256202, + [SMALL_STATE(5391)] = 256223, + [SMALL_STATE(5392)] = 256244, + [SMALL_STATE(5393)] = 256265, + [SMALL_STATE(5394)] = 256282, + [SMALL_STATE(5395)] = 256303, + [SMALL_STATE(5396)] = 256324, + [SMALL_STATE(5397)] = 256345, + [SMALL_STATE(5398)] = 256366, + [SMALL_STATE(5399)] = 256387, + [SMALL_STATE(5400)] = 256408, + [SMALL_STATE(5401)] = 256429, + [SMALL_STATE(5402)] = 256450, + [SMALL_STATE(5403)] = 256471, + [SMALL_STATE(5404)] = 256492, + [SMALL_STATE(5405)] = 256513, + [SMALL_STATE(5406)] = 256534, + [SMALL_STATE(5407)] = 256555, + [SMALL_STATE(5408)] = 256576, + [SMALL_STATE(5409)] = 256597, + [SMALL_STATE(5410)] = 256618, + [SMALL_STATE(5411)] = 256639, + [SMALL_STATE(5412)] = 256660, + [SMALL_STATE(5413)] = 256681, + [SMALL_STATE(5414)] = 256702, + [SMALL_STATE(5415)] = 256723, + [SMALL_STATE(5416)] = 256744, + [SMALL_STATE(5417)] = 256765, + [SMALL_STATE(5418)] = 256786, + [SMALL_STATE(5419)] = 256807, + [SMALL_STATE(5420)] = 256828, + [SMALL_STATE(5421)] = 256849, + [SMALL_STATE(5422)] = 256870, + [SMALL_STATE(5423)] = 256891, + [SMALL_STATE(5424)] = 256912, + [SMALL_STATE(5425)] = 256933, + [SMALL_STATE(5426)] = 256951, + [SMALL_STATE(5427)] = 256969, + [SMALL_STATE(5428)] = 256987, + [SMALL_STATE(5429)] = 257005, + [SMALL_STATE(5430)] = 257023, + [SMALL_STATE(5431)] = 257041, + [SMALL_STATE(5432)] = 257057, + [SMALL_STATE(5433)] = 257075, + [SMALL_STATE(5434)] = 257093, + [SMALL_STATE(5435)] = 257111, + [SMALL_STATE(5436)] = 257125, + [SMALL_STATE(5437)] = 257139, + [SMALL_STATE(5438)] = 257157, + [SMALL_STATE(5439)] = 257171, + [SMALL_STATE(5440)] = 257187, + [SMALL_STATE(5441)] = 257202, + [SMALL_STATE(5442)] = 257217, + [SMALL_STATE(5443)] = 257232, + [SMALL_STATE(5444)] = 257247, + [SMALL_STATE(5445)] = 257262, + [SMALL_STATE(5446)] = 257275, + [SMALL_STATE(5447)] = 257290, + [SMALL_STATE(5448)] = 257305, + [SMALL_STATE(5449)] = 257320, + [SMALL_STATE(5450)] = 257335, + [SMALL_STATE(5451)] = 257348, + [SMALL_STATE(5452)] = 257363, + [SMALL_STATE(5453)] = 257378, + [SMALL_STATE(5454)] = 257393, + [SMALL_STATE(5455)] = 257408, + [SMALL_STATE(5456)] = 257423, + [SMALL_STATE(5457)] = 257438, + [SMALL_STATE(5458)] = 257451, + [SMALL_STATE(5459)] = 257466, + [SMALL_STATE(5460)] = 257481, + [SMALL_STATE(5461)] = 257496, + [SMALL_STATE(5462)] = 257511, + [SMALL_STATE(5463)] = 257526, + [SMALL_STATE(5464)] = 257541, + [SMALL_STATE(5465)] = 257556, + [SMALL_STATE(5466)] = 257571, + [SMALL_STATE(5467)] = 257586, + [SMALL_STATE(5468)] = 257601, + [SMALL_STATE(5469)] = 257616, + [SMALL_STATE(5470)] = 257631, + [SMALL_STATE(5471)] = 257646, + [SMALL_STATE(5472)] = 257661, + [SMALL_STATE(5473)] = 257676, + [SMALL_STATE(5474)] = 257691, + [SMALL_STATE(5475)] = 257706, + [SMALL_STATE(5476)] = 257721, + [SMALL_STATE(5477)] = 257736, + [SMALL_STATE(5478)] = 257751, + [SMALL_STATE(5479)] = 257766, + [SMALL_STATE(5480)] = 257781, + [SMALL_STATE(5481)] = 257796, + [SMALL_STATE(5482)] = 257809, + [SMALL_STATE(5483)] = 257824, + [SMALL_STATE(5484)] = 257839, + [SMALL_STATE(5485)] = 257854, + [SMALL_STATE(5486)] = 257869, + [SMALL_STATE(5487)] = 257884, + [SMALL_STATE(5488)] = 257899, + [SMALL_STATE(5489)] = 257914, + [SMALL_STATE(5490)] = 257929, + [SMALL_STATE(5491)] = 257944, + [SMALL_STATE(5492)] = 257959, + [SMALL_STATE(5493)] = 257974, + [SMALL_STATE(5494)] = 257989, + [SMALL_STATE(5495)] = 258004, + [SMALL_STATE(5496)] = 258019, + [SMALL_STATE(5497)] = 258034, + [SMALL_STATE(5498)] = 258049, + [SMALL_STATE(5499)] = 258064, + [SMALL_STATE(5500)] = 258079, + [SMALL_STATE(5501)] = 258094, + [SMALL_STATE(5502)] = 258109, + [SMALL_STATE(5503)] = 258124, + [SMALL_STATE(5504)] = 258139, + [SMALL_STATE(5505)] = 258154, + [SMALL_STATE(5506)] = 258169, + [SMALL_STATE(5507)] = 258184, + [SMALL_STATE(5508)] = 258199, + [SMALL_STATE(5509)] = 258214, + [SMALL_STATE(5510)] = 258227, + [SMALL_STATE(5511)] = 258242, + [SMALL_STATE(5512)] = 258257, + [SMALL_STATE(5513)] = 258272, + [SMALL_STATE(5514)] = 258287, + [SMALL_STATE(5515)] = 258302, + [SMALL_STATE(5516)] = 258317, + [SMALL_STATE(5517)] = 258330, + [SMALL_STATE(5518)] = 258345, + [SMALL_STATE(5519)] = 258360, + [SMALL_STATE(5520)] = 258375, + [SMALL_STATE(5521)] = 258390, + [SMALL_STATE(5522)] = 258403, + [SMALL_STATE(5523)] = 258418, + [SMALL_STATE(5524)] = 258433, + [SMALL_STATE(5525)] = 258448, + [SMALL_STATE(5526)] = 258463, + [SMALL_STATE(5527)] = 258478, + [SMALL_STATE(5528)] = 258493, + [SMALL_STATE(5529)] = 258505, + [SMALL_STATE(5530)] = 258517, + [SMALL_STATE(5531)] = 258529, + [SMALL_STATE(5532)] = 258541, + [SMALL_STATE(5533)] = 258553, + [SMALL_STATE(5534)] = 258565, + [SMALL_STATE(5535)] = 258577, + [SMALL_STATE(5536)] = 258589, + [SMALL_STATE(5537)] = 258601, + [SMALL_STATE(5538)] = 258613, + [SMALL_STATE(5539)] = 258625, + [SMALL_STATE(5540)] = 258637, + [SMALL_STATE(5541)] = 258649, + [SMALL_STATE(5542)] = 258661, + [SMALL_STATE(5543)] = 258673, + [SMALL_STATE(5544)] = 258685, + [SMALL_STATE(5545)] = 258697, + [SMALL_STATE(5546)] = 258709, + [SMALL_STATE(5547)] = 258721, + [SMALL_STATE(5548)] = 258733, + [SMALL_STATE(5549)] = 258745, + [SMALL_STATE(5550)] = 258757, + [SMALL_STATE(5551)] = 258769, + [SMALL_STATE(5552)] = 258781, + [SMALL_STATE(5553)] = 258793, + [SMALL_STATE(5554)] = 258805, + [SMALL_STATE(5555)] = 258817, + [SMALL_STATE(5556)] = 258829, + [SMALL_STATE(5557)] = 258841, + [SMALL_STATE(5558)] = 258853, + [SMALL_STATE(5559)] = 258865, + [SMALL_STATE(5560)] = 258877, + [SMALL_STATE(5561)] = 258889, + [SMALL_STATE(5562)] = 258901, + [SMALL_STATE(5563)] = 258913, + [SMALL_STATE(5564)] = 258925, + [SMALL_STATE(5565)] = 258937, + [SMALL_STATE(5566)] = 258949, + [SMALL_STATE(5567)] = 258961, + [SMALL_STATE(5568)] = 258973, + [SMALL_STATE(5569)] = 258985, + [SMALL_STATE(5570)] = 258997, + [SMALL_STATE(5571)] = 259009, + [SMALL_STATE(5572)] = 259021, + [SMALL_STATE(5573)] = 259033, + [SMALL_STATE(5574)] = 259045, + [SMALL_STATE(5575)] = 259057, + [SMALL_STATE(5576)] = 259069, + [SMALL_STATE(5577)] = 259081, + [SMALL_STATE(5578)] = 259093, + [SMALL_STATE(5579)] = 259105, + [SMALL_STATE(5580)] = 259117, + [SMALL_STATE(5581)] = 259129, + [SMALL_STATE(5582)] = 259141, + [SMALL_STATE(5583)] = 259153, + [SMALL_STATE(5584)] = 259165, + [SMALL_STATE(5585)] = 259177, + [SMALL_STATE(5586)] = 259189, + [SMALL_STATE(5587)] = 259201, + [SMALL_STATE(5588)] = 259213, + [SMALL_STATE(5589)] = 259225, + [SMALL_STATE(5590)] = 259237, + [SMALL_STATE(5591)] = 259249, + [SMALL_STATE(5592)] = 259261, + [SMALL_STATE(5593)] = 259273, + [SMALL_STATE(5594)] = 259285, + [SMALL_STATE(5595)] = 259297, + [SMALL_STATE(5596)] = 259309, + [SMALL_STATE(5597)] = 259321, + [SMALL_STATE(5598)] = 259333, + [SMALL_STATE(5599)] = 259345, + [SMALL_STATE(5600)] = 259357, + [SMALL_STATE(5601)] = 259369, + [SMALL_STATE(5602)] = 259381, + [SMALL_STATE(5603)] = 259393, + [SMALL_STATE(5604)] = 259405, + [SMALL_STATE(5605)] = 259417, + [SMALL_STATE(5606)] = 259429, + [SMALL_STATE(5607)] = 259441, + [SMALL_STATE(5608)] = 259453, + [SMALL_STATE(5609)] = 259465, + [SMALL_STATE(5610)] = 259477, + [SMALL_STATE(5611)] = 259489, + [SMALL_STATE(5612)] = 259501, + [SMALL_STATE(5613)] = 259513, + [SMALL_STATE(5614)] = 259525, + [SMALL_STATE(5615)] = 259537, + [SMALL_STATE(5616)] = 259549, + [SMALL_STATE(5617)] = 259561, + [SMALL_STATE(5618)] = 259573, + [SMALL_STATE(5619)] = 259585, + [SMALL_STATE(5620)] = 259597, + [SMALL_STATE(5621)] = 259609, + [SMALL_STATE(5622)] = 259621, + [SMALL_STATE(5623)] = 259633, + [SMALL_STATE(5624)] = 259645, + [SMALL_STATE(5625)] = 259657, + [SMALL_STATE(5626)] = 259669, + [SMALL_STATE(5627)] = 259681, + [SMALL_STATE(5628)] = 259693, + [SMALL_STATE(5629)] = 259705, + [SMALL_STATE(5630)] = 259717, + [SMALL_STATE(5631)] = 259729, + [SMALL_STATE(5632)] = 259741, + [SMALL_STATE(5633)] = 259753, + [SMALL_STATE(5634)] = 259765, + [SMALL_STATE(5635)] = 259777, + [SMALL_STATE(5636)] = 259789, + [SMALL_STATE(5637)] = 259801, + [SMALL_STATE(5638)] = 259813, + [SMALL_STATE(5639)] = 259825, + [SMALL_STATE(5640)] = 259837, + [SMALL_STATE(5641)] = 259849, + [SMALL_STATE(5642)] = 259861, + [SMALL_STATE(5643)] = 259873, + [SMALL_STATE(5644)] = 259885, + [SMALL_STATE(5645)] = 259897, + [SMALL_STATE(5646)] = 259909, + [SMALL_STATE(5647)] = 259921, + [SMALL_STATE(5648)] = 259933, + [SMALL_STATE(5649)] = 259945, + [SMALL_STATE(5650)] = 259957, + [SMALL_STATE(5651)] = 259969, + [SMALL_STATE(5652)] = 259981, + [SMALL_STATE(5653)] = 259993, + [SMALL_STATE(5654)] = 260005, + [SMALL_STATE(5655)] = 260017, + [SMALL_STATE(5656)] = 260029, + [SMALL_STATE(5657)] = 260041, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -391232,5088 +379262,5047 @@ 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(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(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(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(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(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(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}}, 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(1037), - [2687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1027), - [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 = 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(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), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1064), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1164), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1068), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1), + [183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4725), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4746), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [207] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(5657), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5508), + [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(881), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression, 1), SHIFT(5657), + [236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), + [252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), + [254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5505), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(642), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 1, .production_id = 3), + [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 1, .production_id = 3), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5492), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4696), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5462), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 1), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(542), + [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 1), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 1), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 1), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5478), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(824), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(855), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2732), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), + [514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(495), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(795), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5443), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(806), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5513), + [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(619), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 2), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 2), + [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 2), + [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(191), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__expression, 1), SHIFT(774), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 2), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5497), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5392), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 1), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), + [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [1010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_operator_identifier, 1), SHIFT(5657), + [1013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 1, .production_id = 5), + [1015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 2, .production_id = 10), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4775), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(438), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4390), + [1121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2185), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1170), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1169), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [1199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 3), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 2), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [1265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 2), + [1267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 2), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [1271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 3), + [1273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 3), + [1275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_body, 4), + [1277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 4), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [1309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 3), + [1311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 3), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5487), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [1365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 3), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [1379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 3), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2401), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [1397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 4), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [1401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 4), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [1407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 4), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [1415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 4), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [1429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_after_block, 5), + [1431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_block, 5), + [1433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_block, 5), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rescue_block, 5), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2365), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2661), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 3), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [1583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 4), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 2), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [1639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 1), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2982), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4136), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4133), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3390), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2302), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2655), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1617), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4134), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3837), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [2545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_single, 3, .production_id = 17), + [2547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_single, 3, .production_id = 17), + [2549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator_identifier, 1), + [2551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator_identifier, 1), + [2553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 21), + [2555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 21), + [2557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 22), + [2559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 22), + [2561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 19), + [2563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 19), + [2565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_double, 2, .production_id = 7), + [2567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_double, 2, .production_id = 7), + [2569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_dot, 3, .production_id = 20), + [2571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_dot, 3, .production_id = 20), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_single, 2, .production_id = 7), + [2575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_single, 2, .production_id = 7), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1), + [2579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1), + [2581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_double, 3, .production_id = 17), + [2583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_double, 3, .production_id = 17), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [2589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 1), + [2591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 1), + [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1007), + [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__terminator_repeat1, 2), + [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [2606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1010), + [2609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__terminator, 2), + [2611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__terminator, 2), + [2613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1015), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [2624] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1017), + [2627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1018), + [2630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [2640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__terminator_repeat1, 2), SHIFT_REPEAT(1022), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_keyword, 2, .production_id = 1), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_keyword, 2, .production_id = 1), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__anonymous_dot, 2, .production_id = 10), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [2657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [2663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [2665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [2667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [2671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [2673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), + [2677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [2681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [2685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [2687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [2689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [2695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [2697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [2701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [2705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [2709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [2713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [2719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), + [2721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [2723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [2725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), + [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), + [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [2731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [2733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [2735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [2737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [2739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [2747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [2749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [2755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [2757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [2759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [2761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [2767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [2771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [2773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [2775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [2777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [2779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [2785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [2787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [2789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), + [2791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [2795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [2797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [2799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [2801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [2807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), SHIFT(341), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [2836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), + [2838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [2856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [2874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [2876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [2878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [2880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [2890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_with_parentheses, 1, .production_id = 2), + [2892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_with_parentheses, 1, .production_id = 2), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_with_parentheses, 2, .production_id = 3), + [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_with_parentheses, 2, .production_id = 3), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_parentheses, 2, .production_id = 11), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_parentheses, 2, .production_id = 11), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5506), + [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 7), + [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 7), + [2912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 6), + [2914] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 6), + [2916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_call, 2, .production_id = 12), + [2918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_call, 2, .production_id = 12), + [2920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_parentheses, 4, .production_id = 11), + [2922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_parentheses, 4, .production_id = 11), + [2924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_without_parentheses, 2, .production_id = 11), + [2926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_without_parentheses, 2, .production_id = 11), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), + [2930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 3), + [2932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 3), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [2938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [2940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 2, .production_id = 3), + [2942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 2, .production_id = 3), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [2952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anonymous_call, 2, .production_id = 13), + [2954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__anonymous_call, 2, .production_id = 13), + [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 4), + [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 4), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 5), + [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 5), + [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_with_parentheses, 4, .production_id = 3), + [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_with_parentheses, 4, .production_id = 3), + [2972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses, 2), + [2974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses, 2), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [2980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_with_parentheses, 3, .production_id = 3), + [2982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_with_parentheses, 3, .production_id = 3), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [2988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_with_parentheses, 3, .production_id = 11), + [2990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_with_parentheses, 3, .production_id = 11), + [2992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_block, 2), + [2994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_block, 2), + [2996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 1, .production_id = 1), + [2998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 1, .production_id = 1), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [3002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_charlist, 1, .production_id = 1), + [3004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_charlist, 1, .production_id = 1), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 2), + [3010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 2), + [3012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses, 3), + [3014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses, 3), + [3016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 3), + [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_parentheses_immediate, 3), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), + [3024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [3026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), + [3030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), + [3032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(741), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 2), + [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 2), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5466), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5465), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1), + [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nil, 1), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nil, 1), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_slash, 3, .production_id = 17), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_slash, 3, .production_id = 17), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 1, .production_id = 2), + [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 1, .production_id = 2), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_without_parentheses, 1, .production_id = 2), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_without_parentheses, 1, .production_id = 2), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_angle, 3, .production_id = 17), + [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_angle, 3, .production_id = 17), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_square, 3, .production_id = 17), + [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_square, 3, .production_id = 17), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_curly, 3, .production_id = 17), + [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_curly, 3, .production_id = 17), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_double, 3, .production_id = 17), + [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_double, 3, .production_id = 17), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_single, 3, .production_id = 17), + [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_single, 3, .production_id = 17), + [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_quoted_atom, 2, .production_id = 4), + [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_quoted_atom, 2, .production_id = 4), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_single, 3, .production_id = 17), + [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_single, 3, .production_id = 17), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_double, 3, .production_id = 17), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_double, 3, .production_id = 17), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_single, 2, .production_id = 7), + [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_single, 2, .production_id = 7), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_double, 2, .production_id = 7), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_double, 2, .production_id = 7), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstring, 2), + [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstring, 2), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .dynamic_precedence = -1, .production_id = 9), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .dynamic_precedence = -1, .production_id = 9), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_parenthesis, 3, .production_id = 17), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_parenthesis, 3, .production_id = 17), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_slash, 3, .production_id = 17), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_slash, 3, .production_id = 17), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_bar, 3, .production_id = 17), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_bar, 3, .production_id = 17), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_angle, 3, .production_id = 17), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_angle, 3, .production_id = 17), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_square, 3, .production_id = 17), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_square, 3, .production_id = 17), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_curly, 3, .production_id = 17), + [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_curly, 3, .production_id = 17), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_parenthesis, 3, .production_id = 17), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_parenthesis, 3, .production_id = 17), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_slash, 2, .production_id = 7), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_slash, 2, .production_id = 7), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_bar, 2, .production_id = 7), + [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_bar, 2, .production_id = 7), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_angle, 2, .production_id = 7), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_angle, 2, .production_id = 7), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_square, 2, .production_id = 7), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_square, 2, .production_id = 7), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_curly, 2, .production_id = 7), + [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_curly, 2, .production_id = 7), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_double, 2, .production_id = 7), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_double, 2, .production_id = 7), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_heredoc_single, 2, .production_id = 7), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_heredoc_single, 2, .production_id = 7), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_single, 2, .production_id = 7), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_single, 2, .production_id = 7), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_double, 2, .production_id = 7), + [3189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_double, 2, .production_id = 7), + [3191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_parenthesis, 2, .production_id = 7), + [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_parenthesis, 2, .production_id = 7), + [3195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_slash, 2, .production_id = 7), + [3197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_slash, 2, .production_id = 7), + [3199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_bar, 2, .production_id = 7), + [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_bar, 2, .production_id = 7), + [3203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_angle, 2, .production_id = 7), + [3205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_angle, 2, .production_id = 7), + [3207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_square, 2, .production_id = 7), + [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_square, 2, .production_id = 7), + [3211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_curly, 2, .production_id = 7), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_curly, 2, .production_id = 7), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_just_do_block, 2, .production_id = 11), + [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_just_do_block, 2, .production_id = 11), + [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_bar, 3, .production_id = 17), + [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_bar, 3, .production_id = 17), + [3223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_parenthesis, 2, .production_id = 7), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_parenthesis, 2, .production_id = 7), + [3227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 3, .dynamic_precedence = -1, .production_id = 14), + [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 3, .dynamic_precedence = -1, .production_id = 14), + [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigil, 3, .production_id = 18), + [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigil, 3, .production_id = 18), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [3239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [3243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_single, 3, .production_id = 17), + [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_single, 3, .production_id = 17), + [3255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__quoted_i_heredoc_double, 3, .production_id = 17), + [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__quoted_i_heredoc_double, 3, .production_id = 17), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bitstring, 3), + [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bitstring, 3), + [3271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3), + [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 3), + [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 3), + [3279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 19), + [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 19), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dot, 3, .production_id = 19), + [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dot, 3, .production_id = 19), + [3291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [3293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), + [3295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [3297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_without_parentheses, 3, .production_id = 11), + [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_without_parentheses, 3, .production_id = 11), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_call, 3, .production_id = 12), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_call, 3, .production_id = 12), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 3, .production_id = 3), + [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 3, .production_id = 3), + [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_keywords_repeat1, 2), + [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), + [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sigil, 4, .production_id = 18), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_sigil, 4, .production_id = 18), + [3325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [3327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 1), + [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 1), + [3335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [3341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [3349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [3351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [3359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [3361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [3363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1251), + [3381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1247), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4, .production_id = 23), + [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4, .production_id = 23), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4), + [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keywords, 1), + [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords, 1), + [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), + [3397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__capture_expression, 3), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__capture_expression, 3), + [3401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keywords, 2), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keywords, 2), + [3405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 4), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 4), + [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_call, 4, .production_id = 24), + [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_call, 4, .production_id = 24), + [3413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__local_call_without_parentheses, 4, .production_id = 11), + [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__local_call_without_parentheses, 4, .production_id = 11), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__double_call, 4, .production_id = 12), + [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__double_call, 4, .production_id = 12), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__remote_call_without_parentheses, 4, .production_id = 3), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__remote_call_without_parentheses, 4, .production_id = 3), + [3427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4355), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5), + [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5), + [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 5, .production_id = 25), + [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 5, .production_id = 25), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_anonymous_function, 5), + [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_anonymous_function, 5), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6), + [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6), + [3446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 4), + [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 4), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_arguments_without_parentheses, 3), + [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_without_parentheses, 3), + [3456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [3458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), + [3464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [3466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [3468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [3470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [3478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [3480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [3482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [3488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [3490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [3492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [3494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [3502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [3516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [3518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [3520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [3522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [3524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [3526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [3528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [3530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [3534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [3536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [3538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), + [3544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(893), + [3547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4378), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 2, .production_id = 16), + [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 2, .production_id = 16), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__capture_expression, 1), + [3556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__capture_expression, 1), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [3560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4384), + [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [3565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), + [3567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [3573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [3575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [3577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [3579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), SHIFT(307), + [3582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [3652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 3), + [3654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1008), + [3657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(259), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [3698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_body, 1), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [3704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1008), + [3707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(261), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [3718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 2), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [3722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4366), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), + [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5458), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), + [3891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(613), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [3898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4381), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [3903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(544), + [3906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4363), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(467), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5507), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [4059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4361), + [4062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(701), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), + [4071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4389), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), + [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [4078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(453), + [4081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4377), + [4084] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4380), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), + [4089] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(600), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [4104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), + [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2832), + [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), + [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3004), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [4212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(515), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [4219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [4227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [4239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [4257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), + [4263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [4267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [4269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [4271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [4273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [4277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [4279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [4281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [4285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [4287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [4293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [4295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [4297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [4301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [4305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat2, 2), + [4311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2), + [4313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [4315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [4319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [4325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [4335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [4345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [4347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [4369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4358), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [4414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), + [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [4424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1021), + [4427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(347), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [4470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(624), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), + [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [4515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1021), + [4518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(350), + [4521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 1), SHIFT(1019), + [4524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 1), SHIFT(345), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [4567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 2), SHIFT(1019), + [4570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 2), SHIFT(348), + [4573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4359), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [4634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4368), + [4637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(483), + [4640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4375), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [4727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4382), + [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4350), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4382), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [4741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4360), + [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4360), + [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4350), + [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [4786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [4790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [4792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [4794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3886), + [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), + [4804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), + [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [4808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4369), + [4812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4369), + [4815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 1), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [4831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4383), + [4834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), + [4836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [4844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [4846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [4848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [4850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [4852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [4856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [4858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [4862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [4864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [4870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [4872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [4890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [4896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [4898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [4900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [4904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [4906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [4908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [4912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [4914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [4916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [4918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [4920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_with_parentheses_repeat1, 2), + [4924] = {.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), + [4927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), SHIFT(265), + [4930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), + [4932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 1), SHIFT(265), + [4935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4387), + [4938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4387), + [4940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [4942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [4944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [4946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [4948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4115), + [4950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [4952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [4958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [4960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), + [4962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [4964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [4966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [4968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [4970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), + [4972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [4974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 1), + [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [4986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [4992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [4994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [4998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [5000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [5002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [5010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [5014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [5016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [5018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [5020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [5022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), + [5024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [5028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [5030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [5032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [5036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses_with_guard, 3, .production_id = 19), + [5038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), + [5042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses_with_guard, 3, .dynamic_precedence = 1, .production_id = 19), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), + [5048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [5050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [5054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), + [5056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), + [5058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct, 1, .production_id = 8), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [5068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [5070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4566), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), + [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4781), + [5084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), + [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4779), + [5088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), + [5090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), + [5092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4727), + [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [5100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), + [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4730), + [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [5112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [5116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), + [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [5124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), + [5128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [5130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), + [5136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [5140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [5150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), + [5152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5059), + [5154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), + [5156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5061), + [5158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), + [5160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), + [5162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [5164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), + [5166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), + [5168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [5170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), + [5172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4409), + [5174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4662), + [5176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), + [5178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), + [5180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), + [5182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [5184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4411), + [5186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [5188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [5192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), + [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [5196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), + [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), + [5200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4576), + [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4821), + [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), + [5206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), + [5208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4815), + [5210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), + [5214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [5216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), + [5218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [5220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), + [5222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), + [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), + [5226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), + [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), + [5230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), + [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5252), + [5234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [5238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), + [5240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), + [5242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), + [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [5246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5259), + [5248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), + [5250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), + [5252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [5254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [5256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), + [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5165), + [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [5266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), + [5268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), + [5270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [5274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), + [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), + [5278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), + [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), + [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), + [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4420), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), + [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), + [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [5298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), + [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), + [5306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), + [5308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), + [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), + [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [5318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5111), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5147), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5148), + [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [5330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [5334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [5336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), + [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), + [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), + [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5423), + [5354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5421), + [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), + [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5415), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), + [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), + [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), + [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), + [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4418), + [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4408), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4406), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5411), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), + [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5409), + [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5397), + [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), + [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), + [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), + [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), + [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5262), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5266), + [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5267), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5279), + [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), + [5468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5282), + [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5284), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [5476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4669), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4614), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [5494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4397), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4849), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [5540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4715), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4714), + [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [5554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4718), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), + [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), + [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), + [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), + [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), + [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), + [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), + [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), + [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), + [5608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), + [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), + [5622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), + [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), + [5632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4618), + [5634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [5636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), + [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4641), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4642), + [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [5652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5301), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5302), + [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), + [5664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5305), + [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5306), + [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), + [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), + [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4742), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5370), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), + [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), + [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5355), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5031), + [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), + [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), + [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), + [5716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), + [5718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [5720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5348), + [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5349), + [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), + [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), + [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), + [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), + [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5117), + [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), + [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5119), + [5744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5120), + [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5121), + [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), + [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), + [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), + [5754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), + [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), + [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), + [5762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5235), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), + [5768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [5780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), + [5782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), + [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), + [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [5792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [5806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [5812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [5816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [5818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__keywords_with_trailing_separator, 2), + [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), + [5822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), + [5824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__keywords_with_trailing_separator, 3), + [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [5832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [5834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [5836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(39), + [5839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(40), + [5842] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(36), + [5845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), + [5847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_do_block_repeat1, 2), SHIFT_REPEAT(38), + [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2914), + [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2620), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [5866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(1020), + [5869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(776), + [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [5878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(1014), + [5881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(134), + [5884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), + [5886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1008), + [5889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(262), + [5892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_block_repeat2, 2), SHIFT_REPEAT(1020), + [5895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2), SHIFT_REPEAT(896), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [5950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [5952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [5960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), + [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [5978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [5994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [6012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_block_repeat1, 2), + [6020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stab_clause, 2, .production_id = 15), + [6022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 2, .production_id = 15), + [6024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stab_clause, 3, .production_id = 19), + [6026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stab_clause, 3, .production_id = 19), + [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), + [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), + [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), + [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [6084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4425), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [6094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), + [6096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), + [6110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [6112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [6114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), + [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [6132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [6134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [6138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [6156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [6158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4434), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4435), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [6182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [6186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2533), + [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [6194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4470), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), + [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), + [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [6238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2906), + [6242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), + [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2831), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), + [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [6282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2546), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4712), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4432), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2530), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [6380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4467), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), + [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), + [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [6390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [6392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), + [6394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), SHIFT_REPEAT(675), + [6397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), SHIFT_REPEAT(4469), + [6400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_single_repeat1, 2), SHIFT_REPEAT(4469), + [6403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), + [6405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), SHIFT_REPEAT(474), + [6408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), SHIFT_REPEAT(4470), + [6411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_heredoc_single_repeat1, 2), SHIFT_REPEAT(4470), + [6414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), + [6416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), SHIFT_REPEAT(494), + [6419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), SHIFT_REPEAT(4471), + [6422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_heredoc_double_repeat1, 2), SHIFT_REPEAT(4471), + [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), + [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), + [6451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [6455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4804), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [6459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [6515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), + [6517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), SHIFT_REPEAT(802), + [6520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), SHIFT_REPEAT(4495), + [6523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_double_repeat1, 2), SHIFT_REPEAT(4495), + [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4499), + [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4503), + [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), + [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [6574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), + [6592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [6594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [6596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), + [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [6606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [6614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [6618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), + [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [6626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [6628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [6630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [6636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [6638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [6642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), + [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [6686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [6690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), + [6692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), SHIFT_REPEAT(552), + [6695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), SHIFT_REPEAT(4536), + [6698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_slash_repeat1, 2), SHIFT_REPEAT(4536), + [6701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), + [6703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), SHIFT_REPEAT(852), + [6706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), SHIFT_REPEAT(4537), + [6709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_bar_repeat1, 2), SHIFT_REPEAT(4537), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [6720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), + [6722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), SHIFT_REPEAT(790), + [6725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), SHIFT_REPEAT(4540), + [6728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_angle_repeat1, 2), SHIFT_REPEAT(4540), + [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [6735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [6745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [6747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [6749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), + [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [6755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [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(548), + [6764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), SHIFT_REPEAT(4549), + [6767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_square_repeat1, 2), SHIFT_REPEAT(4549), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [6774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), + [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), + [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4563), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4564), + [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [6838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), + [6840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), SHIFT_REPEAT(571), + [6843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), SHIFT_REPEAT(4570), + [6846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_curly_repeat1, 2), SHIFT_REPEAT(4570), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), + [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [6853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), + [6855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), SHIFT_REPEAT(521), + [6858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), SHIFT_REPEAT(4573), + [6861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_i_parenthesis_repeat1, 2), SHIFT_REPEAT(4573), + [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4574), + [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [6886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), + [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), + [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), + [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4602), + [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1168), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4605), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), + [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), + [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4596), + [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), + [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1212), + [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), + [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), + [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4597), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), + [6994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), + [7020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [7026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), + [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), + [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4487), + [7038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), + [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4497), + [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), + [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4646), + [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4655), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [7082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [7084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4656), + [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [7090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), + [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4611), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [7130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [7132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [7134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [7138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [7140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), + [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [7146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [7152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [7164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [7166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [7172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [7176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), + [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), + [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), + [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), + [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [7230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [7232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), + [7234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [7238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [7240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [7244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [7246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [7250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [7256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [7258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [7266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [7270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [7272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [7274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [7278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [7282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [7284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [7286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [7288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [7290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [7294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [7296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [7298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), + [7300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), + [7304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4675), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), + [7322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), + [7324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [7326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [7328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4673), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [7332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), + [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [7366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [7368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [7374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [7376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [7378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [7388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [7390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4697), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [7408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4550), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [7414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), + [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [7438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [7440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [7444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [7446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [7448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4711), + [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [7466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4713), + [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), + [7470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), + [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), + [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [7494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), + [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), + [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), + [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), + [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), + [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), + [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), + [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), + [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [7594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), + [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [7604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [7608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [7618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [7620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [7624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [7634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [7640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [7642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [7646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), + [7648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [7650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1178), + [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [7656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), + [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), + [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4770), + [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), + [7678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), + [7680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), + [7692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [7696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [7698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4774), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), + [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2496), + [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [7714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4886), + [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), + [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), + [7736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), + [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), + [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), + [7746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [7748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), + [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [7752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [7754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), + [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [7758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [7760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [7764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [7766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [7770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [7772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [7776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), + [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [7782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [7784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [7786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [7788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [7790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [7792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4854), + [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [7796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [7798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [7800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [7804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [7806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [7808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [7810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [7814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [7816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [7820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [7822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [7826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [7828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [7830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [7834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [7836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4803), + [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [7840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [7842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [7844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [7848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [7850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [7854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [7858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [7860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [7866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [7868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [7876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4724), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [7880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [7882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3029), + [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [7898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4864), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [7904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [7910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [7912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4866), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [7930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [7934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [7940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), + [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [7960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [7966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [7974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [7978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), + [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [7990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4885), + [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4889), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), + [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), + [8006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4820), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [8010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [8020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4826), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [8026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), + [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), + [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4843), + [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4844), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [8052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4845), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4845), + [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4846), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), + [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [8064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), + [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4858), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), + [8076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), + [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4828), + [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [8082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [8084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [8086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [8088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), + [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), + [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4875), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [8102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [8104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [8106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4876), + [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [8110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [8112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4877), + [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [8116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), + [8118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), + [8126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [8128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [8134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [8136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [8144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(697), + [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [8149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [8155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4379), + [8158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat1, 2), SHIFT_REPEAT(138), + [8161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [8163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(456), + [8166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [8168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [8172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), + [8174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [8176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [8180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1019), + [8183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(349), + [8186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [8188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [8190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [8196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [8198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [8202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), SHIFT_REPEAT(1014), + [8205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), SHIFT_REPEAT(133), + [8208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), + [8210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), + [8216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_repeat2, 2), SHIFT_REPEAT(454), + [8219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [8221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_body, 3), SHIFT(1021), + [8224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_body, 3), SHIFT(346), + [8227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [8229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), + [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [8233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [8235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [8239] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4373), + [8242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), + [8244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [8248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4257), + [8250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [8252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [8254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [8256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(744), + [8259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [8261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [8263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_repeat1, 2), SHIFT_REPEAT(511), + [8266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [8268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [8270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [8272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [8274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [8276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [8278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__keywords_with_trailing_separator, 1), + [8280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [8284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [8286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), + [8290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), + [8294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [8296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5312), + [8300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2558), + [8302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5144), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [8306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), + [8308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5112), + [8312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [8314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [8318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), + [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), + [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2569), + [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2568), + [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [8338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), + [8342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [8344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [8348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2565), + [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), + [8354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [8356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [8360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [8362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), + [8366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), + [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [8380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [8384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3), + [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3), + [8388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [8390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5106), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [8400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [8402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [8406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5103), + [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [8418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [8420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [8424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [8426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [8430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [8432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), + [8436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), + [8438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), [8444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), [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), + [8454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), + [8456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5088), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [8468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [8472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), + [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), + [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), + [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [8486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), + [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), + [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2538), + [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), + [8504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2537), + [8506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [8510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), + [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [8516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), + [8518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [8522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2534), + [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5091), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [8534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), + [8536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [8540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 2), + [8542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 2), SHIFT_REPEAT(5080), + [8545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_heredoc_single_repeat1, 2), SHIFT_REPEAT(5080), + [8548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [8550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), + [8552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [8554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [8556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [8560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [8562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [8564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), + [8566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [8568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [8570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [8572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [8574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [8576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [8578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [8580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [8582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [8584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [8586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [8588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [8590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [8592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [8594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [8596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [8600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [8602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [8604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [8606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5291), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [8610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [8612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), + [8614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [8618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), + [8620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [8622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), + [8626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [8628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), + [8630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [8634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5131), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [8642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), + [8646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [8648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [8652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [8654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [8658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [8660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [8664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), + [8670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5137), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [8676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), + [8678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), + [8682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [8684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [8688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [8690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [8694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [8696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [8700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [8706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [8708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [8712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), + [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [8724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [8732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [8734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [8736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [8738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [8742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [8744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [8746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [8750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), + [8756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [8758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [8762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [8764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), + [8768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [8770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [8772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [8776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [8780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [8786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [8790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [8792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 2), + [8794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [8796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [8800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [8806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [8808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), + [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [8814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [8818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [8822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [8824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [8828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [8834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), + [8836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [8840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [8842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [8846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [8848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [8852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [8854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), + [8858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [8860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [8864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [8866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [8870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [8872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5185), + [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [8878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [8880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [8882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [8884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [8886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [8888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [8890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [8892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [8898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [8900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [8902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2428), + [8904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [8906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_without_parentheses_repeat1, 2), SHIFT_REPEAT(455), + [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [8911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [8913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [8915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_slash_repeat1, 2), + [8917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_slash_repeat1, 2), SHIFT_REPEAT(5192), + [8920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_slash_repeat1, 2), SHIFT_REPEAT(5192), + [8923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_bar_repeat1, 2), + [8925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_bar_repeat1, 2), SHIFT_REPEAT(5193), + [8928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_bar_repeat1, 2), SHIFT_REPEAT(5193), + [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [8933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5332), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), + [8937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [8939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [8943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [8945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [8947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5334), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), + [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [8953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [8955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [8959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), + [8961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), + [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [8969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), + [8975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), + [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [8981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [8983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [8987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [8989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [8993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [8995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), + [8999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [9005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [9007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), + [9011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), + [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), + [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [9027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5335), + [9031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_angle_repeat1, 2), + [9033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_angle_repeat1, 2), SHIFT_REPEAT(5218), + [9036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_angle_repeat1, 2), SHIFT_REPEAT(5218), + [9039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_square_repeat1, 2), + [9041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_square_repeat1, 2), SHIFT_REPEAT(5219), + [9044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_square_repeat1, 2), SHIFT_REPEAT(5219), + [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [9049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), + [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [9059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [9061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [9063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [9065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [9067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [9069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [9071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [9073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [9075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [9077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [9079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [9081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [9083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [9087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [9089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5200), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [9093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [9095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [9099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [9105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [9107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [9113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [9115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [9119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [9121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [9127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [9133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [9135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [9137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), + [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [9143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_curly_repeat1, 2), + [9145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_curly_repeat1, 2), SHIFT_REPEAT(5247), + [9148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_curly_repeat1, 2), SHIFT_REPEAT(5247), + [9151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 2), + [9153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 2), SHIFT_REPEAT(5248), + [9156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_heredoc_double_repeat1, 2), SHIFT_REPEAT(5248), + [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [9161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [9165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_single_repeat1, 2), + [9167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_single_repeat1, 2), SHIFT_REPEAT(5250), + [9170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_single_repeat1, 2), SHIFT_REPEAT(5250), + [9173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [9175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5378), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [9179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [9181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5268), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), + [9185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), + [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [9193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), + [9197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [9199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [9203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [9205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [9211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [9215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [9217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [9221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [9229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5276), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), + [9233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [9235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [9239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [9241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [9245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [9251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5309), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [9257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [9259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [9265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5382), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [9269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [9271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), + [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), + [9275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [9277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), + [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [9285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [9287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [9289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [9293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [9295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [9297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [9301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [9307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), + [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [9313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), + [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [9319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5388), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5388), + [9325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5337), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [9331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), + [9333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5390), + [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [9337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [9339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [9343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [9345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), + [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [9349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [9351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [9355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [9357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [9361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), + [9363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [9365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), + [9369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [9371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5380), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5380), + [9375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [9377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [9379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), + [9383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_double_repeat1, 2), + [9385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_double_repeat1, 2), SHIFT_REPEAT(5296), + [9388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_double_repeat1, 2), SHIFT_REPEAT(5296), + [9391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 2), + [9393] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 2), SHIFT_REPEAT(5297), + [9396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__quoted_parenthesis_repeat1, 2), SHIFT_REPEAT(5297), + [9399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [9401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), + [9405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), + [9407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [9411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), + [9413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [9417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), + [9419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [9423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), + [9425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5318), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [9429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1187), + [9431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5319), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [9435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), + [9437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5320), + [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [9441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1185), + [9443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), + [9447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), + [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5322), + [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [9453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [9455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5323), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), + [9459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [9463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [9465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [9469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [9471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), + [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1166), + [9475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1163), + [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1160), + [9479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [9481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [9483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), + [9485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [9487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [9489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [9491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [9499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [9503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), + [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), + [9507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [9509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [9511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [9513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [9515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [9517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), + [9519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [9521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5339), + [9523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [9525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), + [9527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), + [9529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [9531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [9535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), + [9539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [9541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [9545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [9547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5146), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [9551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [9553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5360), + [9557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [9559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5361), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), + [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [9565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [9569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [9571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), + [9575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [9577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5364), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [9583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), + [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5365), + [9587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [9589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5366), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), + [9593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [9595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [9599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [9601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), + [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), + [9605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [9611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [9613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [9617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [9619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5325), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), + [9623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [9625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), + [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [9631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), + [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5327), + [9635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [9637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), + [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [9641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5330), + [9647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [9649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [9651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [9653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [9655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [9659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [9661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [9663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [9667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [9669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5331), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), + [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [9675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [9681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [9687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [9689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [9691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [9693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), + [9697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [9699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [9703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [9707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), + [9709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [9711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), + [9713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [9715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [9717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [9719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), + [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [9723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [9725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [9729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [9731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5294), + [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [9735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [9737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [9739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [9741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [9743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [9745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [9747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [9749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [9751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [9753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [9755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), + [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), + [9759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [9761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5170), + [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [9765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [9767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [9771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [9773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), + [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [9777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [9783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [9785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [9789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [9791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [9795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [9797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), + [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [9801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [9803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [9807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [9809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5401), + [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5403), + [9831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [9833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5404), + [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5404), + [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [9839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5405), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), + [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [9845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [9849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [9851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [9855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [9857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [9861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [9865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 2), + [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [9869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_keywords_repeat1, 2), SHIFT_REPEAT(4351), + [9872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), + [9874] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__items_with_trailing_separator_repeat1, 2), SHIFT_REPEAT(897), + [9877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), + [9881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [9883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [9885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stab_clause_arguments_with_parentheses_repeat1, 2), SHIFT_REPEAT(502), + [9888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__items_with_trailing_separator, 4), + [9890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), + [9892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 3), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [9898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_anonymous_function_repeat1, 2), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), + [9904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [9906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 4), + [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [9910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_without_parentheses, 4), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4171), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [9916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [9922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [9924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_left, 1), + [9926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), + [9936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 5), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4170), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [9974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [9984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_arguments_with_parentheses, 6), + [9986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), + [9992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [9994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [9996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [9998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [10000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [10002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [10004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [10008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [10010] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 4), + [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [10014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [10016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [10018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [10020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [10022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [10024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [10026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [10028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5562), + [10032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [10034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [10036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [10038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [10040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [10042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [10044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [10046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [10048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [10050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [10052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3085), + [10054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [10056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [10058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [10060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [10062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), + [10064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [10068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), + [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), + [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [10074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [10076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [10082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), + [10086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [10088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [10090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), + [10092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [10094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [10096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [10098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [10100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), + [10102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [10106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), + [10108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [10110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [10118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [10122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call_arguments_with_trailing_separator, 3), + [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [10126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), + [10128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [10130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), + [10134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [10136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [10138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [10140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [10144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__stab_clause_left, 1, .production_id = 6), + [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), + [10148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [10154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [10158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [10160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1120), + [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5581), + [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [10166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [10170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [10176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5528), + [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [10184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [10186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [10188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), + [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [10194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [10196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [10198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [10204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [10206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [10208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [10210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1214), + [10212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), + [10214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), + [10216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [10218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [10220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [10224] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [10226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), + [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), }; #ifdef __cplusplus diff --git a/test/corpus/term/alias.txt b/test/corpus/term/alias.txt index ad7d8da..f4c45bc 100644 --- a/test/corpus/term/alias.txt +++ b/test/corpus/term/alias.txt @@ -80,5 +80,5 @@ __MODULE__.Child (source (dot - (special_identifier) + (identifier) (alias))) diff --git a/test/corpus/term/struct.txt b/test/corpus/term/struct.txt index 9fb0b8b..2a71847 100644 --- a/test/corpus/term/struct.txt +++ b/test/corpus/term/struct.txt @@ -146,7 +146,7 @@ unused struct identifier (source (map (struct - (unused_identifier)))) + (identifier)))) ===================================== matching struct identifier @@ -187,11 +187,11 @@ with special identifier (source (map (struct - (special_identifier))) + (identifier))) (map (struct (dot - (special_identifier) + (identifier) (alias))))) ===================================== diff --git a/test/corpus/variable.txt b/test/corpus/variable.txt index c660999..c901389 100644 --- a/test/corpus/variable.txt +++ b/test/corpus/variable.txt @@ -34,9 +34,9 @@ __TEST__ --- (source - (unused_identifier) - (unused_identifier) - (unused_identifier)) + (identifier) + (identifier) + (identifier)) ===================================== three dots identifier @@ -59,5 +59,5 @@ __DIR__ --- (source - (special_identifier) - (special_identifier)) + (identifier) + (identifier))